Interface ComponentDesignDelegate
- All Known Implementing Classes:
BreakpointContainerDesignDelegate
,ColumnContainerDesignDelegate
,CoordinateContainerDesignDelegate
,FlexContainerDesignDelegate
public interface ComponentDesignDelegate
Component implementors may choose to provide an implementation of this interface in order to provide a more custom
design experience for their component.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
DesignDelegates may contribute buttons to the workspace's toolbar when the the component type is the current deep selection. -
Method Summary
Modifier and TypeMethodDescriptiondefault JComponent
When your component becomes super-selected, this panel will be displayed about the component property editor unless the current selection includes a single component, andcreateSelectionEditor(ComponentSelection)
returns non-null for that component type.default JComponent
createSelectionEditor
(ComponentSelection selection) When component is selected, this panel will be displayed above the property editor, taking precedence over the deep selection editor.Get a set of the buttons to display when this Component is deep selecteddefault void
installDocumentListener
(PropertyType scope, DocumentModel documentModel) Provides a chance to listen to document changes for a component being manipulated in the designer.default boolean
return true for Components which are Piping Enableddefault boolean
onTagDrop
(DesignAdapter adapter, String indexPath, List<NodeBrowseInfo> tags) Optional handling for when tag(s) are dropped on this component.
-
Method Details
-
isPipingEnabled
default boolean isPipingEnabled()return true for Components which are Piping Enabled -
createDeepSelectionEditor
When your component becomes super-selected, this panel will be displayed about the component property editor unless the current selection includes a single component, andcreateSelectionEditor(ComponentSelection)
returns non-null for that component type.- Returns:
- A component to be used for configuration, or null if you don't need this.
-
deepSelectionToolbarButtons
@Nonnull default Optional<ComponentDesignDelegate.DeepSelectToolbar> deepSelectionToolbarButtons(@Nonnull ViewResourceEditor editor) Get a set of the buttons to display when this Component is deep selected- Parameters:
editor
- the current view resource editor- Returns:
- a set of the buttons to display when this Component is deep selected
-
createSelectionEditor
When component is selected, this panel will be displayed above the property editor, taking precedence over the deep selection editor.- Parameters:
selection
- details about the current selection- Returns:
- a component to aid in property configuration
-
onTagDrop
Optional handling for when tag(s) are dropped on this component.- Parameters:
adapter
- object that allows for manipulating the component's configuration and propertiesindexPath
- The path of the componenttags
- The tags that were dropped.- Returns:
- true if you have handled the tag drop, false if you want the standard tag drop handling
-
installDocumentListener
Provides a chance to listen to document changes for a component being manipulated in the designer.
-