-
Notifications
You must be signed in to change notification settings - Fork 10
/
initialsetup.h
49 lines (33 loc) · 951 Bytes
/
initialsetup.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
#ifndef INITIALSETUP_H
#define INITIALSETUP_H
#include <QDialog>
#include <QFileDialog>
#include "startupOptions.h"
namespace Ui {
class initialSetup;
}
class initialSetup : public QDialog
{
Q_OBJECT
public:
explicit initialSetup(QWidget *parent = nullptr);
~initialSetup();
void acceptOptions(startupOptionsType *opts);
void setHeightWidthLock(bool locked);
startupOptionsType *getOptions();
private slots:
void on_selectButton_clicked();
void on_heightSpin_valueChanged(int arg1);
void on_widthSpin_valueChanged(int arg1);
void on_xioPathText_editingFinished();
void on_xioPathText_returnPressed();
void on_buttonBox_rejected();
void on_buttonBox_accepted();
void on_fpsSpin_valueChanged(double arg1);
private:
Ui::initialSetup *ui;
startupOptionsType *options;
char* xioDirectoryBuffer = NULL;
bool lockHeightWidthControls = false;
};
#endif // INITIALSETUP_H