-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.h
More file actions
57 lines (39 loc) · 1.18 KB
/
mainwindow.h
File metadata and controls
57 lines (39 loc) · 1.18 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QPushButton>
#include <QSettings>
#include "communicationthread.h"
#include <QTimer>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void sendMessage();
private slots:
void on_serialPortComboBox_currentIndexChanged(const QString &arg1);
void on_latencySlider_valueChanged(int value);
void on_udpRadioButton_toggled(bool checked);
void on_tcpRadioButton_toggled(bool checked);
void on_ipEdit_textChanged(const QString &arg1);
void on_serialRadioButton_toggled(bool checked);
void update_roll(double roll);
void on_rateSlider_valueChanged(int value);
void on_latencySlider_sliderMoved(int position);
void on_latencySlider_sliderPressed();
void on_latencySlider_sliderReleased();
private:
QSettings settings;
bool isReady = false;
QTimer timer;
CommunicationThread m_thread;
Ui::MainWindow *ui;
void fillSerialPortList();
inline quint64 millis() const {return QDateTime::currentMSecsSinceEpoch();}
};
#endif // MAINWINDOW_H