Collapsible Dock Widget (dock)

Collapsible Dock Widget

A dock widget that can be a collapsed/expanded.

class orangecanvas.gui.dock.CollapsibleDockWidget(*args, **kwargs)[source]

Bases: PyQt5.QtWidgets.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 the setExpandedWidget() and setCollapsedWidget().

Note

Do not use the base class QDockWidget.setWidget() method to set the dock contents. Use setExpandedWidget() and setCollapsedWidget() instead.

expandedChanged

Emitted when the dock widget’s expanded state changes.

setExpanded(state)[source]

Set the widgets expanded state.

expanded()[source]

Is the dock widget in expanded state. If True the expandedWidget will be shown, and collapsedWidget otherwise.

expanded_

Is the dock widget in expanded state. If True the expandedWidget will be shown, and collapsedWidget otherwise.

setExpandedWidget(widget)[source]

Set the widget with contents to show while expanded.

expandedWidget()[source]

Return the widget previously set with setExpandedWidget, or None if no widget has been set.

setCollapsedWidget(widget)[source]

Set the widget with contents to show while collapsed.

collapsedWidget()[source]

Return the widget previously set with setCollapsedWidget, or None if no widget has been set.

currentWidget()[source]

Return the current shown widget depending on the expanded state

expand()[source]

Expand the dock (same as setExpanded(True))

collapse()[source]

Collapse the dock (same as setExpanded(False))

eventFilter(obj, event)[source]

Reimplemented.

event(event)[source]

Reimplemented.