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
+14-7Lines changed: 14 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -123,13 +123,15 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
123
123
*/
124
124
enum eConfigFlag
125
125
{
126
-
ActiveTabHasCloseButton = 0x01, //!< If this flag is set, the active tab in a tab area has a close button
127
-
DockAreaHasCloseButton = 0x02, //!< If the flag is set each dock area has a close button
128
-
DockAreaCloseButtonClosesTab = 0x04,//!< If the flag is set, the dock area close button closes the active tab, if not set, it closes the complete cock area
129
-
OpaqueSplitterResize = 0x08, //!< See QSplitter::setOpaqueResize() documentation
130
-
XmlAutoFormattingEnabled = 0x10,//!< If enabled, the XML writer automatically adds line-breaks and indentation to empty sections between elements (ignorable whitespace).
131
-
XmlCompressionEnabled = 0x20,//!< If enabled, the XML output will be compressed and is not human readable anymore
132
-
TabCloseButtonIsToolButton = 0x40,//! If enabled the tab close buttons will be QToolButtons instead of QPushButtons - disabled by default
126
+
ActiveTabHasCloseButton = 0x0001, //!< If this flag is set, the active tab in a tab area has a close button
127
+
DockAreaHasCloseButton = 0x0002, //!< If the flag is set each dock area has a close button
128
+
DockAreaCloseButtonClosesTab = 0x0004,//!< If the flag is set, the dock area close button closes the active tab, if not set, it closes the complete cock area
129
+
OpaqueSplitterResize = 0x0008, //!< See QSplitter::setOpaqueResize() documentation
130
+
XmlAutoFormattingEnabled = 0x0010,//!< If enabled, the XML writer automatically adds line-breaks and indentation to empty sections between elements (ignorable whitespace).
131
+
XmlCompressionEnabled = 0x0020,//!< If enabled, the XML output will be compressed and is not human readable anymore
132
+
TabCloseButtonIsToolButton = 0x0040,//! If enabled the tab close buttons will be QToolButtons instead of QPushButtons - disabled by default
133
+
AllTabsHaveCloseButton = 0x0080, //!< if this flag is set, then all tabs that are closable show a close button
134
+
RetainTabSizeWhenCloseButtonHidden = 0x0100, //!< if this flag is set, the space for the close button is reserved even if the close button is not visible
0 commit comments