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

Added global config flags to support different dock manager behaviour

This commit is contained in:
Uwe Kindler 2018-11-08 12:57:25 +01:00
parent b9265fccec
commit 854f542164
5 changed files with 93 additions and 9 deletions

View File

@ -266,11 +266,17 @@ CMainWindow::CMainWindow(QWidget *parent) :
QMainWindow(parent), QMainWindow(parent),
d(new MainWindowPrivate(this)) d(new MainWindowPrivate(this))
{ {
using namespace ads;
d->ui.setupUi(this); d->ui.setupUi(this);
d->createActions(); d->createActions();
// Now create the dock manager and its content // Now create the dock manager and its content
d->DockManager = new ads::CDockManager(this); d->DockManager = new CDockManager(this);
// Uncomment the following line to have the old style where the dock
// area close button closes the active tab
//d->DockManager->setConfigFlags({
// CDockManager::DockAreaHasCloseButton | CDockManager::DockAreaCloseButtonClosesTab});
connect(d->PerspectiveComboBox, SIGNAL(activated(const QString&)), connect(d->PerspectiveComboBox, SIGNAL(activated(const QString&)),
d->DockManager, SLOT(openPerspective(const QString&))); d->DockManager, SLOT(openPerspective(const QString&)));
@ -280,8 +286,6 @@ CMainWindow::CMainWindow(QWidget *parent) :
d->restoreState(); d->restoreState();
d->restorePerspectives(); d->restorePerspectives();
/*CAnimatedLabel* AnimatedLabel = new CAnimatedLabel();
AnimatedLabel->show();*/
} }

View File

@ -80,6 +80,22 @@ struct DockAreaTitleBarPrivate
* Creates the internal TabBar * Creates the internal TabBar
*/ */
void createTabBar(); void createTabBar();
/**
* Convenience function for DockManager access
*/
CDockManager* dockManager() const
{
return DockArea->dockManager();
}
/**
* Returns true if the given config flag is set
*/
bool testConfigFlag(CDockManager::eConfigFlag Flag) const
{
return DockArea->dockManager()->configFlags().testFlag(Flag);
}
};// struct DockAreaTitleBarPrivate };// struct DockAreaTitleBarPrivate
@ -133,6 +149,9 @@ void DockAreaTitleBarPrivate::createButtons()
CloseButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding); CloseButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
TopLayout->addWidget(CloseButton, 0); TopLayout->addWidget(CloseButton, 0);
_this->connect(CloseButton, SIGNAL(clicked()), SLOT(onCloseButtonClicked())); _this->connect(CloseButton, SIGNAL(clicked()), SLOT(onCloseButtonClicked()));
CloseButton->setEnabled(testConfigFlag(CDockManager::DockAreaHasCloseButton));
CloseButton->setVisible(CloseButton->isEnabled());
} }
@ -221,8 +240,14 @@ void CDockAreaTitleBar::onTabsMenuAboutToShow()
void CDockAreaTitleBar::onCloseButtonClicked() void CDockAreaTitleBar::onCloseButtonClicked()
{ {
qDebug() << "CDockAreaTitleBar::onCloseButtonClicked"; qDebug() << "CDockAreaTitleBar::onCloseButtonClicked";
//d->TabBar->closeTab(d->TabBar->currentIndex()); if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab))
d->DockArea->closeArea(); {
d->TabBar->closeTab(d->TabBar->currentIndex());
}
else
{
d->DockArea->closeArea();
}
} }
@ -249,8 +274,12 @@ void CDockAreaTitleBar::onCurrentTabChanged(int Index)
{ {
return; return;
} }
/*CDockWidget* DockWidget = d->TabBar->tab(Index)->dockWidget();
d->CloseButton->setEnabled(DockWidget->features().testFlag(CDockWidget::DockWidgetClosable));*/ if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab))
{
CDockWidget* DockWidget = d->TabBar->tab(Index)->dockWidget();
d->CloseButton->setEnabled(DockWidget->features().testFlag(CDockWidget::DockWidgetClosable));
}
} }

View File

@ -74,6 +74,7 @@ struct DockManagerPrivate
QMenu* ViewMenu; QMenu* ViewMenu;
CDockManager::eViewMenuInsertionOrder MenuInsertionOrder = CDockManager::MenuAlphabeticallySorted; CDockManager::eViewMenuInsertionOrder MenuInsertionOrder = CDockManager::MenuAlphabeticallySorted;
bool RestoringState = false; bool RestoringState = false;
CDockManager::ConfigFlags ConfigFlags{CDockManager::DefaultConfig};
/** /**
* Private data constructor * Private data constructor
@ -718,6 +719,20 @@ int CDockManager::startDragDistance()
return QApplication::startDragDistance() * 1.5; return QApplication::startDragDistance() * 1.5;
} }
//===========================================================================
CDockManager::ConfigFlags CDockManager::configFlags() const
{
return d->ConfigFlags;
}
//===========================================================================
void CDockManager::setConfigFlags(const ConfigFlags Flags)
{
d->ConfigFlags = Flags;
}
} // namespace ads } // namespace ads
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@ -114,10 +114,25 @@ public:
XmlAutoFormattingEnabled XmlAutoFormattingEnabled
}; };
/**
* These global configuration flags configure some global dock manager
* settings.
*/
enum eConfigFlag
{
ActiveTabHasCloseButton = 0x01, //!< If this flag is set, the active tab in a tab area has a close button
DockAreaHasCloseButton = 0x02, //!< If the flag is set each dock area has a close button
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
DefaultConfig = ActiveTabHasCloseButton | DockAreaHasCloseButton, ///< the default configuration
};
Q_DECLARE_FLAGS(ConfigFlags, eConfigFlag)
/** /**
* Default Constructor. * Default Constructor.
* If the given parent is a QMainWindow, the dock manager sets itself as the * If the given parent is a QMainWindow, the dock manager sets itself as the
* central widget * central widget.
* Before you create any dock widgets, you should properly setup the
* configuration flags via setConfigFlags()
*/ */
CDockManager(QWidget* parent = 0); CDockManager(QWidget* parent = 0);
@ -126,6 +141,17 @@ public:
*/ */
virtual ~CDockManager(); virtual ~CDockManager();
/**
* This function returns the global configuration flags
*/
ConfigFlags configFlags() const;
/**
* Sets the global configuration flags for the whole docking system.
* Call this function before you create your first dock widget.
*/
void setConfigFlags(const ConfigFlags Flags);
/** /**
* Adds dockwidget into the given area. * Adds dockwidget into the given area.
* If DockAreaWidget is not null, then the area parameter indicates the area * If DockAreaWidget is not null, then the area parameter indicates the area

View File

@ -123,6 +123,14 @@ struct DockWidgetTabPrivate
* is not possible for any reason * is not possible for any reason
*/ */
bool startFloating(); bool startFloating();
/**
* Returns true if the given config flag is set
*/
bool testConfigFlag(CDockManager::eConfigFlag Flag) const
{
return DockArea->dockManager()->configFlags().testFlag(Flag);
}
}; };
// struct DockWidgetTabPrivate // struct DockWidgetTabPrivate
@ -347,7 +355,9 @@ bool CDockWidgetTab::isActiveTab() const
//============================================================================ //============================================================================
void CDockWidgetTab::setActiveTab(bool active) void CDockWidgetTab::setActiveTab(bool active)
{ {
d->CloseButton->setVisible(active && d->DockWidget->features().testFlag(CDockWidget::DockWidgetClosable)); bool DockWidgetClosable = d->DockWidget->features().testFlag(CDockWidget::DockWidgetClosable);
bool TabHasCloseButton = d->testConfigFlag(CDockManager::ActiveTabHasCloseButton);
d->CloseButton->setVisible(active && DockWidgetClosable && TabHasCloseButton);
if (d->IsActiveTab == active) if (d->IsActiveTab == active)
{ {
return; return;