You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/DockWidget.h
+22-10Lines changed: 22 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -147,18 +147,19 @@ private Q_SLOTS:
147
147
148
148
enum DockWidgetFeature
149
149
{
150
-
DockWidgetClosable = 0x01,///< dock widget has a close button
151
-
DockWidgetMovable = 0x02,///< dock widget is movable and can be moved to a new position in the current dock container
152
-
DockWidgetFloatable = 0x04,///< dock widget can be dragged into a floating window
153
-
DockWidgetDeleteOnClose = 0x08, ///< deletes the dock widget when it is closed
154
-
CustomCloseHandling = 0x10, ///< clicking the close button will not close the dock widget but emits the closeRequested() signal instead
155
-
DockWidgetFocusable = 0x20, ///< if this is enabled, a dock widget can get focus highlighting
156
-
DockWidgetForceCloseWithArea = 0x40, ///< dock widget will be closed when the dock area hosting it is closed
157
-
NoTab = 0x80, ///< dock widget tab will never be shown if this flag is set
150
+
DockWidgetClosable = 0x001,///< dock widget has a close button
151
+
DockWidgetMovable = 0x002,///< dock widget is movable and can be moved to a new position in the current dock container
152
+
DockWidgetFloatable = 0x004,///< dock widget can be dragged into a floating window
153
+
DockWidgetDeleteOnClose = 0x008, ///< deletes the dock widget when it is closed
154
+
CustomCloseHandling = 0x010, ///< clicking the close button will not close the dock widget but emits the closeRequested() signal instead
155
+
DockWidgetFocusable = 0x020, ///< if this is enabled, a dock widget can get focus highlighting
156
+
DockWidgetForceCloseWithArea = 0x040, ///< dock widget will be closed when the dock area hosting it is closed
157
+
NoTab = 0x080, ///< dock widget tab will never be shown if this flag is set
158
+
RecreateContentsWidgetOnCloseAndOpen = 0x100, ///< deletes only the contained widget on close, keeping the dock widget intact and in place. Attempts to rebuild the contents widget on show if there is a widget factory set.
0 commit comments