mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
770 lines
27 KiB
C++
770 lines
27 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 MainWindow.cpp
|
|
/// \author Uwe Kindler
|
|
/// \date 13.02.2018
|
|
/// \brief Implementation of CMainWindow demo class
|
|
//============================================================================
|
|
|
|
|
|
//============================================================================
|
|
// INCLUDES
|
|
//============================================================================
|
|
#include <MainWindow.h>
|
|
#include "ui_mainwindow.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <QTime>
|
|
#include <QLabel>
|
|
#include <QTextEdit>
|
|
#include <QCalendarWidget>
|
|
#include <QFrame>
|
|
#include <QTreeView>
|
|
#include <QFileSystemModel>
|
|
#include <QBoxLayout>
|
|
#include <QSettings>
|
|
#include <QDockWidget>
|
|
#include <QDebug>
|
|
#include <QResizeEvent>
|
|
#include <QAction>
|
|
#include <QWidgetAction>
|
|
#include <QComboBox>
|
|
#include <QInputDialog>
|
|
#include <QRubberBand>
|
|
#include <QPlainTextEdit>
|
|
#include <QTableWidget>
|
|
#include <QScreen>
|
|
#include <QStyle>
|
|
#include <QMessageBox>
|
|
#include <QMenu>
|
|
#include <QToolButton>
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
#include <QAxWidget>
|
|
#endif
|
|
|
|
#include <QMap>
|
|
#include <QElapsedTimer>
|
|
|
|
#include "DockManager.h"
|
|
#include "DockWidget.h"
|
|
#include "DockAreaWidget.h"
|
|
#include "DockAreaTitleBar.h"
|
|
#include "DockAreaTabBar.h"
|
|
#include "FloatingDockContainer.h"
|
|
#include "DockComponentsFactory.h"
|
|
#include "StatusDialog.h"
|
|
|
|
|
|
|
|
/**
|
|
* Function returns a features string with closable (c), movable (m) and floatable (f)
|
|
* features. i.e. The following string is for a not closable but movable and floatable
|
|
* widget: c- m+ f+
|
|
*/
|
|
static QString featuresString(ads::CDockWidget* DockWidget)
|
|
{
|
|
auto f = DockWidget->features();
|
|
return QString("c%1 m%2 f%3")
|
|
.arg(f.testFlag(ads::CDockWidget::DockWidgetClosable) ? "+" : "-")
|
|
.arg(f.testFlag(ads::CDockWidget::DockWidgetMovable) ? "+" : "-")
|
|
.arg(f.testFlag(ads::CDockWidget::DockWidgetFloatable) ? "+" : "-");
|
|
}
|
|
|
|
|
|
/**
|
|
* Appends the string returned by featuresString() to the window title of
|
|
* the given DockWidget
|
|
*/
|
|
static void appendFeaturStringToWindowTitle(ads::CDockWidget* DockWidget)
|
|
{
|
|
DockWidget->setWindowTitle(DockWidget->windowTitle()
|
|
+ QString(" (%1)").arg(featuresString(DockWidget)));
|
|
}
|
|
|
|
/**
|
|
* Helper function to create an SVG icon
|
|
*/
|
|
static QIcon svgIcon(const QString& File)
|
|
{
|
|
// This is a workaround, because in item views SVG icons are not
|
|
// properly scaled an look blurry or pixelate
|
|
QIcon SvgIcon(File);
|
|
SvgIcon.addPixmap(SvgIcon.pixmap(92));
|
|
return SvgIcon;
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
class CCustomComponentsFactory : public ads::CDockComponentsFactory
|
|
{
|
|
public:
|
|
using Super = ads::CDockComponentsFactory;
|
|
ads::CDockAreaTitleBar* createDockAreaTitleBar(ads::CDockAreaWidget* DockArea) const override
|
|
{
|
|
auto TitleBar = new ads::CDockAreaTitleBar(DockArea);
|
|
auto CustomButton = new QToolButton(DockArea);
|
|
CustomButton->setToolTip(QObject::tr("Help"));
|
|
CustomButton->setIcon(svgIcon(":/adsdemo/images/help_outline.svg"));
|
|
CustomButton->setAutoRaise(true);
|
|
int Index = TitleBar->indexOf(TitleBar->button(ads::TitleBarButtonTabsMenu));
|
|
TitleBar->insertWidget(Index + 1, CustomButton);
|
|
return TitleBar;
|
|
}
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================
|
|
/**
|
|
* Custom QTableWidget with a minimum size hint to test CDockWidget
|
|
* setMinimumSizeHintMode() function of CDockWidget
|
|
*/
|
|
class CMinSizeTableWidget : public QTableWidget
|
|
{
|
|
public:
|
|
using QTableWidget::QTableWidget;
|
|
virtual QSize minimumSizeHint() const override
|
|
{
|
|
return QSize(300, 100);
|
|
}
|
|
};
|
|
|
|
|
|
|
|
//============================================================================
|
|
/**
|
|
* Private data class pimpl
|
|
*/
|
|
struct MainWindowPrivate
|
|
{
|
|
CMainWindow* _this;
|
|
Ui::MainWindow ui;
|
|
QAction* SavePerspectiveAction = nullptr;
|
|
QWidgetAction* PerspectiveListAction = nullptr;
|
|
QComboBox* PerspectiveComboBox = nullptr;
|
|
ads::CDockManager* DockManager = nullptr;
|
|
ads::CDockWidget* WindowTitleTestDockWidget = nullptr;
|
|
|
|
MainWindowPrivate(CMainWindow* _public) : _this(_public) {}
|
|
|
|
/**
|
|
* Creates the toolbar actions
|
|
*/
|
|
void createActions();
|
|
|
|
/**
|
|
* Fill the dock manager with dock widgets
|
|
*/
|
|
void createContent();
|
|
|
|
/**
|
|
* Saves the dock manager state and the main window geometry
|
|
*/
|
|
void saveState();
|
|
|
|
/**
|
|
* Save the list of perspectives
|
|
*/
|
|
void savePerspectives();
|
|
|
|
/**
|
|
* Restores the dock manager state
|
|
*/
|
|
void restoreState();
|
|
|
|
/**
|
|
* Restore the perspective listo of the dock manager
|
|
*/
|
|
void restorePerspectives();
|
|
|
|
/**
|
|
* Creates a dock widget with a file system tree view
|
|
*/
|
|
ads::CDockWidget* createFileSystemTreeDockWidget()
|
|
{
|
|
static int FileSystemCount = 0;
|
|
QTreeView* w = new QTreeView();
|
|
w->setFrameShape(QFrame::NoFrame);
|
|
QFileSystemModel* m = new QFileSystemModel(w);
|
|
m->setRootPath(QDir::currentPath());
|
|
w->setModel(m);
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Filesystem %1")
|
|
.arg(FileSystemCount++));
|
|
DockWidget->setWidget(w);
|
|
ui.menuView->addAction(DockWidget->toggleViewAction());
|
|
// We disable focus to test focus highlighting if the dock widget content
|
|
// does not support focus
|
|
w->setFocusPolicy(Qt::NoFocus);
|
|
auto ToolBar = DockWidget->createDefaultToolBar();
|
|
ToolBar->addAction(ui.actionSaveState);
|
|
ToolBar->addAction(ui.actionRestoreState);
|
|
return DockWidget;
|
|
}
|
|
|
|
/**
|
|
* Create a dock widget with a QCalendarWidget
|
|
*/
|
|
ads::CDockWidget* createCalendarDockWidget()
|
|
{
|
|
static int CalendarCount = 0;
|
|
QCalendarWidget* w = new QCalendarWidget();
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Calendar %1").arg(CalendarCount++));
|
|
// The following lines are for testing the setWidget() and takeWidget()
|
|
// functionality
|
|
DockWidget->setWidget(w);
|
|
DockWidget->setWidget(w); // what happens if we set a widget if a widget is already set
|
|
DockWidget->takeWidget(); // we remove the widget
|
|
DockWidget->setWidget(w); // and set the widget again - there should be no error
|
|
DockWidget->setToggleViewActionMode(ads::CDockWidget::ActionModeShow);
|
|
DockWidget->setIcon(svgIcon(":/adsdemo/images/date_range.svg"));
|
|
ui.menuView->addAction(DockWidget->toggleViewAction());
|
|
auto ToolBar = DockWidget->createDefaultToolBar();
|
|
ToolBar->addAction(ui.actionSaveState);
|
|
ToolBar->addAction(ui.actionRestoreState);
|
|
return DockWidget;
|
|
}
|
|
|
|
|
|
/**
|
|
* Create dock widget with a text label
|
|
*/
|
|
ads::CDockWidget* createLongTextLabelDockWidget()
|
|
{
|
|
static int LabelCount = 0;
|
|
QLabel* l = new QLabel();
|
|
l->setWordWrap(true);
|
|
l->setAlignment(Qt::AlignTop | Qt::AlignLeft);
|
|
l->setText(QString("Label %1 %2 - Lorem ipsum dolor sit amet, consectetuer adipiscing elit. "
|
|
"Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque "
|
|
"penatibus et magnis dis parturient montes, nascetur ridiculus mus. "
|
|
"Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. "
|
|
"Nulla consequat massa quis enim. Donec pede justo, fringilla vel, "
|
|
"aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, "
|
|
"imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede "
|
|
"mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum "
|
|
"semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, "
|
|
"porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, "
|
|
"dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla "
|
|
"ut metus varius laoreet.")
|
|
.arg(LabelCount)
|
|
.arg(QTime::currentTime().toString("hh:mm:ss:zzz")));
|
|
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Label %1").arg(LabelCount++));
|
|
DockWidget->setWidget(l);
|
|
ui.menuView->addAction(DockWidget->toggleViewAction());
|
|
return DockWidget;
|
|
}
|
|
|
|
|
|
/**
|
|
* Creates as imple editor widget
|
|
*/
|
|
ads::CDockWidget* createEditorWidget()
|
|
{
|
|
static int EditorCount = 0;
|
|
QPlainTextEdit* w = new QPlainTextEdit();
|
|
w->setPlaceholderText("This is an editor. If you close the editor, it will be "
|
|
"deleted. Enter your text here.");
|
|
w->setStyleSheet("border: none");
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Editor %1").arg(EditorCount++));
|
|
DockWidget->setWidget(w);
|
|
DockWidget->setIcon(svgIcon(":/adsdemo/images/edit.svg"));
|
|
DockWidget->setFeature(ads::CDockWidget::CustomCloseHandling, true);
|
|
ui.menuView->addAction(DockWidget->toggleViewAction());
|
|
|
|
QMenu* OptionsMenu = new QMenu(DockWidget);
|
|
OptionsMenu->setTitle(QObject::tr("Options"));
|
|
OptionsMenu->setToolTip(OptionsMenu->title());
|
|
OptionsMenu->setIcon(svgIcon(":/adsdemo/images/custom-menu-button.svg"));
|
|
auto MenuAction = OptionsMenu->menuAction();
|
|
// The object name of the action will be set for the QToolButton that
|
|
// is created in the dock area title bar. You can use this name for CSS
|
|
// styling
|
|
MenuAction->setObjectName("optionsMenu");
|
|
DockWidget->setTitleBarActions({OptionsMenu->menuAction()});
|
|
auto a = OptionsMenu->addAction(QObject::tr("Clear Editor"));
|
|
w->connect(a, SIGNAL(triggered()), SLOT(clear()));
|
|
|
|
return DockWidget;
|
|
}
|
|
|
|
/**
|
|
* Create a table widget
|
|
*/
|
|
ads::CDockWidget* createTableWidget()
|
|
{
|
|
static int TableCount = 0;
|
|
auto w = new CMinSizeTableWidget();
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Table %1").arg(TableCount++));
|
|
static int colCount = 5;
|
|
static int rowCount = 30;
|
|
w->setColumnCount(colCount);
|
|
w->setRowCount(rowCount);
|
|
for (int col = 0; col < colCount; ++col)
|
|
{
|
|
w->setHorizontalHeaderItem(col, new QTableWidgetItem(QString("Col %1").arg(col+1)));
|
|
for (int row = 0; row < rowCount; ++row)
|
|
{
|
|
w->setItem(row, col, new QTableWidgetItem(QString("T %1-%2").arg(row + 1).arg(col+1)));
|
|
}
|
|
}
|
|
DockWidget->setWidget(w);
|
|
DockWidget->setIcon(svgIcon(":/adsdemo/images/grid_on.svg"));
|
|
DockWidget->setMinimumSizeHintMode(ads::CDockWidget::MinimumSizeHintFromContent);
|
|
auto ToolBar = DockWidget->createDefaultToolBar();
|
|
auto Action = ToolBar->addAction(svgIcon(":/adsdemo/images/fullscreen.svg"), "Toggle Fullscreen");
|
|
QObject::connect(Action, &QAction::triggered, [=]()
|
|
{
|
|
if (DockWidget->isFullScreen())
|
|
{
|
|
DockWidget->showNormal();
|
|
}
|
|
else
|
|
{
|
|
DockWidget->showFullScreen();
|
|
}
|
|
});
|
|
ui.menuView->addAction(DockWidget->toggleViewAction());
|
|
return DockWidget;
|
|
}
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
/**
|
|
* Creates an ActiveX widget on windows
|
|
*/
|
|
ads::CDockWidget* createActiveXWidget(QWidget* parent = nullptr)
|
|
{
|
|
static int ActiveXCount = 0;
|
|
QAxWidget* w = new QAxWidget("{6bf52a52-394a-11d3-b153-00c04f79faa6}", parent);
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Active X %1").arg(ActiveXCount++));
|
|
DockWidget->setWidget(w);
|
|
ui.menuView->addAction(DockWidget->toggleViewAction());
|
|
return DockWidget;
|
|
}
|
|
#endif
|
|
|
|
};
|
|
|
|
//============================================================================
|
|
void MainWindowPrivate::createContent()
|
|
{
|
|
// Test container docking
|
|
auto DockWidget = createCalendarDockWidget();
|
|
DockWidget->setFeature(ads::CDockWidget::DockWidgetClosable, false);
|
|
auto SpecialDockArea = DockManager->addDockWidget(ads::LeftDockWidgetArea, DockWidget);
|
|
|
|
// For this Special Dock Area we want to avoid dropping on the center of it (i.e. we don't want this widget to be ever tabbified):
|
|
{
|
|
SpecialDockArea->setAllowedAreas(ads::OuterDockAreas);
|
|
//SpecialDockArea->setAllowedAreas({ads::LeftDockWidgetArea, ads::RightDockWidgetArea}); // just for testing
|
|
}
|
|
|
|
DockWidget = createLongTextLabelDockWidget();
|
|
WindowTitleTestDockWidget = DockWidget;
|
|
DockWidget->setFeature(ads::CDockWidget::DockWidgetFocusable, false);
|
|
DockManager->addDockWidget(ads::LeftDockWidgetArea, DockWidget);
|
|
auto FileSystemWidget = createFileSystemTreeDockWidget();
|
|
FileSystemWidget->setFeature(ads::CDockWidget::DockWidgetFloatable, false);
|
|
appendFeaturStringToWindowTitle(FileSystemWidget);
|
|
DockManager->addDockWidget(ads::BottomDockWidgetArea, FileSystemWidget);
|
|
|
|
FileSystemWidget = createFileSystemTreeDockWidget();
|
|
FileSystemWidget->setFeature(ads::CDockWidget::DockWidgetMovable, false);
|
|
FileSystemWidget->setFeature(ads::CDockWidget::DockWidgetFloatable, false);
|
|
appendFeaturStringToWindowTitle(FileSystemWidget);
|
|
|
|
// Test custom factory - we inject a help button into the title bar
|
|
ads::CDockComponentsFactory::setFactory(new CCustomComponentsFactory());
|
|
auto TopDockArea = DockManager->addDockWidget(ads::TopDockWidgetArea, FileSystemWidget);
|
|
ads::CDockComponentsFactory::resetDefaultFactory();
|
|
|
|
// We create a calendar widget and clear all flags to prevent the dock area
|
|
// from closing
|
|
DockWidget = createCalendarDockWidget();
|
|
DockWidget->setTabToolTip(QString("Tab ToolTip\nHodie est dies magna"));
|
|
auto DockArea = DockManager->addDockWidget(ads::CenterDockWidgetArea, DockWidget, TopDockArea);
|
|
|
|
// Now we add a custom button to the dock area title bar that will create
|
|
// new editor widgets when clicked
|
|
auto CustomButton = new QToolButton(DockArea);
|
|
CustomButton->setToolTip(QObject::tr("Create Editor"));
|
|
CustomButton->setIcon(svgIcon(":/adsdemo/images/plus.svg"));
|
|
CustomButton->setAutoRaise(true);
|
|
|
|
auto TitleBar = DockArea->titleBar();
|
|
int Index = TitleBar->indexOf(TitleBar->tabBar());
|
|
TitleBar->insertWidget(Index + 1, CustomButton);
|
|
QObject::connect(CustomButton, &QToolButton::clicked, [=]()
|
|
{
|
|
auto DockWidget = createEditorWidget();
|
|
DockWidget->setFeature(ads::CDockWidget::DockWidgetDeleteOnClose, true);
|
|
DockManager->addDockWidgetTabToArea(DockWidget, DockArea);
|
|
_this->connect(DockWidget, SIGNAL(closeRequested()), SLOT(onEditorCloseRequested()));
|
|
});
|
|
|
|
// Test dock area docking
|
|
auto RighDockArea = DockManager->addDockWidget(ads::RightDockWidgetArea, createLongTextLabelDockWidget(), TopDockArea);
|
|
DockManager->addDockWidget(ads::TopDockWidgetArea, createLongTextLabelDockWidget(), RighDockArea);
|
|
auto BottomDockArea = DockManager->addDockWidget(ads::BottomDockWidgetArea, createLongTextLabelDockWidget(), RighDockArea);
|
|
DockManager->addDockWidget(ads::CenterDockWidgetArea, createLongTextLabelDockWidget(), RighDockArea);
|
|
DockManager->addDockWidget(ads::CenterDockWidgetArea, createLongTextLabelDockWidget(), BottomDockArea);
|
|
|
|
auto Action = ui.menuTests->addAction(QString("Set %1 Floating").arg(DockWidget->windowTitle()));
|
|
DockWidget->connect(Action, SIGNAL(triggered()), SLOT(setFloating()));
|
|
Action = ui.menuTests->addAction(QString("Set %1 As Current Tab").arg(DockWidget->windowTitle()));
|
|
DockWidget->connect(Action, SIGNAL(triggered()), SLOT(setAsCurrentTab()));
|
|
Action = ui.menuTests->addAction(QString("Raise %1").arg(DockWidget->windowTitle()));
|
|
DockWidget->connect(Action, SIGNAL(triggered()), SLOT(raise()));
|
|
|
|
#ifdef Q_OS_WIN
|
|
if (!ads::CDockManager::testConfigFlag(ads::CDockManager::OpaqueUndocking))
|
|
{
|
|
DockManager->addDockWidget(ads::CenterDockWidgetArea, createActiveXWidget(), RighDockArea);
|
|
}
|
|
#endif
|
|
|
|
for (auto DockWidget : DockManager->dockWidgetsMap())
|
|
{
|
|
_this->connect(DockWidget, SIGNAL(viewToggled(bool)), SLOT(onViewToggled(bool)));
|
|
_this->connect(DockWidget, SIGNAL(visibilityChanged(bool)), SLOT(onViewVisibilityChanged(bool)));
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void MainWindowPrivate::createActions()
|
|
{
|
|
ui.toolBar->addAction(ui.actionSaveState);
|
|
ui.toolBar->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
|
|
ui.actionSaveState->setIcon(svgIcon(":/adsdemo/images/save.svg"));
|
|
ui.toolBar->addAction(ui.actionRestoreState);
|
|
ui.actionRestoreState->setIcon(svgIcon(":/adsdemo/images/restore.svg"));
|
|
|
|
SavePerspectiveAction = new QAction("Create Perspective", _this);
|
|
SavePerspectiveAction->setIcon(svgIcon(":/adsdemo/images/picture_in_picture.svg"));
|
|
_this->connect(SavePerspectiveAction, SIGNAL(triggered()), SLOT(savePerspective()));
|
|
PerspectiveListAction = new QWidgetAction(_this);
|
|
PerspectiveComboBox = new QComboBox(_this);
|
|
PerspectiveComboBox->setSizeAdjustPolicy(QComboBox::AdjustToContents);
|
|
PerspectiveComboBox->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
|
|
PerspectiveListAction->setDefaultWidget(PerspectiveComboBox);
|
|
ui.toolBar->addSeparator();
|
|
ui.toolBar->addAction(PerspectiveListAction);
|
|
ui.toolBar->addAction(SavePerspectiveAction);
|
|
|
|
QAction* a = ui.toolBar->addAction("Create Floating Editor");
|
|
a->setProperty("Floating", true);
|
|
a->setToolTip("Creates floating dynamic dockable editor windows that are deleted on close");
|
|
a->setIcon(svgIcon(":/adsdemo/images/note_add.svg"));
|
|
_this->connect(a, SIGNAL(triggered()), SLOT(createEditor()));
|
|
ui.menuTests->addAction(a);
|
|
|
|
a = ui.toolBar->addAction("Create Docked Editor");
|
|
a->setProperty("Floating", false);
|
|
a->setToolTip("Creates a docked editor windows that are deleted on close");
|
|
a->setIcon(svgIcon(":/adsdemo/images/docked_editor.svg"));
|
|
_this->connect(a, SIGNAL(triggered()), SLOT(createEditor()));
|
|
ui.menuTests->addAction(a);
|
|
|
|
a = ui.toolBar->addAction("Create Floating Table");
|
|
a->setToolTip("Creates floating dynamic dockable table with millions of entries");
|
|
a->setIcon(svgIcon(":/adsdemo/images/grid_on.svg"));
|
|
_this->connect(a, SIGNAL(triggered()), SLOT(createTable()));
|
|
ui.menuTests->addAction(a);
|
|
|
|
ui.menuTests->addSeparator();
|
|
a = ui.menuTests->addAction("Show Status Dialog");
|
|
_this->connect(a, SIGNAL(triggered()), SLOT(showStatusDialog()));
|
|
|
|
a = ui.menuTests->addAction("Toggle Label 0 Window Title");
|
|
_this->connect(a, SIGNAL(triggered()), SLOT(toggleDockWidgetWindowTitle()));
|
|
ui.menuTests->addSeparator();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void MainWindowPrivate::saveState()
|
|
{
|
|
QSettings Settings("Settings.ini", QSettings::IniFormat);
|
|
Settings.setValue("mainWindow/Geometry", _this->saveGeometry());
|
|
Settings.setValue("mainWindow/State", _this->saveState());
|
|
Settings.setValue("mainWindow/DockingState", DockManager->saveState());
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void MainWindowPrivate::restoreState()
|
|
{
|
|
QSettings Settings("Settings.ini", QSettings::IniFormat);
|
|
_this->restoreGeometry(Settings.value("mainWindow/Geometry").toByteArray());
|
|
_this->restoreState(Settings.value("mainWindow/State").toByteArray());
|
|
DockManager->restoreState(Settings.value("mainWindow/DockingState").toByteArray());
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
void MainWindowPrivate::savePerspectives()
|
|
{
|
|
QSettings Settings("Settings.ini", QSettings::IniFormat);
|
|
DockManager->savePerspectives(Settings);
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
void MainWindowPrivate::restorePerspectives()
|
|
{
|
|
QSettings Settings("Settings.ini", QSettings::IniFormat);
|
|
DockManager->loadPerspectives(Settings);
|
|
PerspectiveComboBox->clear();
|
|
PerspectiveComboBox->addItems(DockManager->perspectiveNames());
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
CMainWindow::CMainWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
d(new MainWindowPrivate(this))
|
|
{
|
|
using namespace ads;
|
|
d->ui.setupUi(this);
|
|
setWindowTitle(QApplication::instance()->applicationName());
|
|
d->createActions();
|
|
|
|
// uncomment the following line if the tab close button should be
|
|
// a QToolButton instead of a QPushButton
|
|
// CDockManager::setConfigFlags(CDockManager::configFlags() | CDockManager::TabCloseButtonIsToolButton);
|
|
|
|
// uncomment the following line if you want to use opaque undocking and
|
|
// opaque splitter resizing
|
|
// CDockManager::setConfigFlags(CDockManager::DefaultOpaqueConfig);
|
|
|
|
// uncomment the following line if you want a fixed tab width that does
|
|
// not change if the visibility of the close button changes
|
|
//CDockManager::setConfigFlag(CDockManager::RetainTabSizeWhenCloseButtonHidden, true);
|
|
|
|
// uncomment the following line if you don't want close button on DockArea's title bar
|
|
//CDockManager::setConfigFlag(CDockManager::DockAreaHasCloseButton, false);
|
|
|
|
// uncomment the following line if you don't want undock button on DockArea's title bar
|
|
//CDockManager::setConfigFlag(CDockManager::DockAreaHasUndockButton, false);
|
|
|
|
// uncomment the following line if you don't want tabs menu button on DockArea's title bar
|
|
//CDockManager::setConfigFlag(CDockManager::DockAreaHasTabsMenuButton, false);
|
|
|
|
// uncomment the following line if you don't want disabled buttons to appear on DockArea's title bar
|
|
//CDockManager::setConfigFlag(CDockManager::DockAreaHideDisabledButtons, true);
|
|
|
|
// 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
|
|
//CDockManager::setConfigFlag(CDockManager::DockAreaDynamicTabsMenuButtonVisibility, true);
|
|
|
|
// uncomment the following line if you want floating container to always show application title instead of active dock widget's title
|
|
//CDockManager::setConfigFlag(CDockManager::FloatingContainerHasWidgetTitle, false);
|
|
|
|
// uncomment the following line if you want floating container to show active dock widget's icon instead of always showing application icon
|
|
//CDockManager::setConfigFlag(CDockManager::FloatingContainerHasWidgetIcon, true);
|
|
|
|
// uncomment the following line if you want a central widget in the main dock container (the dock manager) without a titlebar
|
|
// If you enable this code, you can test it in the demo with the Calendar 0
|
|
// dock widget.
|
|
// CDockManager::setConfigFlag(CDockManager::HideSingleCentralWidgetTitleBar, true);
|
|
|
|
// uncomment the following line to enable focus highlighting of the dock
|
|
// widget that has the focus
|
|
// CDockManager::setConfigFlag(CDockManager::FocusHighlighting, true);
|
|
|
|
// uncomment if you would like to enable an equal distribution of the
|
|
// available size of a splitter to all contained dock widgets
|
|
// CDockManager::setConfigFlag(CDockManager::EqualSplitOnInsertion, true);
|
|
|
|
// Now create the dock manager and its content
|
|
d->DockManager = new CDockManager(this);
|
|
|
|
connect(d->PerspectiveComboBox, SIGNAL(activated(const QString&)),
|
|
d->DockManager, SLOT(openPerspective(const QString&)));
|
|
|
|
d->createContent();
|
|
// Default window geometry - center on screen
|
|
resize(1280, 720);
|
|
setGeometry(QStyle::alignedRect(
|
|
Qt::LeftToRight, Qt::AlignCenter, frameSize(),
|
|
QGuiApplication::primaryScreen()->availableGeometry()
|
|
));
|
|
|
|
//d->restoreState();
|
|
d->restorePerspectives();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
CMainWindow::~CMainWindow()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::closeEvent(QCloseEvent* event)
|
|
{
|
|
d->saveState();
|
|
QMainWindow::closeEvent(event);
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::on_actionSaveState_triggered(bool)
|
|
{
|
|
qDebug() << "MainWindow::on_actionSaveState_triggered";
|
|
d->saveState();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::on_actionRestoreState_triggered(bool)
|
|
{
|
|
qDebug() << "MainWindow::on_actionRestoreState_triggered";
|
|
d->restoreState();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::savePerspective()
|
|
{
|
|
QString PerspectiveName = QInputDialog::getText(this, "Save Perspective", "Enter unique name:");
|
|
if (PerspectiveName.isEmpty())
|
|
{
|
|
return;
|
|
}
|
|
|
|
d->DockManager->addPerspective(PerspectiveName);
|
|
QSignalBlocker Blocker(d->PerspectiveComboBox);
|
|
d->PerspectiveComboBox->clear();
|
|
d->PerspectiveComboBox->addItems(d->DockManager->perspectiveNames());
|
|
d->PerspectiveComboBox->setCurrentText(PerspectiveName);
|
|
|
|
d->savePerspectives();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::onViewToggled(bool Open)
|
|
{
|
|
auto DockWidget = qobject_cast<ads::CDockWidget*>(sender());
|
|
if (!DockWidget)
|
|
{
|
|
return;
|
|
}
|
|
|
|
qDebug() << DockWidget->objectName() << " viewToggled(" << Open << ")";
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::onViewVisibilityChanged(bool Visible)
|
|
{
|
|
Q_UNUSED(Visible);
|
|
auto DockWidget = qobject_cast<ads::CDockWidget*>(sender());
|
|
if (!DockWidget)
|
|
{
|
|
return;
|
|
}
|
|
|
|
//qDebug() << DockWidget->objectName() << " visibilityChanged(" << Visible << ")";
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::createEditor()
|
|
{
|
|
QObject* Sender = sender();
|
|
QVariant vFloating = Sender->property("Floating");
|
|
bool Floating = vFloating.isValid() ? vFloating.toBool() : true;
|
|
auto DockWidget = d->createEditorWidget();
|
|
DockWidget->setFeature(ads::CDockWidget::DockWidgetDeleteOnClose, true);
|
|
connect(DockWidget, SIGNAL(closeRequested()), SLOT(onEditorCloseRequested()));
|
|
|
|
if (Floating)
|
|
{
|
|
auto FloatingWidget = d->DockManager->addDockWidgetFloating(DockWidget);
|
|
FloatingWidget->move(QPoint(20, 20));
|
|
}
|
|
else
|
|
{
|
|
d->DockManager->addDockWidget(ads::TopDockWidgetArea, DockWidget);
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::onEditorCloseRequested()
|
|
{
|
|
auto DockWidget = qobject_cast<ads::CDockWidget*>(sender());
|
|
int Result = QMessageBox::question(this, "Close Editor", QString("Editor %1 "
|
|
"contains unsaved changes? Would you like to close it?")
|
|
.arg(DockWidget->windowTitle()));
|
|
if (QMessageBox::Yes == Result)
|
|
{
|
|
DockWidget->closeDockWidget();
|
|
}
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::createTable()
|
|
{
|
|
auto DockWidget = d->createTableWidget();
|
|
DockWidget->setFeature(ads::CDockWidget::DockWidgetDeleteOnClose, true);
|
|
auto FloatingWidget = d->DockManager->addDockWidgetFloating(DockWidget);
|
|
FloatingWidget->move(QPoint(40, 40));
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::showStatusDialog()
|
|
{
|
|
CStatusDialog Dialog(d->DockManager);
|
|
Dialog.exec();
|
|
}
|
|
|
|
|
|
//============================================================================
|
|
void CMainWindow::toggleDockWidgetWindowTitle()
|
|
{
|
|
QString Title = d->WindowTitleTestDockWidget->windowTitle();
|
|
int i = Title.indexOf(" (Test)");
|
|
if (-1 == i)
|
|
{
|
|
Title += " (Test)";
|
|
}
|
|
else
|
|
{
|
|
Title = Title.left(i);
|
|
}
|
|
d->WindowTitleTestDockWidget->setWindowTitle(Title);
|
|
}
|
|
|