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/DockManager.h
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -157,17 +157,25 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
157
157
DragPreviewShowsContentPixmap = 0x0800,///< If opaque undocking is disabled, the created drag preview window shows a copy of the content of the dock widget / dock are that is dragged
158
158
DragPreviewHasWindowFrame = 0x1000,///< If opaque undocking is disabled, then this flag configures if the drag preview is frameless or looks like a real window
159
159
AlwaysShowTabs = 0x2000,///< If this option is enabled, the tab of a dock widget is always displayed - even if it is the only visible dock widget in a floating widget.
160
+
DockAreaHasUndockButton = 0x4000, //!< If the flag is set each dock area has an undock button
161
+
DockAreaHasTabsMenuButton = 0x8000, //!< If the flag is set each dock area has a tabs menu button
160
162
DefaultConfig = ActiveTabHasCloseButton
161
163
| DockAreaHasCloseButton
164
+
| DockAreaHasUndockButton
165
+
| DockAreaHasTabsMenuButton
162
166
| OpaqueSplitterResize
163
167
| XmlCompressionEnabled
164
168
| OpaqueUndocking, ///< the default configuration
165
169
DefaultNonOpaqueConfig = ActiveTabHasCloseButton
166
170
| DockAreaHasCloseButton
171
+
| DockAreaHasUndockButton
172
+
| DockAreaHasTabsMenuButton
167
173
| XmlCompressionEnabled
168
174
| DragPreviewShowsContentPixmap, ///< the default configuration for non opaque operations
0 commit comments