forked from IDI-Systems/acre2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_dialog.hpp
83 lines (78 loc) · 2.55 KB
/
list_dialog.hpp
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
class RscText;
class RscControlsGroupNoScrollbars;
class GVAR(radioCycleDisplayFlash): RscControlsGroupNoScrollbars {
x = "profileNamespace getVariable ['IGUI_grid_ACRE_notification_X', SafeZoneX + SafeZoneW - .352]";
y = "profileNamespace getVariable ['IGUI_grid_ACRE_notification_Y', SafeZoneY + SafeZoneH - .128]";
w = 0.352;
h = 0.128;
class controls {
class CycleDialogBackgroundColor: RscText {
idc = IDC_CONTROLFLASH;
style = ST_CENTER;
colorText[] = {0, 0, 0, 1};
colorBackground[] = {RGB_YELLOW};
font = "RobotoCondensed";
sizeEx = 0.023;
x = 0;
y = 0;
w = 0.352;
h = 0.128;
};
};
};
class GVAR(radioCycleDisplay): RscControlsGroupNoScrollbars {
x = "profileNamespace getVariable ['IGUI_grid_ACRE_notification_X', SafeZoneX + SafeZoneW - .352]";
y = "profileNamespace getVariable ['IGUI_grid_ACRE_notification_Y', SafeZoneY + SafeZoneH - .128]";
w = 0.352;
h = 0.128;
class controls {
class CycleDialogBackgroundColor: RscText {
idc = IDC_CONTROLBACKGROUNDCOLOR;
style = ST_CENTER;
colorText[] = {0, 0, 0, 1};
colorBackground[] = {1, 0.8, 0, 0.2};
font = "RobotoCondensed";
sizeEx = 0.023;
x = 0;
y = 0;
w = 0.352;
h = 0.128;
};
class CycleDialogBackgroundBlack: CycleDialogBackgroundColor {
idc = IDC_CONTROLBACKGROUNDBLACK;
colorText[] = {0, 0, 0, 0.25};
colorBackground[] = {0, 0, 0, 0.8};
x = 0.002;
y = 0.003;
w = 0.350;
h = 0.125;
};
class CycleDialogTitle: RscText {
idc = IDC_CONTROLTITLE;
style = ST_LEFT;
colorText[] = {1, 0.8, 0, 0.8};
colorBackground[] = {1, 1, 1, 0};
font = "RobotoCondensed";
sizeEx = 0.06;
x = "0.002 + 0.004";
y = "0.003 - 0.004";
w = 0.350;
h = 0.063;
};
class CycleDialogLine1: CycleDialogTitle {
idc = IDC_CONTROLLINE1;
sizeEx = 0.03;
x = "0.002 + 0.004";
y = "0.003 + 0.054";
w = 0.350;
h = 0.023;
};
class CycleDialogLine2: CycleDialogLine1 {
idc = IDC_CONTROLLINE2;
x = "0.002 + 0.004";
y = "0.003 + 0.084";
w = 0.350;
h = 0.023;
};
};
};