mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
371 lines
11 KiB
C++
371 lines
11 KiB
C++
/*******************************************************************************
|
|
** Qt Advanced Docking System
|
|
** Copyright (C) 2017 Uwe Kindler
|
|
**
|
|
** This library is free software; you can redistribute it and/or
|
|
** modify it under the terms of the GNU Lesser General Public
|
|
** License as published by the Free Software Foundation; either
|
|
** version 2.1 of the License, or (at your option) any later version.
|
|
**
|
|
** This library is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
** Lesser General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU Lesser General Public
|
|
** License along with this library; If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
|
|
//============================================================================
|
|
/// \file DockAreaTitleBar.cpp
|
|
/// \author Uwe Kindler
|
|
/// \date 12.10.2018
|
|
/// \brief Implementation of CDockAreaTitleBar class
|
|
//============================================================================
|
|
|
|
//============================================================================
|
|
// INCLUDES
|
|
//============================================================================
|
|
#include "DockAreaTitleBar.h"
|
|
|
|
#include <QPushButton>
|
|
#include <QToolButton>
|
|
#include <QBoxLayout>
|
|
#include <QStyle>
|
|
#include <QMenu>
|
|
#include <QScrollArea>
|
|
#include <QMouseEvent>
|
|
#include <QDebug>
|
|
|
|
#include "ads_globals.h"
|
|
#include "FloatingDockContainer.h"
|
|
#include "DockAreaWidget.h"
|
|
#include "DockOverlay.h"
|
|
#include "DockManager.h"
|
|
#include "DockWidget.h"
|
|
#include "DockWidgetTab.h"
|
|
#include "DockAreaTabBar.h"
|
|
|
|
#include <iostream>
|
|
|
|
namespace ads
|
|
{
|
|
using tTileBarButton = QToolButton;
|
|
/**
|
|
* Private data class of CDockAreaTitleBar class (pimpl)
|
|
*/
|
|
struct DockAreaTitleBarPrivate
|
|
{
|
|
CDockAreaTitleBar* _this;
|
|
tTileBarButton* TabsMenuButton;
|
|
tTileBarButton* UndockButton;
|
|
tTileBarButton* CloseButton;
|
|
QBoxLayout* TopLayout;
|
|
CDockAreaWidget* DockArea;
|
|
CDockAreaTabBar* TabBar;
|
|
bool MenuOutdated = true;
|
|
QMenu* TabsMenu;
|
|
|
|
/**
|
|
* Private data constructor
|
|
*/
|
|
DockAreaTitleBarPrivate(CDockAreaTitleBar* _public);
|
|
|
|
/**
|
|
* Creates the title bar close and menu buttons
|
|
*/
|
|
void createButtons();
|
|
|
|
/**
|
|
* Creates the internal TabBar
|
|
*/
|
|
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 CDockManager::configFlags().testFlag(Flag);
|
|
}
|
|
|
|
/**
|
|
* Helper function to set title bar button icons depending on operating
|
|
* system and to avoid duplicated code. On windows the standard icons
|
|
* are blurry since Qt 5.11 so we need to do some additional steps
|
|
*/
|
|
void setTitleBarButtonIcon(tTileBarButton* Button, QStyle::StandardPixmap StandarPixmap)
|
|
{
|
|
#ifdef Q_OS_LINUX
|
|
Button->setIcon(_this->style()->standardIcon(StandarPixmap));
|
|
#else
|
|
QIcon Icon;
|
|
QPixmap normalPixmap = _this->style()->standardPixmap(StandarPixmap, 0, Button);
|
|
Icon.addPixmap(internal::createTransparentPixmap(normalPixmap, 0.25), QIcon::Disabled);
|
|
Icon.addPixmap(normalPixmap, QIcon::Normal);
|
|
Button->setIcon(Icon);
|
|
#endif
|
|
}
|
|
};// struct DockAreaTitleBarPrivate
|
|
|
|
|
|
|
|
//============================================================================
|
|
DockAreaTitleBarPrivate::DockAreaTitleBarPrivate(CDockAreaTitleBar* _public) :
|
|
_this(_public)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void DockAreaTitleBarPrivate::createButtons()
|
|
{
|
|
QSizePolicy ButtonSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
|
// Tabs menu button
|
|
TabsMenuButton = new tTileBarButton();
|
|
TabsMenuButton->setObjectName("tabsMenuButton");
|
|
TabsMenuButton->setAutoRaise(true);
|
|
TabsMenuButton->setPopupMode(QToolButton::InstantPopup);
|
|
setTitleBarButtonIcon(TabsMenuButton, QStyle::SP_TitleBarUnshadeButton);
|
|
QMenu* TabsMenu = new QMenu(TabsMenuButton);
|
|
#ifndef QT_NO_TOOLTIP
|
|
TabsMenu->setToolTipsVisible(true);
|
|
#endif
|
|
_this->connect(TabsMenu, SIGNAL(aboutToShow()), SLOT(onTabsMenuAboutToShow()));
|
|
TabsMenuButton->setMenu(TabsMenu);
|
|
#ifndef QT_NO_TOOLTIP
|
|
TabsMenuButton->setToolTip(QObject::tr("List all tabs"));
|
|
#endif
|
|
TabsMenuButton->setSizePolicy(ButtonSizePolicy);
|
|
TopLayout->addWidget(TabsMenuButton, 0);
|
|
_this->connect(TabsMenuButton->menu(), SIGNAL(triggered(QAction*)),
|
|
SLOT(onTabsMenuActionTriggered(QAction*)));
|
|
|
|
|
|
// Undock button
|
|
UndockButton = new tTileBarButton();
|
|
UndockButton->setObjectName("undockButton");
|
|
UndockButton->setAutoRaise(true);
|
|
#ifndef QT_NO_TOOLTIP
|
|
UndockButton->setToolTip(QObject::tr("Detach Group"));
|
|
#endif
|
|
setTitleBarButtonIcon(UndockButton, QStyle::SP_TitleBarNormalButton);
|
|
UndockButton->setSizePolicy(ButtonSizePolicy);
|
|
TopLayout->addWidget(UndockButton, 0);
|
|
_this->connect(UndockButton, SIGNAL(clicked()), SLOT(onUndockButtonClicked()));
|
|
|
|
|
|
// Close button
|
|
CloseButton = new tTileBarButton();
|
|
CloseButton->setObjectName("closeButton");
|
|
CloseButton->setAutoRaise(true);
|
|
setTitleBarButtonIcon(CloseButton, QStyle::SP_TitleBarCloseButton);
|
|
#ifndef QT_NO_TOOLTIP
|
|
if (testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab))
|
|
{
|
|
CloseButton->setToolTip(QObject::tr("Close Active Tab"));
|
|
}
|
|
else
|
|
{
|
|
CloseButton->setToolTip(QObject::tr("Close Group"));
|
|
}
|
|
#endif
|
|
CloseButton->setSizePolicy(ButtonSizePolicy);
|
|
CloseButton->setIconSize(QSize(16, 16));
|
|
if (testConfigFlag(CDockManager::DockAreaHasCloseButton))
|
|
{
|
|
TopLayout->addWidget(CloseButton, 0);
|
|
}
|
|
_this->connect(CloseButton, SIGNAL(clicked()), SLOT(onCloseButtonClicked()));
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void DockAreaTitleBarPrivate::createTabBar()
|
|
{
|
|
TabBar = new CDockAreaTabBar(DockArea);
|
|
TopLayout->addWidget(TabBar);
|
|
_this->connect(TabBar, SIGNAL(tabClosed(int)), SLOT(markTabsMenuOutdated()));
|
|
_this->connect(TabBar, SIGNAL(tabOpened(int)), SLOT(markTabsMenuOutdated()));
|
|
_this->connect(TabBar, SIGNAL(tabInserted(int)), SLOT(markTabsMenuOutdated()));
|
|
_this->connect(TabBar, SIGNAL(removingTab(int)), SLOT(markTabsMenuOutdated()));
|
|
_this->connect(TabBar, SIGNAL(tabMoved(int, int)), SLOT(markTabsMenuOutdated()));
|
|
_this->connect(TabBar, SIGNAL(currentChanged(int)), SLOT(onCurrentTabChanged(int)));
|
|
_this->connect(TabBar, SIGNAL(tabBarClicked(int)), SIGNAL(tabBarClicked(int)));
|
|
|
|
TabBar->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
_this->connect(TabBar, SIGNAL(customContextMenuRequested(const QPoint&)),
|
|
SLOT(showContextMenu(const QPoint&)));
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
CDockAreaTitleBar::CDockAreaTitleBar(CDockAreaWidget* parent) :
|
|
QFrame(parent),
|
|
d(new DockAreaTitleBarPrivate(this))
|
|
{
|
|
d->DockArea = parent;
|
|
|
|
setObjectName("dockAreaTitleBar");
|
|
d->TopLayout = new QBoxLayout(QBoxLayout::LeftToRight);
|
|
d->TopLayout->setContentsMargins(0, 0, 0, 0);
|
|
d->TopLayout->setSpacing(0);
|
|
setLayout(d->TopLayout);
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
|
|
d->createTabBar();
|
|
d->createButtons();
|
|
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
CDockAreaTitleBar::~CDockAreaTitleBar()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
CDockAreaTabBar* CDockAreaTitleBar::tabBar() const
|
|
{
|
|
return d->TabBar;
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::markTabsMenuOutdated()
|
|
{
|
|
d->MenuOutdated = true;
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::onTabsMenuAboutToShow()
|
|
{
|
|
if (!d->MenuOutdated)
|
|
{
|
|
return;
|
|
}
|
|
|
|
QMenu* menu = d->TabsMenuButton->menu();
|
|
menu->clear();
|
|
for (int i = 0; i < d->TabBar->count(); ++i)
|
|
{
|
|
if (!d->TabBar->isTabOpen(i))
|
|
{
|
|
continue;
|
|
}
|
|
auto Tab = d->TabBar->tab(i);
|
|
QAction* Action = menu->addAction(Tab->icon(), Tab->text());
|
|
#ifndef QT_NO_TOOLTIP
|
|
Action->setToolTip(Tab->toolTip());
|
|
#endif
|
|
Action->setData(i);
|
|
}
|
|
|
|
d->MenuOutdated = false;
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::onCloseButtonClicked()
|
|
{
|
|
ADS_PRINT("CDockAreaTitleBar::onCloseButtonClicked");
|
|
if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab))
|
|
{
|
|
d->TabBar->closeTab(d->TabBar->currentIndex());
|
|
}
|
|
else
|
|
{
|
|
d->DockArea->closeArea();
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::onUndockButtonClicked()
|
|
{
|
|
if (d->DockArea->features().testFlag(CDockWidget::DockWidgetFloatable))
|
|
{
|
|
d->TabBar->makeAreaFloating(mapFromGlobal(QCursor::pos()), DraggingInactive);
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::onTabsMenuActionTriggered(QAction* Action)
|
|
{
|
|
int Index = Action->data().toInt();
|
|
d->TabBar->setCurrentIndex(Index);
|
|
emit tabBarClicked(Index);
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::onCurrentTabChanged(int Index)
|
|
{
|
|
if (Index < 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab))
|
|
{
|
|
CDockWidget* DockWidget = d->TabBar->tab(Index)->dockWidget();
|
|
d->CloseButton->setEnabled(DockWidget->features().testFlag(CDockWidget::DockWidgetClosable));
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
QAbstractButton* CDockAreaTitleBar::button(TitleBarButton which) const
|
|
{
|
|
switch (which)
|
|
{
|
|
case TitleBarButtonTabsMenu: return d->TabsMenuButton;
|
|
case TitleBarButtonUndock: return d->UndockButton;
|
|
case TitleBarButtonClose: return d->CloseButton;
|
|
default:
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::setVisible(bool Visible)
|
|
{
|
|
Super::setVisible(Visible);
|
|
markTabsMenuOutdated();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CDockAreaTitleBar::showContextMenu(const QPoint& pos)
|
|
{
|
|
QMenu Menu(this);
|
|
auto Action = Menu.addAction(tr("Detach Area"), this, SLOT(onUndockButtonClicked()));
|
|
Action->setEnabled(d->DockArea->features().testFlag(CDockWidget::DockWidgetFloatable));
|
|
Menu.addSeparator();
|
|
Action = Menu.addAction(tr("Close Area"), this, SLOT(onCloseButtonClicked()));
|
|
Action->setEnabled(d->DockArea->features().testFlag(CDockWidget::DockWidgetClosable));
|
|
Menu.addAction(tr("Close Other Areas"), d->DockArea, SLOT(closeOtherAreas()));
|
|
Menu.exec(mapToGlobal(pos));
|
|
}
|
|
|
|
|
|
} // namespace ads
|
|
|
|
//---------------------------------------------------------------------------
|
|
// EOF DockAreaTitleBar.cpp
|