-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.h
54 lines (36 loc) · 955 Bytes
/
questions.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
#ifndef QUESTIONS_H
#define QUESTIONS_H
#include <QDialog>
#include <settings.h>
namespace Ui {
class questions;
}
class questions : public QDialog
{
Q_OBJECT
public:
explicit questions(QWidget *parent = nullptr);
~questions();
private slots:
void on_execute_clicked();
void on_swish_clicked();
void on_right_clicked();
void on_left_clicked();
void on_questions_accepted();
void on_check1_clicked();
void on_check2_clicked();
void on_check3_clicked();
void on_check4_clicked();
void on_pass_clicked();
void on_save_clicked();
void on_okay_clicked();
private:
Ui::questions *ui;
settings *sett;
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
int m_nMouseClick_X_Coordinate;
int m_nMouseClick_Y_Coordinate;
void Replace(QString &text);
};
#endif // QUESTIONS_H