-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainwindow.cpp
51 lines (41 loc) · 1.05 KB
/
mainwindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
m_MdiArea = new JVMdiArea(ui->centralWidget);
ui->verticalLayout->addWidget(m_MdiArea);
m_MdiArea->setMouseTracking(true);
for(int i=0; i<4; i++)
{
m_MdiArea->addChartWindow(new QTextEdit("Doraemon Cat"));
}
m_MdiArea->tileSubWindows();
ui->verticalLayout->setDirection(QBoxLayout::BottomToTop);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_addBtn_clicked()
{
QTextEdit *edit = new QTextEdit("New Nobita");
m_MdiArea->addChartWindow(edit);
m_MdiArea->tileSubWindows();
}
void MainWindow::on_cascadeBtn_clicked()
{
m_MdiArea->cascadeSubWindows();
}
void MainWindow::on_tileBtn_clicked()
{
m_MdiArea->tileSubWindows();
}
void MainWindow::on_delBtn_clicked()
{
QMdiSubWindow *widget = m_MdiArea->currentSubWindow();
if(widget != nullptr)
m_MdiArea->removeSubWindow((QWidget *)widget);
}