95 lines
2.7 KiB
C++
95 lines
2.7 KiB
C++
/*
|
|
**********************************************************************************
|
|
**
|
|
** This file was created for the LibreCAD project (librecad.org), a 2D CAD program.
|
|
**
|
|
** Copyright (C) 2015 ravas (github.com/r-a-v-a-s)
|
|
**
|
|
** This program is free software; you can redistribute it and/or
|
|
** modify it under the terms of the GNU General Public License
|
|
** as published by the Free Software Foundation; either version 2
|
|
** of the License, or (at your option) any later version.
|
|
**
|
|
** This program 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 General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**
|
|
**********************************************************************************
|
|
*/
|
|
|
|
#include "mainwindowx.h"
|
|
|
|
#include <QDockWidget>
|
|
#include <QToolBar>
|
|
|
|
namespace Sorting
|
|
{
|
|
bool byWindowTitle(QWidget* left, QWidget* right)
|
|
{
|
|
return left->windowTitle() < right->windowTitle();
|
|
}
|
|
}
|
|
|
|
MainWindowX::MainWindowX(QWidget* parent)
|
|
: QMainWindow(parent) {}
|
|
|
|
void MainWindowX::sortWidgetsByTitle(QList<QDockWidget*>& list)
|
|
{
|
|
std::sort(list.begin(), list.end(), Sorting::byWindowTitle);
|
|
}
|
|
|
|
void MainWindowX::sortWidgetsByTitle(QList<QToolBar*>& list)
|
|
{
|
|
std::sort(list.begin(), list.end(), Sorting::byWindowTitle);
|
|
}
|
|
|
|
void MainWindowX::toggleLeftDockArea(bool state)
|
|
{
|
|
foreach (QDockWidget* dw, findChildren<QDockWidget*>())
|
|
{
|
|
if (dockWidgetArea(dw) == Qt::LeftDockWidgetArea && !dw->isFloating())
|
|
dw->setVisible(state);
|
|
}
|
|
}
|
|
|
|
void MainWindowX::toggleRightDockArea(bool state)
|
|
{
|
|
foreach (QDockWidget* dw, findChildren<QDockWidget*>())
|
|
{
|
|
if (dockWidgetArea(dw) == Qt::RightDockWidgetArea && !dw->isFloating())
|
|
dw->setVisible(state);
|
|
}
|
|
}
|
|
|
|
void MainWindowX::toggleTopDockArea(bool state)
|
|
{
|
|
foreach (QDockWidget* dw, findChildren<QDockWidget*>())
|
|
{
|
|
if (dockWidgetArea(dw) == Qt::TopDockWidgetArea && !dw->isFloating())
|
|
dw->setVisible(state);
|
|
}
|
|
}
|
|
|
|
void MainWindowX::toggleBottomDockArea(bool state)
|
|
{
|
|
foreach (QDockWidget* dw, findChildren<QDockWidget*>())
|
|
{
|
|
if (dockWidgetArea(dw) == Qt::BottomDockWidgetArea && !dw->isFloating())
|
|
dw->setVisible(state);
|
|
}
|
|
}
|
|
|
|
void MainWindowX::toggleFloatingDockwidgets(bool state)
|
|
{
|
|
foreach (QDockWidget* dw, findChildren<QDockWidget*>())
|
|
{
|
|
if (dw->isFloating())
|
|
dw->setVisible(state);
|
|
}
|
|
}
|