-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.h
62 lines (41 loc) · 1.2 KB
/
style.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
61
62
#ifndef STYLE_H
#define STYLE_H
#include <QWidget>
#include <variable.h>
#include <QIntValidator>
namespace Ui {
class Style;
}
class Style : public QWidget
{
Q_OBJECT
public:
explicit Style(QWidget *parent = 0);
~Style();
void setLabelStyle();
private slots:
void on_horizontalSlider_valueChanged(int value);
void on_horizontalSlider_2_valueChanged(int value);
void on_horizontalSlider_3_valueChanged(int value);
void on_horizontalSlider_4_valueChanged(int value);
void on_horizontalSlider_5_valueChanged(int value);
void on_horizontalSlider_6_valueChanged(int value);
void on_lineEdit_editingFinished();
void on_lineEdit_2_editingFinished();
void on_lineEdit_3_editingFinished();
void on_lineEdit_4_editingFinished();
void on_lineEdit_5_editingFinished();
void on_lineEdit_6_editingFinished();
void on_pushButton_apply_clicked();
void on_pushButton_cancel_clicked();
private:
Ui::Style *ui;
QPoint z;
protected:
void mouseMoveEvent(QMouseEvent *event) override;
void mousePressEvent(QMouseEvent *event) override;
void mouseReleaseEvent(QMouseEvent *event) override;
signals:
void sig();
};
#endif // STYLE_H