|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object jfig.commands.Command jfig.commands.CreatePolygonCommand
create a polygon (closed polyline) with n points.
CreatePolygonCommand allows the user to create a polygon with n points and the current editor attributes. Each "left" mouse click will add another point to the polygon. Use a "middle" click (or "shift"+"left") to finish and create the polygon.
Note that the polygon is always displayed closed, with the last connecting segments added automatically.
Field Summary | |
protected GeometryManager |
geometryManager
|
protected int |
geometryMode
|
protected int |
n_points
|
protected FigPolyline |
polygon
|
Fields inherited from class jfig.commands.Command |
editor, objectCanvas, ready |
Constructor Summary | |
CreatePolygonCommand(FigBasicEditor editor,
FigCanvas objectCanvas)
|
Method Summary | |
void |
cancel()
cancel the current editor command |
void |
execute()
execute the current editor command |
java.lang.String |
getDescription()
one-line description of this command |
java.awt.Point |
getGeometryManagedPoint(java.awt.Point WP)
get the (world coordinate) point nearest to target point WP that is compatible with the current GeometryManager mode. |
int |
getGeometryMode()
access the editor geometry mode (if any) via reflection |
FigObject[] |
getModifiedObjects()
return an array-wrapped reference to the polygon object created by this command. |
void |
mousePressed(FigCanvasEvent evt)
mousePressed: add new points to the polygon object. |
java.lang.String |
toString()
return a (possibly verbose) description of this Command object |
void |
undo()
undo this command |
Methods inherited from class jfig.commands.Command |
isReady, message, notifyEditor, statusMessage |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
protected int n_points
protected FigPolyline polygon
protected GeometryManager geometryManager
protected int geometryMode
Constructor Detail |
public CreatePolygonCommand(FigBasicEditor editor, FigCanvas objectCanvas)
Method Detail |
public FigObject[] getModifiedObjects()
getModifiedObjects
in class Command
public void execute()
Command
This method is empty for class Command.
execute
in class Command
public void undo()
Command
Try to undo this command as far as possible. Don't try to undo() a command that has never been execute()d before. This method is empty for class Command.
undo
in class Command
public void cancel()
Command
cancel and cleanup the current command. Note that this method is empty for class Command, but might be implemented by subclasses.
cancel
in class Command
public void mousePressed(FigCanvasEvent evt)
Each "left" mouse click will add another point to the polygon. Use a "middle" click (or "shift"+"left") to finish and create the polygon.
mousePressed
in class Command
public int getGeometryMode()
public java.awt.Point getGeometryManagedPoint(java.awt.Point WP)
public java.lang.String getDescription()
Command
return a one-line desription of this command, e.g. to label the undo/redo buttons, if any
getDescription
in class Command
public java.lang.String toString()
Command
toString
in class Command
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |