Optional
options: DockPanel.IOptionsOptional
preferences: CorePreferencesOptional
maximizeCallback: (area: TheiaDockPanel) => voidProtected
_Protected
disableProtected
Optional
Readonly
maximizeReadonly
nodeGet the DOM node owned by the widget.
Protected
Readonly
onReadonly
overlayThe overlay used by the dock panel.
Protected
Optional
Readonly
preferencesProtected
Optional
tabProtected
Readonly
toReadonly
widgetEmitted when a widget is activated by calling activateWidget
.
Readonly
widgetEmitted when a widget is added to the panel.
Readonly
widgetEmitted when a widget is removed from the panel.
Whether the add buttons for each tab bar are enabled.
Set whether the add buttons for each tab bar are enabled.
The dataset for the widget's DOM node.
A signal emitted when the widget is disposed.
The method for hiding widgets.
Get the id of the widget's DOM node.
Set the id of the widget's DOM node.
Test whether the widget's node is attached to the DOM.
Test whether the widget has been disposed.
Whether the dock panel is empty.
Test whether the widget is explicitly hidden.
A signal emitted when the layout configuration is modified.
This signal is emitted whenever the current layout configuration may have changed.
This signal is emitted asynchronously in a collapsed fashion, so that multiple synchronous modifications results in only a single emit of the signal.
Get the mode for the dock panel.
Set the mode for the dock panel.
Changing the mode is a destructive operation with respect to the panel's layout configuration. If layout state must be preserved, save the current layout config before changing the mode.
Get the parent of the widget.
Set the parent of the widget.
Children are typically added to a widget by using a layout, which means user code will not normally set the parent widget directly.
The widget will be automatically removed from its old parent.
This is a no-op if there is no effective parent change.
The renderer used by the dock panel.
Get the spacing between the widgets.
Set the spacing between the widgets.
Whether the tabs are constrained to their source dock panel
Constrain/Allow tabs to be dragged outside of this dock panel
Whether the tabs can be dragged / moved at runtime.
Enable / Disable draggable / movable tabs.
The title object for the widget.
The title object is used by some container widgets when displaying the widget alongside some title, such as a tab panel or side bar.
Since not all widgets will use the title, it is created on demand.
The owner
property of the title is set to this widget.
Add a widget to the dock panel.
The widget to add to the dock panel.
Optional
options: AddOptionsCreate an iterator over the widget's children.
A new iterator over the children of the widget.
The widget must have a populated layout in order to have children.
If a layout is not installed, the returned iterator will be empty.
Test whether a widget is a descendant of this widget.
The descendant widget of interest.
true
if the widget is a descendant, false
otherwise.
Dispose of the resources held by the panel.
Create an iterator over the handles in the panel.
A new iterator over the handles in the panel.
Test whether the widget's DOM node has the given class name.
The class name of interest.
true
if the node has the class, false
otherwise.
Hide the widget and make it hidden to its parent widget.
This causes the isHidden property to be true
.
If the widget is explicitly hidden, this is a no-op.
Protected
notifyProtected
onA message handler invoked on an 'activate-request'
message.
The default implementation of this handler is a no-op.
Protected
onA message handler invoked on an 'after-attach'
message.
The default implementation of this handler is a no-op.
Protected
onProtected
onA message handler invoked on an 'after-hide'
message.
The default implementation of this handler is a no-op.
Protected
onA message handler invoked on an 'after-show'
message.
The default implementation of this handler is a no-op.
Protected
onProtected
onA message handler invoked on a 'before-detach'
message.
The default implementation of this handler is a no-op.
Protected
onA message handler invoked on a 'before-hide'
message.
The default implementation of this handler is a no-op.
Protected
onA message handler invoked on a 'before-show'
message.
The default implementation of this handler is a no-op.
Protected
onProtected
onProtected
onA message handler invoked on a 'close-request'
message.
The default implementation unparents or detaches the widget.
Protected
onA message handler invoked on a 'fit-request'
message.
The default implementation of this handler is a no-op.
Protected
onProtected
onA message handler invoked on a 'resize'
message.
The default implementation of this handler is a no-op.
Protected
onProtected
onA message handler invoked on an 'update-request'
message.
The default implementation of this handler is a no-op.
Process a message sent to the widget.
The message sent to the widget.
Restore the layout to a previously saved configuration.
Save the current layout configuration of the dock panel.
A new config object for the current layout state.
The return value can be provided to the restoreLayout
method
in order to restore the layout to its current configuration.
Create an iterator over the selected widgets in the panel.
A new iterator over the selected user widgets.
This iterator yields the widgets corresponding to the current tab of each tab bar in the panel.
Show the widget and make it visible to its parent widget.
This causes the isHidden property to be false
.
If the widget is not explicitly hidden, this is a no-op.
Test whether the given widget flag is set.
This will not typically be called directly by user code.
Toggle a class name on the widget's DOM node.
The class name to toggle on the node.
Optional
force: booleanWhether to force add the class (true
) or force
remove the class (false
). If not provided, the presence of
the class will be toggled from its current state.
true
if the class is now present, false
otherwise.
The class name must not contain whitespace.
Create an iterator over the user widgets in the panel.
A new iterator over the user widgets in the panel.
This iterator does not include the generated tab bars.
This specialization of DockPanel adds various events that are used for implementing the side panels of the application shell.