-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
67 lines (53 loc) · 1.23 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"data.h"
#include"file.h"
#include <QMainWindow>
#include<QVector>
#include<QMouseEvent>
#include"libusb.h"
#include<QImage>
#include <QSerialPort>
#include<qserialportinfo>
#include<QLabel>
#define TIMEOUT 1000
#include"settingdialog.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void paintEvent(QPaintEvent* event);
void mousePressEvent(QMouseEvent *event);
private slots:
void on_change_clicked();
void timeOut();
void flush();
void on_pushButton_clicked();
void on_clear_clicked();
void on_btn_setting_clicked();
bool openSerialPort();
void closeSerialPort();
void writeData(const QByteArray &data);
void readData();
void set_time();
void on_connect_clicked();
void on_disconnect_clicked();
private:
Ui::MainWindow *ui;
QTimer* m_Timer;
QTimer* curr_time;
QSerialPort* m_serial;
SettingsDialog* m_settings;
QLabel *m_status = nullptr;
void showStatusMessage(const QString &message);
File *f;
int index;
QVector<Data> hisds;
void initHisDs();
};
#endif // MAINWINDOW_H