Class UnifiedModellingTool

java.lang.Object
dk.gtz.graphedit.tool.AbstractBaseTool
dk.gtz.graphedit.tool.UnifiedModellingTool
All Implemented Interfaces:
ITool

public class UnifiedModellingTool extends AbstractBaseTool
An aggregate tool that unifies the following tools: - vertex creation (Shift+click) - vertex moving (Leftmouse Drag) - edge creation (Shift+click vertex) - selection management (Leftmouse Click (hold Ctrl to select more)) - element deletion (Delete or Backspace key to delete selection)
  • Constructor Details

    • UnifiedModellingTool

      public UnifiedModellingTool()
      Cronstruct a new instance
  • Method Details

    • getTooltip

      public Optional<String> getTooltip()
      Description copied from interface: ITool
      Get a multiline tooltip string that briefly describes this tool
      Specified by:
      getTooltip in interface ITool
      Overrides:
      getTooltip in class AbstractBaseTool
      Returns:
      a (possibly) multiline string
    • getHelpDescription

      public String getHelpDescription()
      Description copied from interface: ITool
      Get a multiline string that describe the tool and how to use it
      Returns:
      a (possibly) multiline string
    • getGraphic

      public javafx.scene.Node getGraphic()
      Description copied from interface: ITool
      Get the graphical representation for the tool selection button. Typically just a FontIcon, but can be anything
      Returns:
      a javafx node that will be displayed inside the tool selector button
    • onViewportMouseEvent

      public void onViewportMouseEvent(ViewportMouseEvent e)
      Description copied from interface: ITool
      Event handler for the case where the model editor viewport has been interacted with with the mouse
      Specified by:
      onViewportMouseEvent in interface ITool
      Overrides:
      onViewportMouseEvent in class AbstractBaseTool
      Parameters:
      e - The event that happened
    • onVertexMouseEvent

      public void onVertexMouseEvent(VertexMouseEvent e)
      Description copied from interface: ITool
      Event handler for the case where a vertex has been interacted with with the mouse
      Specified by:
      onVertexMouseEvent in interface ITool
      Overrides:
      onVertexMouseEvent in class AbstractBaseTool
      Parameters:
      e - The event that happened
    • onEdgeMouseEvent

      public void onEdgeMouseEvent(EdgeMouseEvent e)
      Description copied from interface: ITool
      Event handler for the case where an edge has been interacted with with the mouse
      Specified by:
      onEdgeMouseEvent in interface ITool
      Overrides:
      onEdgeMouseEvent in class AbstractBaseTool
      Parameters:
      e - The event that happened
    • onKeyEvent

      public void onKeyEvent(ViewportKeyEvent e)
      Description copied from interface: ITool
      Event handler for the case where the model editor viewport has been interacted with with the keyboard
      Specified by:
      onKeyEvent in interface ITool
      Overrides:
      onKeyEvent in class AbstractBaseTool
      Parameters:
      e - The event that happened