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
+17-18Lines changed: 17 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -160,25 +160,24 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
160
160
DockAreaHasUndockButton = 0x4000, //!< If the flag is set each dock area has an undock button
161
161
DockAreaHasTabsMenuButton = 0x8000, //!< If the flag is set each dock area has a tabs menu button
162
162
DockAreaHideDisabledButtons = 0x10000, //!< If the flag is set disabled dock area buttons will not appear on the tollbar at all (enabling them will bring them back)
163
-
DefaultConfig = ActiveTabHasCloseButton
164
-
| DockAreaHasCloseButton
165
-
| DockAreaHasUndockButton
166
-
| DockAreaHasTabsMenuButton
167
-
| OpaqueSplitterResize
168
-
| XmlCompressionEnabled
169
-
| OpaqueUndocking, ///< the default configuration
170
-
DefaultNonOpaqueConfig = ActiveTabHasCloseButton
171
-
| DockAreaHasCloseButton
172
-
| DockAreaHasUndockButton
173
-
| DockAreaHasTabsMenuButton
174
-
| XmlCompressionEnabled
163
+
164
+
165
+
DefaultDockAreaButtons = DockAreaHasCloseButton
166
+
| DockAreaHasUndockButton
167
+
| DockAreaHasTabsMenuButton,///< default configuration of dock area title bar buttons
168
+
169
+
DefaultBaseConfig = DefaultDockAreaButtons
170
+
| ActiveTabHasCloseButton
171
+
| XmlCompressionEnabled,///< default base configuration settings
172
+
173
+
DefaultOpaqueConfig = DefaultBaseConfig
174
+
| OpaqueSplitterResize
175
+
| OpaqueUndocking, ///< the default configuration with opaque operations - this may cause issues if ActiveX or Qt 3D windows are involved
176
+
177
+
DefaultNonOpaqueConfig = DefaultBaseConfig
175
178
| DragPreviewShowsContentPixmap, ///< the default configuration for non opaque operations
0 commit comments