2020-05-07 20:39:02 +08:00
|
|
|
#include "../../examples/simple/MainWindow.h"
|
|
|
|
|
2018-12-20 16:15:02 +08:00
|
|
|
#include "ui_MainWindow.h"
|
|
|
|
|
|
|
|
#include <QLabel>
|
2020-06-30 22:34:59 +08:00
|
|
|
#include <QTimer>
|
2018-12-20 16:15:02 +08:00
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
|
|
QMainWindow(parent),
|
|
|
|
ui(new Ui::MainWindow)
|
|
|
|
{
|
2020-08-19 19:38:53 +08:00
|
|
|
ui->setupUi(this);
|
2018-12-20 16:15:02 +08:00
|
|
|
|
|
|
|
// Create the dock manager. Because the parent parameter is a QMainWindow
|
|
|
|
// the dock manager registers itself as the central widget.
|
|
|
|
m_DockManager = new ads::CDockManager(this);
|
|
|
|
|
|
|
|
// Create example content label - this can be any application specific
|
|
|
|
// widget
|
|
|
|
QLabel* l = new QLabel();
|
|
|
|
l->setWordWrap(true);
|
|
|
|
l->setAlignment(Qt::AlignTop | Qt::AlignLeft);
|
|
|
|
l->setText("Lorem ipsum dolor sit amet, consectetuer adipiscing elit. ");
|
|
|
|
|
|
|
|
// Create a dock widget with the title Label 1 and set the created label
|
|
|
|
// as the dock widget content
|
|
|
|
ads::CDockWidget* DockWidget = new ads::CDockWidget("Label 1");
|
|
|
|
DockWidget->setWidget(l);
|
|
|
|
|
|
|
|
// Add the toggleViewAction of the dock widget to the menu to give
|
|
|
|
// the user the possibility to show the dock widget if it has been closed
|
|
|
|
ui->menuView->addAction(DockWidget->toggleViewAction());
|
|
|
|
|
|
|
|
// Add the dock widget to the top dock widget area
|
2020-08-19 19:38:53 +08:00
|
|
|
m_DockManager->addDockWidget(ads::TopDockWidgetArea, DockWidget);
|
2018-12-20 16:15:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
2020-07-22 17:28:41 +08:00
|
|
|
|