-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph_set.h
More file actions
52 lines (35 loc) · 1.08 KB
/
graph_set.h
File metadata and controls
52 lines (35 loc) · 1.08 KB
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
#ifndef GRAPH_SET_H
#define GRAPH_SET_H
#include <QDialog>
#include <QColorDialog>
namespace Ui {
class Graph_set;
}
class Graph_set : public QDialog
{
Q_OBJECT
public:
explicit Graph_set(QWidget *parent = 0);
~Graph_set();
void WriteSettings();
bool Check1 = false,Check2 = false,Check3 = false,StartRequest = false;
int ID1 = 1,ID2 = 1,ID3 = 1;
int Add1 = 0,Add2 = 0,Add3 = 0;
int Time1 = 1000,Time2 = 1000,Time3 = 1000;
int RemTime1 = 0, RemTime2 = 0, RemTime3 = 0;
int Function1 = 3,Function2 = 3,Function3 = 3;
QColor Color1 = QColor(20,187,22),Color2 = QColor(241,19,32),Color3 = QColor(209,21,230);
private slots:
void on_pushButton_clicked();
void on_comboBox_currentIndexChanged(int index);
void on_pushButton_2_clicked();
void on_pushButton_3_clicked();
void on_lineEdit_editingFinished();
void on_lineEdit_2_editingFinished();
void on_lineEdit_3_editingFinished();
void on_checkBox_stateChanged(int arg1);
void on_comboBox_2_currentIndexChanged(int index);
private:
Ui::Graph_set *ui;
};
#endif // GRAPH_SET_H