mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-14 17:12:04 +08:00
28 lines
452 B
C
28 lines
452 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
#include <QComboBox>
|
||
|
#include <QWidgetAction>
|
||
|
|
||
|
#include "DockManager.h"
|
||
|
#include "DockAreaWidget.h"
|
||
|
#include "DockWidget.h"
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
namespace Ui { class CMainWindow; }
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
class CMainWindow : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
CMainWindow(QWidget *parent = nullptr);
|
||
|
~CMainWindow();
|
||
|
|
||
|
private:
|
||
|
Ui::CMainWindow *ui;
|
||
|
};
|
||
|
#endif // MAINWINDOW_H
|