engineermenuwindow.h
914 Bytes
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
#ifndef ENGINEERMENUWINDOW_H
#define ENGINEERMENUWINDOW_H
#include <QMainWindow>
#include <QKeyEvent>
namespace Ui {
class EngineerMenuWindow;
}
class EngineerMenuWindow : public QMainWindow
{
Q_OBJECT
public:
explicit EngineerMenuWindow(QWidget *parent = 0);
~EngineerMenuWindow();
protected:
void keyPressEvent(QKeyEvent *event);
void keyReleaseEvent(QKeyEvent *event);
private slots:
void on_serviceHistoryButton_clicked();
void on_operationTimeButton_clicked();
void on_realDataButton_clicked();
void on_functionTestButton_clicked();
void on_engAdjustButton_clicked();
void on_stdConfigButton_clicked();
void on_modelTypeConfigButton_clicked();
private:
Ui::EngineerMenuWindow *ui;
QWidget *pushed = NULL;
void onEncoderLeft();
void onEncoderRight();
void onEncoderClicked(QWidget *clicked);
};
#endif // ENGINEERMENUWINDOW_H