Package dk.gtz.graphedit.tool
Interface ITool
- All Known Implementing Classes:
AbstractBaseTool
,ClipboardTool
,EdgeCreateTool
,EdgeDeleteTool
,LintInspectorTool
,MassDeleteTool
,SelectTool
,UnifiedModellingTool
,VertexCreateTool
,VertexDeleteTool
,VertexDragMoveTool
,ViewTool
public interface ITool
Interface for implementing graph editing tools.
Tools are automatically instantiated and can be selected in the model editor toolbar
-
Method Summary
Modifier and TypeMethodDescriptionjavafx.scene.Node
Get the graphical representation for the tool selection button.Get a multiline string that describe the tool and how to use itGet a multiline tooltip string that briefly describes this toolvoid
Event handler for the case where an edge has been interacted with with the mousevoid
Event handler for the case where the model editor viewport has been interacted with with the keyboardvoid
Event handler for the case where a vertex has been interacted with with the mousevoid
Event handler for the case where the model editor viewport has been interacted with with the mouse
-
Method Details
-
getTooltip
Get a multiline tooltip string that briefly describes this tool- Returns:
- a (possibly) multiline string
-
getGraphic
javafx.scene.Node getGraphic()Get the graphical representation for the tool selection button. Typically just aFontIcon
, but can be anything- Returns:
- a javafx node that will be displayed inside the tool selector button
-
getHelpDescription
String getHelpDescription()Get a multiline string that describe the tool and how to use it- Returns:
- a (possibly) multiline string
-
onViewportMouseEvent
Event handler for the case where the model editor viewport has been interacted with with the mouse- Parameters:
e
- The event that happened
-
onKeyEvent
Event handler for the case where the model editor viewport has been interacted with with the keyboard- Parameters:
e
- The event that happened
-
onVertexMouseEvent
Event handler for the case where a vertex has been interacted with with the mouse- Parameters:
e
- The event that happened
-
onEdgeMouseEvent
Event handler for the case where an edge has been interacted with with the mouse- Parameters:
e
- The event that happened
-