-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
79 lines (51 loc) · 1.36 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
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QStandardItemModel>
#include <QTimer>
#include "devicesetting.h"
#include "devicevalue.h"
#include "dialogselectport.h"
#include "threadobject.h"
#include "workport.h"
#define TIMER_PERIOD 200
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
signals:
void s_open(QString name);
void s_data(QByteArray);
public slots:
void on_resultOpen(int result);
void on_data(QByteArray bytes);
void on_timer();
private slots:
void on_deviceSettingEdit_clicked();
void on_deviceSettingCancel_clicked();
void on_deviceSettingSave_clicked();
void on_deviceSettingSaveToFile_clicked();
void on_deviceSettingLoadFromFile_clicked();
void on_deviceValueSaveToFile_clicked();
void on_deviceValueLoadFromFile_clicked();
void on_selectPort_triggered();
private:
QString numberToName(int number);
private:
Ui::MainWindow *ui;
DialogSelectPort * dialogSelectPort;
WorkPort * workPort;
ThreadObject threadPort;
QMap<QString, DeviceValue*> deviceValues;
QMap<QString, DeviceSetting*> deviceSettings;
int currentRequestDevice = 0;
int currentTime = 0;
QTimer timer;
QByteArray buffFull;
};
#endif // MAINWINDOW_H