-
Notifications
You must be signed in to change notification settings - Fork 1
/
mainwindow.h
executable file
·43 lines (36 loc) · 1.08 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QColorDialog>
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
QColorDialog mColorDialog;
protected:
void showEvent(QShowEvent* event);
private slots:
void OnPositionUpdate(QPointF position);
void on_momentary_stateChanged(int arg1);
void on_axis_currentTextChanged(const QString &arg1);
void on_padsizeratio_valueChanged(double arg1);
void on_borderColor_clicked();
void on_backgroundColor_clicked();
void on_padColor_clicked();
void on_borderwidth_valueChanged(double arg1);
void on_opacity_valueChanged(double arg1);
void on_deadZoneRadius_valueChanged(double arg1);
void on_externalDeadzoneCheckBox_stateChanged(int arg1);
void on_marks_currentTextChanged(const QString &arg1);
void on_padFocalColor_clicked();
void on_backgroundFocalColor_clicked();
};
#endif // MAINWINDOW_H