68 lines
2.1 KiB
C++
68 lines
2.1 KiB
C++
/*
|
|
This file is part of KDDockWidgets.
|
|
|
|
Copyright (C) 2018-2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
|
|
Author: Sérgio Martins <sergio.martins@kdab.com>
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief QMainWindow sub-class to enable KDDockWidgets support.
|
|
*
|
|
* @author Sérgio Martins \<sergio.martins@kdab.com\>
|
|
*/
|
|
|
|
#ifndef KD_MAINWINDOW_H
|
|
#define KD_MAINWINDOW_H
|
|
|
|
#include "MainWindowBase.h"
|
|
|
|
namespace KDDockWidgets {
|
|
|
|
/**
|
|
* @brief The QMainwindow sub-class that the application should use to be able
|
|
* to dock KDDockWidget::DockWidget instances.
|
|
*/
|
|
class DOCKS_EXPORT MainWindow : public MainWindowBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
typedef QVector<MainWindow*> List;
|
|
|
|
///@brief Constructor. Use it as you would use QMainWindow.
|
|
///@param uniqueName Mandatory name that should be unique between all MainWindow instances.
|
|
/// This name won't be user visible and just used internally for the save/restore.
|
|
///@param options optional MainWindowOptions to use
|
|
///@param parent QObject *parent to pass to QMainWindow constructor.
|
|
///@param flags Window flags to pass to QMainWindow constructor.
|
|
explicit MainWindow(const QString &uniqueName, MainWindowOptions options = MainWindowOption_None,
|
|
QWidget *parent = nullptr, Qt::WindowFlags flags = {});
|
|
|
|
///@brief Destructor
|
|
~MainWindow() override;
|
|
|
|
///@internal
|
|
DropAreaWithCentralFrame *dropArea() const override;
|
|
|
|
private:
|
|
class Private;
|
|
Private *const d;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|