|
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.event.KeyAdapter
jpicedt.graphic.toolkit.MouseTool
jpicedt.graphic.toolkit.DrawToolFactory.AbstractCurveDrawTool
protected class DrawToolFactory.AbstractCurveDrawTool
a MouseTool suited for drawing any element inheriting from AbstractCurve. Because of slight differences that appear in the drawing sequence, this class currently specializes on PicMultiCurve, PicPsCurve and PicSmoothPolygon. This should be improved in the near future by providing a common interface [SR:pending].
The drawing sequence is as follows : OPEN curve : mpress add 0,1,2,3->drag 1->move 3->mpress add 4,5,6->drag 4->move 6->... CLOSED curve : mpress add 0,1,2->drag 1->mrel add 3,4,5->move 3->mpress->drag 4->mrel add 6,7,8->move and is terminated by a right-button click.
Field Summary |
---|
Fields inherited from class jpicedt.graphic.toolkit.MouseTool |
---|
lastMouseEvent, mouseOutside |
Constructor Summary | |
---|---|
DrawToolFactory.AbstractCurveDrawTool(AbstractCurve prototype)
|
Method Summary | |
---|---|
void |
flush()
called when this tool is being replaced by another mouse-tool in the hosting editor kit ; this is mainly for mousetools using more than one sequence, for it gives them a chance to clean themselves up for the next time |
void |
init()
called when this tool is being activated in the hosting editor kit |
void |
mouseDragged(PEMouseEvent e)
set the current point |
void |
mouseMoved(PEMouseEvent e)
set cursor for canvas, then call mouseDragged |
void |
mousePressed(PEMouseEvent e)
A popup-trigger mouse event (e.g. |
void |
mouseReleased(PEMouseEvent e)
CLOSED curve only : add a new point by splitting last segment |
void |
paint(Graphics2D g,
Rectangle2D allocation,
double scale)
This method is called by the hosting EditorKit : this implementation paints the current element's highlighter. |
Methods inherited from class jpicedt.graphic.toolkit.MouseTool |
---|
getLastMouseEvent, keyPressed, keyReleased, mouseClicked, mouseEntered, mouseExited, processKeyEvent |
Methods inherited from class java.awt.event.KeyAdapter |
---|
keyTyped |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DrawToolFactory.AbstractCurveDrawTool(AbstractCurve prototype)
prototype
- Prototype which will be cloned, then added to the drawing.Method Detail |
---|
public void mousePressed(PEMouseEvent e)
mousePressed
in interface PEMouseInputListener
mousePressed
in class MouseTool
public void mouseReleased(PEMouseEvent e)
mouseReleased
in interface PEMouseInputListener
mouseReleased
in class MouseTool
public void mouseDragged(PEMouseEvent e)
mouseDragged
in interface PEMouseInputListener
mouseDragged
in class MouseTool
public void mouseMoved(PEMouseEvent e)
mouseMoved
in interface PEMouseInputListener
mouseMoved
in class MouseTool
public void init()
init
in class MouseTool
public void flush()
flush
in class MouseTool
public void paint(Graphics2D g, Rectangle2D allocation, double scale)
paint
in class MouseTool
|
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |