Package dk.gtz.graphedit.tool
Class Toolbox
java.lang.Object
dk.gtz.graphedit.tool.Toolbox
- All Implemented Interfaces:
IToolbox
Implementation of a toolbox
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
ITool
Constructor wrapper interface, where the constructor takes a parent toolbox argument. -
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new toolbox with a default category and a default toolConstruct a new toolbox with a default category, a default tool and a list of additional toolsToolbox
(String defaultCategory, Toolbox.IToolConstructor defaultToolCtor) Construct a new toolbox with a default category and a constructor for the default tool -
Method Summary
Modifier and TypeMethodDescriptionAdd a list of tools to the toolboxAdd a list of tools to the toolbox and put them in a categoryaddDefaultTool
(ITool tool) Add the tool that will be selected by defaultGet the default tooljavafx.beans.property.ObjectProperty<ITool>
Get the currently selected tool observableGet all tools in the toolbox by categoryvoid
selectTool
(ITool tool) Change which tool is currently selected
-
Constructor Details
-
Toolbox
Construct a new toolbox with a default category and a constructor for the default tool- Parameters:
defaultCategory
- The category of the default tooldefaultToolCtor
- Constructor function that can create the default tool. Will be created and selected immediately
-
Toolbox
Construct a new toolbox with a default category and a default tool- Parameters:
defaultCategory
- The category of the default tooldefaultTool
- The default tool. Will be selected immediately
-
Toolbox
Construct a new toolbox with a default category, a default tool and a list of additional tools- Parameters:
defaultCategory
- The category of the default tooldefaultTool
- The default tool. Will be selected immediatelytools
- List of additional tools to put in the default category
-
-
Method Details
-
getToolsByCategory
Description copied from interface:IToolbox
Get all tools in the toolbox by category- Specified by:
getToolsByCategory
in interfaceIToolbox
- Returns:
- A mapping of category names to lists of tools
-
addDefaultTool
Description copied from interface:IToolbox
Add the tool that will be selected by default- Specified by:
addDefaultTool
in interfaceIToolbox
- Parameters:
tool
- The tool to be selected by default- Returns:
- A builder-pattern style reference to this
-
add
Description copied from interface:IToolbox
Add a list of tools to the toolbox -
add
Description copied from interface:IToolbox
Add a list of tools to the toolbox and put them in a category -
getDefaultTool
Description copied from interface:IToolbox
Get the default tool- Specified by:
getDefaultTool
in interfaceIToolbox
- Returns:
- A tool instance
-
getSelectedTool
Description copied from interface:IToolbox
Get the currently selected tool observable- Specified by:
getSelectedTool
in interfaceIToolbox
- Returns:
- An observable pointing to the currenlty selected tool
-
selectTool
Description copied from interface:IToolbox
Change which tool is currently selected- Specified by:
selectTool
in interfaceIToolbox
- Parameters:
tool
- The tool to select
-