-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.cpp
48 lines (41 loc) · 1.1 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
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
//this->showMaximized();
connect(ui->ExitBut, &QPushButton::clicked, this, &MainWindow::exitsys);
connect(ui->TicketBut, &QPushButton::clicked, this, &MainWindow::callTicketintWindows);
connect(ui->MapBut, &QPushButton::clicked, this, &MainWindow::callMapWindows);
connect(ui->NotesBut, &QPushButton::clicked, this, &MainWindow::callNotesWindows);
connect(ui->UsageBut, &QPushButton::clicked, this, &MainWindow::callUsageWindows);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::exitsys()
{
exit(0);
}
void MainWindow::callTicketintWindows()
{
TicketingWindows *t = new TicketingWindows(this);
t->show();
}
void MainWindow::callMapWindows()
{
MapWindows *m = new MapWindows(this);
m->show();
}
void MainWindow::callNotesWindows()
{
NotesWindows *t = new NotesWindows(this);
t->show();
}
void MainWindow::callUsageWindows()
{
UsageWindows *u = new UsageWindows(this);
u->show();
}