-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
60 lines (43 loc) · 1.2 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QFileDialog>
#include <QFileInfo>
#include <QByteArray>
#include <QComboBox>
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
//QComboBox* inputChannelComboBox[4];
MainWindow(QWidget *parent = nullptr);
~MainWindow();
void readToUi(); //populate Ui and write variables
void writeSysEx();
void writeGlobal();
QByteArray startBytes=QByteArray("\xF0\x00\x7F\x15",4);
QByteArray stopByte=QByteArray("\xF7",1);
//QByteArray startBytes=QByteArray("\xF0\x00\x7F\x14",4); //Validation test!
//PopulateUi variables
QByteArray bytes;
QByteArray data;
QString fileName ="";
QString selectedSysEx ="";
QString hexString;
unsigned char hexToInt;
Ui::MainWindow *ui;
//public slots:
private slots:
void on_createSyxEx_clicked();
void on_browseBtn_clicked();
void on_globalsChannelComboBox_currentIndexChanged(int index);
void on_globalsTriggerLenComboBox_currentIndexChanged(int index);
private:
};
extern const QByteArray startBytes;
#endif // MAINWINDOW_H