Class: QgsDockWidget¶
A QDockWidget subclass with more fine-grained control over how the widget is closed or opened.
Class Hierarchy¶
Base classes¶
Subclasses¶
A dockable widget used to handle the CAD tools on top of a selection of map tools. |
|
A dock widget containing a |
Methods
Returns |
|
Links an action to the dock, so that toggling the action will automatically set the dock's visibility to suit (and changing the dock visibility will update the action's state). |
|
Sets the dock widget as visible to a user, ie both shown and raised to the front. |
|
Toggles whether the dock is user visible. |
|
Returns the action linked to the dock. |
Signals
Emitted when dock widget is closed. |
|
Emitted when dock widget is closed (or opened). |
|
Emitted when dock widget is opened. |
|
Emitted when dock widget is opened (or closed). |
- class qgis.gui.QgsDockWidget[source]¶
Bases:
QDockWidget
- __init__(parent: QWidget | None = None, flags: Qt.WindowFlags | Qt.WindowType = Qt.WindowFlags())
Constructor for QgsDockWidget.
- Parameters:
parent (Optional[QWidget] = None) – parent widget
flags (Union[Qt.WindowFlags, Qt.WindowType] = Qt.WindowFlags()) – window flags
- __init__(title: str | None, parent: QWidget | None = None, flags: Qt.WindowFlags | Qt.WindowType = Qt.WindowFlags())
Constructor for QgsDockWidget.
- Parameters:
title (Optional[str]) – dock title
parent (Optional[QWidget] = None) – parent widget
flags (Union[Qt.WindowFlags, Qt.WindowType] = Qt.WindowFlags()) – window flags
- signal closedStateChanged(wasClosed: bool)[source]¶
Emitted when dock widget is closed (or opened).
- Parameters:
wasClosed (bool) – will be
True
if dock widget was closed, orFalse
if dock widget was opened
See also
See also
- isUserVisible(self) bool [source]¶
Returns
True
if the dock is both opened and raised to the front (ie not hidden by any other tabs.See also
See also
- Return type:
bool
- signal openedStateChanged(wasOpened: bool)[source]¶
Emitted when dock widget is opened (or closed).
- Parameters:
wasOpened (bool) – will be
True
if dock widget was opened, orFalse
if dock widget was closed
See also
See also
- setToggleVisibilityAction(self, action: QAction | None)[source]¶
Links an
action
to the dock, so that toggling the action will automatically set the dock’s visibility to suit (and changing the dock visibility will update the action’s state).See also
Added in version 3.4.
- Parameters:
action (Optional[QAction])
- setUserVisible(self, visible: bool)[source]¶
Sets the dock widget as visible to a user, ie both shown and raised to the front.
- Parameters:
visible (bool) –
set to
True
to show the dock to the user, orFalse
to hide the dock. When setting a dock as user visible, the dock will be opened (if it is not already opened) and raised to the front. When setting as hidden, the following logic is used:hiding a dock which is open but not raised (ie hidden by another tab) will have no effect, and the dock will still be opened and hidden by the other tab
hiding a dock which is open and raised (ie, user visible) will cause the dock to be closed
hiding a dock which is closed has no effect and raises no signals
See also
See also
- toggleUserVisible(self)[source]¶
Toggles whether the dock is user visible. If the dock is not currently user visible (i.e. opened and activated as a tab) then the dock will be opened and raised. If it is currently user visible it will be closed.
See also
See also
Added in version 3.2.