Collapsible Dock Widget (dock
)
Collapsible Dock Widget
A dock widget that can be a collapsed/expanded.
- class orangecanvas.gui.dock.CollapsibleDockWidget(*args: Any, **kwargs: Any)[source]
Bases:
QDockWidget
This
QDockWidget
subclass overrides the close header button to instead collapse to a smaller size. The contents to show when in each state can be set using thesetExpandedWidget()
andsetCollapsedWidget()
.Note
Do not use the base class
QDockWidget.setWidget()
method to set the dock contents. UsesetExpandedWidget()
andsetCollapsedWidget()
instead.- expandedChanged
Emitted when the dock widget’s expanded state changes.
- expanded() bool [source]
Is the dock widget in expanded state. If True the
expandedWidget
will be shown, andcollapsedWidget
otherwise.
- expanded_
Is the dock widget in expanded state. If True the
expandedWidget
will be shown, andcollapsedWidget
otherwise.
- setExpandedWidget(widget: QWidget) None [source]
Set the widget with contents to show while expanded.
- expandedWidget() QWidget | None [source]
Return the widget previously set with
setExpandedWidget
, orNone
if no widget has been set.
- setCollapsedWidget(widget: QWidget) None [source]
Set the widget with contents to show while collapsed.
- collapsedWidget() QWidget | None [source]
Return the widget previously set with
setCollapsedWidget
, orNone
if no widget has been set.