1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Minimize button flag cannot be global flag - should be configurable for each dock widget.

This commit is contained in:
Cynthia Pang 2023-10-10 14:32:21 +08:00
parent 521f47f74c
commit 68bc850b88
7 changed files with 9 additions and 18 deletions

View File

@ -724,9 +724,6 @@ CMainWindow::CMainWindow(QWidget *parent) :
// uncomment the following line if you don't want close button on DockArea's title bar // uncomment the following line if you don't want close button on DockArea's title bar
//CDockManager::setConfigFlag(CDockManager::DockAreaHasCloseButton, false); //CDockManager::setConfigFlag(CDockManager::DockAreaHasCloseButton, false);
// uncomment the following line if you don't want Auto Hide docks to be closeable
//CDockManager::setAutoHideConfigFlag(CDockManager::AutoHideDockAreaCloseable, false);
// uncomment the following line if you don't want undock button on DockArea's title bar // uncomment the following line if you don't want undock button on DockArea's title bar
//CDockManager::setConfigFlag(CDockManager::DockAreaHasUndockButton, false); //CDockManager::setConfigFlag(CDockManager::DockAreaHasUndockButton, false);

View File

@ -14,8 +14,6 @@
#include "AutoHideDockContainer.h" #include "AutoHideDockContainer.h"
#include "DockAreaWidget.h" #include "DockAreaWidget.h"
#include "DockAreaTitleBar.h"
#include "IconProvider.h"
using namespace ads; using namespace ads;
@ -25,13 +23,11 @@ CMainWindow::CMainWindow(QWidget *parent)
, ui(new Ui::CMainWindow) , ui(new Ui::CMainWindow)
{ {
ui->setupUi(this); ui->setupUi(this);
CDockManager::iconProvider().registerCustomIcon(DockAreaMinimizeIcon, QIcon()); // TODO: CP: Icon.
CDockManager::setConfigFlag(CDockManager::OpaqueSplitterResize, true); CDockManager::setConfigFlag(CDockManager::OpaqueSplitterResize, true);
CDockManager::setConfigFlag(CDockManager::XmlCompressionEnabled, false); CDockManager::setConfigFlag(CDockManager::XmlCompressionEnabled, false);
CDockManager::setConfigFlag(CDockManager::FocusHighlighting, true); CDockManager::setConfigFlag(CDockManager::FocusHighlighting, true);
CDockManager::setAutoHideConfigFlags(CDockManager::DefaultAutoHideConfig); CDockManager::setAutoHideConfigFlags(CDockManager::DefaultAutoHideConfig);
CDockManager::setAutoHideConfigFlag(CDockManager::AutoHideDockAreaCloseable, false); CDockManager::setAutoHideConfigFlag(CDockManager::AutoHideCloseButtonCollapsesDock, false);
CDockManager::setAutoHideConfigFlag(CDockManager::AutoHideDockHasMinimizeButton, true); CDockManager::setAutoHideConfigFlag(CDockManager::AutoHideDockHasMinimizeButton, true);
DockManager = new CDockManager(this); DockManager = new CDockManager(this);
@ -49,6 +45,7 @@ CMainWindow::CMainWindow(QWidget *parent)
table->setColumnCount(3); table->setColumnCount(3);
table->setRowCount(10); table->setRowCount(10);
CDockWidget* TableDockWidget = new CDockWidget("Table 1"); CDockWidget* TableDockWidget = new CDockWidget("Table 1");
TableDockWidget->setFeature(CDockWidget::AutoHideDockWidgetClosable, false);
TableDockWidget->setWidget(table); TableDockWidget->setWidget(table);
TableDockWidget->setMinimumSizeHintMode(CDockWidget::MinimumSizeHintFromDockWidget); TableDockWidget->setMinimumSizeHintMode(CDockWidget::MinimumSizeHintFromDockWidget);
TableDockWidget->setMinimumSize(200,150); TableDockWidget->setMinimumSize(200,150);
@ -60,6 +57,7 @@ CMainWindow::CMainWindow(QWidget *parent)
table->setColumnCount(5); table->setColumnCount(5);
table->setRowCount(1020); table->setRowCount(1020);
TableDockWidget = new CDockWidget("Table 2"); TableDockWidget = new CDockWidget("Table 2");
TableDockWidget->setFeature(CDockWidget::AutoHideDockWidgetClosable, false);
TableDockWidget->setWidget(table); TableDockWidget->setWidget(table);
TableDockWidget->setMinimumSizeHintMode(CDockWidget::MinimumSizeHintFromDockWidget); TableDockWidget->setMinimumSizeHintMode(CDockWidget::MinimumSizeHintFromDockWidget);
TableDockWidget->resize(250, 150); TableDockWidget->resize(250, 150);
@ -71,6 +69,7 @@ CMainWindow::CMainWindow(QWidget *parent)
propertiesTable->setColumnCount(3); propertiesTable->setColumnCount(3);
propertiesTable->setRowCount(10); propertiesTable->setRowCount(10);
CDockWidget* PropertiesDockWidget = new CDockWidget("Properties"); CDockWidget* PropertiesDockWidget = new CDockWidget("Properties");
PropertiesDockWidget->setFeature(CDockWidget::AutoHideDockWidgetClosable, true);
PropertiesDockWidget->setWidget(propertiesTable); PropertiesDockWidget->setWidget(propertiesTable);
PropertiesDockWidget->setMinimumSizeHintMode(CDockWidget::MinimumSizeHintFromDockWidget); PropertiesDockWidget->setMinimumSizeHintMode(CDockWidget::MinimumSizeHintFromDockWidget);
PropertiesDockWidget->resize(250, 150); PropertiesDockWidget->resize(250, 150);

View File

@ -91,6 +91,7 @@ namespace ads
DockAreaMenuIcon, DockAreaMenuIcon,
DockAreaUndockIcon, DockAreaUndockIcon,
DockAreaCloseIcon, DockAreaCloseIcon,
DockAreaMinimizeIcon,
IconCount, IconCount,
}; };

View File

@ -223,7 +223,7 @@ void DockAreaTitleBarPrivate::createButtons()
MinimizeButton = new CTitleBarButton(testAutoHideConfigFlag(CDockManager::AutoHideDockHasMinimizeButton)); MinimizeButton = new CTitleBarButton(testAutoHideConfigFlag(CDockManager::AutoHideDockHasMinimizeButton));
MinimizeButton->setObjectName("autoHideDockAreaMinimizeButton"); MinimizeButton->setObjectName("autoHideDockAreaMinimizeButton");
MinimizeButton->setAutoRaise(true); MinimizeButton->setAutoRaise(true);
internal::setButtonIcon(MinimizeButton, QStyle::SP_TitleBarNormalButton, ads::DockAreaMinimizeIcon); internal::setButtonIcon(MinimizeButton, QStyle::SP_TitleBarMinButton, ads::DockAreaMinimizeIcon);
internal::setToolTip(MinimizeButton, _this->titleBarButtonToolTip(TitleBarButtonMinimize)); internal::setToolTip(MinimizeButton, _this->titleBarButtonToolTip(TitleBarButtonMinimize));
MinimizeButton->setSizePolicy(ButtonSizePolicy); MinimizeButton->setSizePolicy(ButtonSizePolicy);
MinimizeButton->setIconSize(QSize(16, 16)); MinimizeButton->setIconSize(QSize(16, 16));
@ -433,11 +433,6 @@ void CDockAreaTitleBar::onCloseButtonClicked()
{ {
d->DockArea->autoHideDockContainer()->collapseView(true); d->DockArea->autoHideDockContainer()->collapseView(true);
} }
//else if (!CDockManager::testAutoHideConfigFlag(CDockManager::AutoHideDockAreaCloseable) &&
// d->DockArea->autoHideDockContainer())
//{
// return;
//}
else if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab)) else if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab))
{ {
d->TabBar->closeTab(d->TabBar->currentIndex()); d->TabBar->closeTab(d->TabBar->currentIndex());

View File

@ -371,7 +371,7 @@ void DockAreaWidgetPrivate::updateTitleBarButtonStates()
} }
TitleBar->button(TitleBarButtonClose)->setEnabled( TitleBar->button(TitleBarButtonClose)->setEnabled(
(_this->isAutoHide() ? CDockManager::testAutoHideConfigFlag(CDockManager::AutoHideDockAreaCloseable) : true) (_this->isAutoHide() ? _this->features().testFlag(CDockWidget::AutoHideDockWidgetClosable) : true)
&& _this->features().testFlag(CDockWidget::DockWidgetClosable)); && _this->features().testFlag(CDockWidget::DockWidgetClosable));
TitleBar->button(TitleBarButtonUndock)->setEnabled( TitleBar->button(TitleBarButtonUndock)->setEnabled(
_this->features().testFlag(CDockWidget::DockWidgetFloatable)); _this->features().testFlag(CDockWidget::DockWidgetFloatable));

View File

@ -250,13 +250,11 @@ public:
AutoHideSideBarsIconOnly = 0x10,///< show only icons in auto hide side tab - if a tab has no icon, then the text will be shown AutoHideSideBarsIconOnly = 0x10,///< show only icons in auto hide side tab - if a tab has no icon, then the text will be shown
AutoHideShowOnMouseOver = 0x20, ///< show the auto hide window on mouse over tab and hide it if mouse leaves auto hide container AutoHideShowOnMouseOver = 0x20, ///< show the auto hide window on mouse over tab and hide it if mouse leaves auto hide container
AutoHideCloseButtonCollapsesDock = 0x40, ///< Close button of an auto hide container collapses the dock instead of hiding it completely AutoHideCloseButtonCollapsesDock = 0x40, ///< Close button of an auto hide container collapses the dock instead of hiding it completely
AutoHideDockAreaCloseable = 0x080,///< if this flag is set, the auto hide dock area can be closed.
AutoHideDockHasMinimizeButton = 0x100,///< if the flag is set each auto hide dock area has a minimize button. AutoHideDockHasMinimizeButton = 0x100,///< if the flag is set each auto hide dock area has a minimize button.
DefaultAutoHideConfig = AutoHideFeatureEnabled DefaultAutoHideConfig = AutoHideFeatureEnabled
| DockAreaHasAutoHideButton | DockAreaHasAutoHideButton
| AutoHideCloseButtonCollapsesDock | AutoHideCloseButtonCollapsesDock
| AutoHideDockAreaCloseable
}; };
Q_DECLARE_FLAGS(AutoHideFlags, eAutoHideFlag) Q_DECLARE_FLAGS(AutoHideFlags, eAutoHideFlag)

View File

@ -162,7 +162,8 @@ public:
NoTab = 0x080, ///< dock widget tab will never be shown if this flag is set NoTab = 0x080, ///< dock widget tab will never be shown if this flag is set
DeleteContentOnClose = 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. DeleteContentOnClose = 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.
DockWidgetPinnable = 0x200, ///< dock widget can be pinned and added to an auto hide dock container DockWidgetPinnable = 0x200, ///< dock widget can be pinned and added to an auto hide dock container
DefaultDockWidgetFeatures = DockWidgetClosable | DockWidgetMovable | DockWidgetFloatable | DockWidgetFocusable | DockWidgetPinnable, AutoHideDockWidgetClosable = 0x400,///< dock widget in an auto hide dock container is closable
DefaultDockWidgetFeatures = DockWidgetClosable | DockWidgetMovable | DockWidgetFloatable | DockWidgetFocusable | DockWidgetPinnable | AutoHideDockWidgetClosable,
AllDockWidgetFeatures = DefaultDockWidgetFeatures | DockWidgetDeleteOnClose | CustomCloseHandling, AllDockWidgetFeatures = DefaultDockWidgetFeatures | DockWidgetDeleteOnClose | CustomCloseHandling,
DockWidgetAlwaysCloseAndDelete = DockWidgetForceCloseWithArea | DockWidgetDeleteOnClose, DockWidgetAlwaysCloseAndDelete = DockWidgetForceCloseWithArea | DockWidgetDeleteOnClose,
NoDockWidgetFeatures = 0x000 NoDockWidgetFeatures = 0x000