canvas::edit::points(3tk) | Variations on a canvas | canvas::edit::points(3tk) |
canvas::edit::points - Editing a cloud of points on a canvas
package require Tcl 8.5
package require Tk 8.5
package require canvas::edit::points ?0.1?
::canvas::edit points objectName canvas options...
objectName destroy
objectName enable
objectName disable
objectName active
objectName add x y
objectName clear
createCmd canvas x y
highlightCmd on canvas item
highlightCmd off canvas state
dataCmd add editorObj id x y
dataCmd remove editorObj id
dataCmd move start editorObj id
dataCmd move delta editorObj id x y dx dy
dataCmd move done editorObj id
This package provides a class whose instances handle editing a cloud of point markers on a canvas. Instances can be configured with regard to the visual appearance of markers (regular, and highlighted). Note that instances do not store the edited points themselves, but delegate this to a configurable object.
The result of the command is the fully qualified name of the instance command.
The options accepted here, and their values, are explained in the section Options.
Instances of the point cloud editors provide the following API:
Note that this operation does not destroy the items of the point markers the editor managed on the attached canvas, nor the canvas itself.
The result of the method is an empty string.
The result of the method is an empty string.
The complementary method is disable. The interogatory method for the current state is active.
The result of the method is an empty string.
The complementary method is enable. The interogatory method for the current state is active.
The result of the method is a boolean value, true if the editor is active, and false otherwise, i.e. disabled.
The methods to change the state are enable and disable.
The result of the method is an empty string.
Note that this method goes through the whole set of callbacks invoked when the user interactively creates a point, i.e. -create-cmd, and, more importantly, -data-cmd.
This is the method through which to load pre-existing points into an editor instance.
The result of the method is an empty string.
Note that this method goes through the same callback invoked when the user interactively removes a point, i.e. -data-cmd.
The class command accepts the following options
This option can only be set at construction time.
If not specified it defaults to POINT
This option can only be set at construction time.
If not specified it defaults to a command which will create a black-bordered blue circle of radius 3 centered on the location of the new point.
The signature of this command prefix is
The returned list of items is allowed to be empty, and such is taken as signal that the callback vetoed the creation of the point.
This option can only be set at construction time.
If not specified it defaults to a command which will re-color the item to highlight in red (and restores the color for unhighlighting).
The two signatures of this command prefix are
This method of the command prefix has to perform whatever is needed to highlight the point the item is a part of (remember the note above about points allowed to be constructed from multiple canvas items).
The result of the command can be anything and will be passed as is as argument state to the off method.
This method is invoked to unhighlight a point described by the state, which is the unchanged result of the on method of the command prefix. The result of this method is ignored.
Note any interaction between dragging and highlighting of points is handled within the editor, and that the callback bears no responsibility for doing such.
This option can only be set at construction time.
If not specified it defaults to an empty string and is ignored by the editor, i.e. not invoked.
The signatures of this command prefix are
The id identifies the point within the editor and will be used by the two other callbacks to specify which point to modify.
The last two arguments x and y specify the location of the new point in canvas coordinates.
The result of this method is ignored.
The id identifies the removed point within the editor.
The result of this method is ignored.
The id identifies the point within the editor about to be moved.
The result of this method is ignored.
The id identifies the moved point within the editor, and the remaining arguments x, y, dx, and dy provide the new absolute location of the point, and full delta to the original location.
At the time of the calls the system is not committed to the move yet. Only after method move done was invoked and has accepted or rejected the last position will the editor update its internal data structures, either committing to the new location, or rolling the move back to the original one.
Given this the location data provided here should be saved only in temporary storage until then.
The result of this method is ignored.
The id identifies the moved point within the editor.
The result of this method must be a boolean value. If the method returns false the move is vetoed and rollbed back.
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category canvas of the Tklib Trackers [http://core.tcl.tk/tklib/reportlist]. Please also report any ideas for enhancements you may have for either package and/or documentation.
canvas, editing, point cloud, points
0.1 | canvas |