-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
67 lines (45 loc) · 1.18 KB
/
mainwindow.h
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "about_info.h"
#include <QButtonGroup>
#include <QActionGroup>
#include <QTranslator>
#include <QString>
#define ZH 1;
#define EN 2;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
void set_direction();
private slots:
void on_menu_exit_triggered();
void on_help_about_triggered();
void closeEvent(QCloseEvent *event);
void on_button_up_clicked();
void on_button_donw_clicked();
void on_button_start_clicked();
void timer_start();
void on_button_pause_clicked();
void on_button_stop_clicked();
void on_L_zh_triggered();
void on_L_en_triggered();
private:
void change_language();
void load_language_file(QString &file_dir);
Ui::MainWindow *ui;
QTimer *timer;
int direction = 1;
int language_id = 1;
QButtonGroup *direction_group = new QButtonGroup;
bool pause_continue_flag = true;
QTranslator translator;
};
#endif // MAINWINDOW_H