-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathintroduction.cpp
More file actions
114 lines (92 loc) · 1.92 KB
/
introduction.cpp
File metadata and controls
114 lines (92 loc) · 1.92 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include "introduction.h"
#include "ui_introduction.h"
Introduction::Introduction(QWidget *parent) :
QDialog(parent),
ui(new Ui::Introduction)
{
ui->setupUi(this);
}
Introduction::~Introduction()
{
delete ui;
}
void Introduction::showFirstLayer()
{
ui->stackedWidget->setCurrentIndex(0);
}
void Introduction::showSecondLayer()
{
ui->stackedWidget->setCurrentIndex(1);
}
void Introduction::showThirdLayer()
{
ui->stackedWidget->setCurrentIndex(2);
}
void Introduction::showFourthLayer()
{
ui->stackedWidget->setCurrentIndex(3);
}
void Introduction::showFifthLayer()
{
ui->stackedWidget->setCurrentIndex(4);
}
void Introduction::showSixthLayer()
{
ui->stackedWidget->setCurrentIndex(5);
}
void Introduction::showSeventhLayer()
{
ui->stackedWidget->setCurrentIndex(6);
}
void Introduction::showEighthLayer()
{
ui->stackedWidget->setCurrentIndex(7);
}
void Introduction::showNinthLayer()
{
ui->stackedWidget->setCurrentIndex(8);
}
void Introduction::showTenthLayer()
{
ui->stackedWidget->setCurrentIndex(9);
}
void Introduction::showEleventhLayer()
{
ui->stackedWidget->setCurrentIndex(10);
}
void Introduction::showTwelfthLayer()
{
ui->stackedWidget->setCurrentIndex(11);
}
void Introduction::showThirteenthLayer()
{
ui->stackedWidget->setCurrentIndex(12);
}
void Introduction::showFourteenthLayer()
{
ui->stackedWidget->setCurrentIndex(13);
}
void Introduction::showFifteenthLayer()
{
ui->stackedWidget->setCurrentIndex(14);
}
void Introduction::showSixteenthLayer()
{
ui->stackedWidget->setCurrentIndex(15);
}
void Introduction::showSeventeenthLayer()
{
ui->stackedWidget->setCurrentIndex(16);
}
void Introduction::showEighteenthLayer()
{
ui->stackedWidget->setCurrentIndex(17);
}
void Introduction::showNineteenthLayer()
{
ui->stackedWidget->setCurrentIndex(18);
}
void Introduction::showTwentiethLayer()
{
ui->stackedWidget->setCurrentIndex(19);
}