-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialogflowconstructorepi.h
105 lines (83 loc) · 2.82 KB
/
dialogflowconstructorepi.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#ifndef DIALOGFLOWCONSTRUCTOREPI_H
#define DIALOGFLOWCONSTRUCTOREPI_H
#include "headers.hpp"
#include "TextDef__Flow.h"
class DialogFlowConstructorEPI : public QDialog
{
Q_OBJECT
public:
explicit DialogFlowConstructorEPI(Coord **coords_arterial, Coord **coords_venous, Coord **coords_csf,
QStringList *list_arterial, QStringList *list_venous, QStringList *list_csf,
Coord *coord_arterial_cervical, Coord *coord_venous_cervical, Coord *coord_csf_cervical,
QStringList *list_arterial_cervical, QStringList *list_venous_cervical, QStringList *list_csf_cervical,
Coord *coord_arterial_cerebral, Coord *coord_venous_cerebral, Coord *coord_csf_cerebral,
QStringList *list_arterial_cerebral, QStringList *list_venous_cerebral, QStringList *list_csf_cerebral,
QWidget *parent = 0);
signals:
public slots:
private slots:
void init_var();
void init_win();
void init_sig();
void init_css();
void cancel();
void valid();
void delete_all();
void closeEvent(QCloseEvent *);
private:
//Grid
QGridLayout *grid;
//HBox
QHBoxLayout *hbox_title;
QHBoxLayout *hbox_button;
//Label
QLabel *label_title;
QLabel *label_title_img;
QLabel *label_arterial_cervical;
QLabel *label_venous_cervical;
QLabel *label_csf_cervical;
QLabel *label_arterial_cerebral;
QLabel *label_venous_cerebral;
QLabel *label_csf_cerebral;
QLabel *labels_arterial_cervical;
QLabel *labels_venous_cervical;
QLabel *labels_csf_cervical;
QLabel *labels_arterial_cerebral;
QLabel *labels_venous_cerebral;
QLabel *labels_csf_cerebral;
//CheckBox
QCheckBox *checks_arterial_cervical;
QCheckBox *checks_venous_cervical;
QCheckBox *checks_csf_cervical;
QCheckBox *checks_arterial_cerebral;
QCheckBox *checks_venous_cerebral;
QCheckBox *checks_csf_cerebral;
//Button
QPushButton *button_cancel;
QPushButton *button_valid;
//String
QStringList *list_arterial;
QStringList *list_venous;
QStringList *list_csf;
QStringList *list_arterial_cervical;
QStringList *list_venous_cervical;
QStringList *list_csf_cervical;
QStringList *list_arterial_cerebral;
QStringList *list_venous_cerebral;
QStringList *list_csf_cerebral;
//Coord
Coord **coords_arterial;
Coord **coords_venous;
Coord **coords_csf;
Coord *coord_arterial_cervical;
Coord *coord_venous_cervical;
Coord *coord_csf_cervical;
Coord *coord_arterial_cerebral;
Coord *coord_venous_cerebral;
Coord *coord_csf_cerebral;
//Int
int n_arterial;
int n_venous;
int n_csf;
};
#endif // DIALOGFLOWCONSTRUCTOREPI_H