-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsecondwindow.h
More file actions
74 lines (58 loc) · 1.62 KB
/
secondwindow.h
File metadata and controls
74 lines (58 loc) · 1.62 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
<<<<<<< 61ddbc132891cf9533228634c5d59b0c5d30fb7b
#ifndef SECONDWINDOW_H
#define SECONDWINDOW_H
#include <QMainWindow>
#include <QPushButton>
#include <myclient.h>
namespace Ui {
class SecondWindow;
}
class SecondWindow : public QMainWindow
{
Q_OBJECT
public:
explicit SecondWindow(QString chinesename, QString money, QWidget *parent = 0);
~SecondWindow();
QPushButton *book[25]; //课程按钮
QPushButton *choose[50]; //方式按钮
bool eventFilter(QObject *target,QEvent *e); //事件过滤器的处理
private slots:
void on_left_clicked(); //左翻页按钮
void on_right_clicked(); //右翻页按钮
void on_close_clicked(); //关闭当前窗口
void anginShow(); //再次显示
void on_pk_clicked();
private:
Ui::SecondWindow *ui;
};
#endif // SECONDWINDOW_H
=======
#ifndef SECONDWINDOW_H
#define SECONDWINDOW_H
#include <QMainWindow>
#include <QPushButton>
#include <myclient.h>
namespace Ui {
class SecondWindow;
}
class SecondWindow : public QMainWindow
{
Q_OBJECT
public:
explicit SecondWindow(QString chinesename, QString money, QWidget *parent = 0);
~SecondWindow();
QPushButton *book[25]; //课程按钮
QPushButton *choose[50]; //方式按钮
bool eventFilter(QObject *target,QEvent *e); //事件过滤器的处理
QString mymoney;
private slots:
void on_left_clicked(); //左翻页按钮
void on_right_clicked(); //右翻页按钮
void on_close_clicked(); //关闭当前窗口
void anginShow(); //再次显示
void on_pk_clicked();
private:
Ui::SecondWindow *ui;
};
#endif // SECONDWINDOW_H
>>>>>>> final version