Class Toolbox

java.lang.Object
dk.gtz.graphedit.tool.Toolbox
All Implemented Interfaces:
IToolbox

public class Toolbox extends Object implements IToolbox
Implementation of a toolbox
  • Constructor Details

    • Toolbox

      public Toolbox(String defaultCategory, Toolbox.IToolConstructor defaultToolCtor)
      Construct a new toolbox with a default category and a constructor for the default tool
      Parameters:
      defaultCategory - The category of the default tool
      defaultToolCtor - Constructor function that can create the default tool. Will be created and selected immediately
    • Toolbox

      public Toolbox(String defaultCategory, ITool defaultTool)
      Construct a new toolbox with a default category and a default tool
      Parameters:
      defaultCategory - The category of the default tool
      defaultTool - The default tool. Will be selected immediately
    • Toolbox

      public Toolbox(String defaultCategory, ITool defaultTool, ITool... tools)
      Construct a new toolbox with a default category, a default tool and a list of additional tools
      Parameters:
      defaultCategory - The category of the default tool
      defaultTool - The default tool. Will be selected immediately
      tools - List of additional tools to put in the default category
  • Method Details

    • getToolsByCategory

      public Map<String,List<ITool>> getToolsByCategory()
      Description copied from interface: IToolbox
      Get all tools in the toolbox by category
      Specified by:
      getToolsByCategory in interface IToolbox
      Returns:
      A mapping of category names to lists of tools
    • addDefaultTool

      public IToolbox addDefaultTool(ITool tool)
      Description copied from interface: IToolbox
      Add the tool that will be selected by default
      Specified by:
      addDefaultTool in interface IToolbox
      Parameters:
      tool - The tool to be selected by default
      Returns:
      A builder-pattern style reference to this
    • add

      public IToolbox add(ITool... tool)
      Description copied from interface: IToolbox
      Add a list of tools to the toolbox
      Specified by:
      add in interface IToolbox
      Parameters:
      tool - Varargs of tools to add
      Returns:
      A builder-pattern style reference to this
    • add

      public IToolbox add(String category, ITool... tool)
      Description copied from interface: IToolbox
      Add a list of tools to the toolbox and put them in a category
      Specified by:
      add in interface IToolbox
      Parameters:
      category - The category of the provided tools
      tool - Varargs of tools to add
      Returns:
      A builder-pattern style reference to this
    • getDefaultTool

      public ITool getDefaultTool()
      Description copied from interface: IToolbox
      Get the default tool
      Specified by:
      getDefaultTool in interface IToolbox
      Returns:
      A tool instance
    • getSelectedTool

      public javafx.beans.property.ObjectProperty<ITool> getSelectedTool()
      Description copied from interface: IToolbox
      Get the currently selected tool observable
      Specified by:
      getSelectedTool in interface IToolbox
      Returns:
      An observable pointing to the currenlty selected tool
    • selectTool

      public void selectTool(ITool tool)
      Description copied from interface: IToolbox
      Change which tool is currently selected
      Specified by:
      selectTool in interface IToolbox
      Parameters:
      tool - The tool to select