ReadonlynodeGet the DOM node owned by the widget.
ReadonlyoverlayThe overlay used by the dock 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.
Optionaloptions: DockLayout.IAddOptionsCreate 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.
ProtectednotifyProtectedonA message handler invoked on an 'activate-request' message.
The default implementation of this handler is a no-op.
ProtectedonA message handler invoked on an 'after-attach' message.
The default implementation of this handler is a no-op.
ProtectedonProtectedonA message handler invoked on an 'after-hide' message.
The default implementation of this handler is a no-op.
ProtectedonA message handler invoked on an 'after-show' message.
The default implementation of this handler is a no-op.
ProtectedonProtectedonA message handler invoked on a 'before-detach' message.
The default implementation of this handler is a no-op.
ProtectedonA message handler invoked on a 'before-hide' message.
The default implementation of this handler is a no-op.
ProtectedonA message handler invoked on a 'before-show' message.
The default implementation of this handler is a no-op.
ProtectedonProtectedonProtectedonA message handler invoked on a 'close-request' message.
The default implementation unparents or detaches the widget.
ProtectedonA message handler invoked on a 'fit-request' message.
The default implementation of this handler is a no-op.
ProtectedonA message handler invoked on a 'resize' message.
The default implementation of this handler is a no-op.
ProtectedonA 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.
Optionalforce: 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.
A widget which provides a flexible docking area for widgets.