Class CompositeTool
- java.lang.Object
-
- com.vividsolutions.jump.workbench.ui.cursortool.CompositeTool
-
- All Implemented Interfaces:
CursorTool
,MouseListener
,MouseMotionListener
,EventListener
- Direct Known Subclasses:
AndCompositeTool
,OrCompositeTool
public abstract class CompositeTool extends Object implements CursorTool
-
-
Field Summary
Fields Modifier and Type Field Description protected List<CursorTool>
cursorTools
-
Constructor Summary
Constructors Constructor Description CompositeTool(CursorTool[] cursorTools)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
activate(LayerViewPanel layerViewPanel)
CompositeTool
add(CursorTool tool)
void
cancelGesture()
Notifies the CursorTool that a party is requesting that the gesture currently in progress be aborted.void
deactivate()
protected CursorTool
firstCursorTool()
Cursor
getCursor()
Icon
getIcon()
protected String
getName(String delimiter)
LayerViewPanel
getPanel()
boolean
isGestureInProgress()
boolean
isRightMouseButtonUsed()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vividsolutions.jump.workbench.ui.cursortool.CursorTool
getName
-
Methods inherited from interface java.awt.event.MouseListener
mouseClicked, mouseEntered, mouseExited, mousePressed, mouseReleased
-
Methods inherited from interface java.awt.event.MouseMotionListener
mouseDragged, mouseMoved
-
-
-
-
Field Detail
-
cursorTools
protected List<CursorTool> cursorTools
-
-
Constructor Detail
-
CompositeTool
public CompositeTool(CursorTool[] cursorTools)
-
-
Method Detail
-
deactivate
public void deactivate()
- Specified by:
deactivate
in interfaceCursorTool
-
getCursor
public Cursor getCursor()
- Specified by:
getCursor
in interfaceCursorTool
-
isRightMouseButtonUsed
public boolean isRightMouseButtonUsed()
- Specified by:
isRightMouseButtonUsed
in interfaceCursorTool
- Returns:
- true if this CursorTool uses the right mouse button; false to allow the panel to show a popup-menu on right-clicks
-
firstCursorTool
protected CursorTool firstCursorTool()
-
activate
public void activate(LayerViewPanel layerViewPanel)
- Specified by:
activate
in interfaceCursorTool
-
add
public CompositeTool add(CursorTool tool)
-
cancelGesture
public void cancelGesture()
Description copied from interface:CursorTool
Notifies the CursorTool that a party is requesting that the gesture currently in progress be aborted.- Specified by:
cancelGesture
in interfaceCursorTool
-
getIcon
public Icon getIcon()
- Specified by:
getIcon
in interfaceCursorTool
- Returns:
- null to use a default icon
-
isGestureInProgress
public boolean isGestureInProgress()
- Specified by:
isGestureInProgress
in interfaceCursorTool
-
getPanel
public LayerViewPanel getPanel()
-
-