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
// uncomment the following line if you want to show tabs menu button on DockArea's title bar only when there are more than one tab and at least of them has elided title
Copy file name to clipboardExpand all lines: src/DockManager.h
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -163,6 +163,8 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
163
163
DockAreaHasTabsMenuButton = 0x8000, //!< If the flag is set each dock area has a tabs menu button
164
164
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)
165
165
DockAreaDynamicTabsMenuButtonVisibility = 0x20000, //!< If the flag is set dock area will disable a tabs menu button when there is only one tab in the area
166
+
FloatingContainerHasWidgetTitle = 0x40000,
167
+
FloatingContainerHasWidgetIcon = 0x80000,
166
168
167
169
168
170
DefaultDockAreaButtons = DockAreaHasCloseButton
@@ -171,7 +173,8 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
171
173
172
174
DefaultBaseConfig = DefaultDockAreaButtons
173
175
| ActiveTabHasCloseButton
174
-
| XmlCompressionEnabled,///< default base configuration settings
176
+
| XmlCompressionEnabled
177
+
| FloatingContainerHasWidgetTitle,///< default base configuration settings
0 commit comments