forked from IDI-Systems/acre2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadioDialogClasses.hpp
75 lines (65 loc) · 1.63 KB
/
RadioDialogClasses.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
class SEM52SL_RscBackground {
type = CT_STATIC;
idc = -1;
style = QUOTE(ST_BACKGROUND + ST_KEEP_ASPECT_RATIO);
colorBackground[] = {0, 0, 0, 0.75};
colorText[] = {1, 1, 1, 1};
font = FontM;
sizeEx = 0.04;
};
// text
class SEM52SL_RscText {
idc = -1;
type = CT_STATIC;
style = QUOTE(ST_LEFT + ST_KEEP_ASPECT_RATIO);
font = "EtelkaMonospaceProBold";
colorText[] = {1,1,1,1};
colorBackground[] = {0, 0, 0, 0};
sizeEx = 0.024;
w = 0.2;
h = 0.03;
};
class SEM52SL_RscButton {
type = CT_BUTTON;
idc = -1;
style = QUOTE(ST_CENTER + ST_KEEP_ASPECT_RATIO);
x = 0.0;
y = 0.0;
w = 0.1;
h = 0.0;
sizeEx = 0.0325;
offsetX = 0;
offsetY = 0.002;
offsetPressedX = 0;
offsetPressedY = 0.002;
borderSize = 0;
#define ClrWhite 1,1,1
#define ClrBlack 0,0,0
#define ClrGray 0.5,0.5,0.5
#define ClrBlue 0.2,0.5,1
colorText[] = {ClrWhite,1};
colorBackground[] = {ClrGray, 0};
colorFocused[] = {ClrGray,00};
colorShadow[] = {ClrBlack,0};
colorBorder[] = {ClrWhite,0};
colorBackgroundActive[] = {ClrGray,0};
colorDisabled[] = {ClrGray, 0};
colorBackgroundDisabled[] = {ClrGray,0};
font = FontM;
tooltipColorShade[] = {ClrGray, 0.25};
tooltipColorText[] = {ClrWhite, 0.75};
tooltipColorBox[] = {ClrGray, 0};
soundEnter[] = {"", 0.2, 1};
soundPush[] = {"", 0.2, 1};
soundClick[] = {"", 0.2, 1};
soundEscape[] = {"", 0.2, 1};
default = 0;
text = "";
action = "";
};
class SEM52SL_RscPicture: SEM52SL_RscButton {
type = CT_STATIC;
idc = -1;
style = QUOTE(ST_PICTURE + ST_KEEP_ASPECT_RATIO);
text = "";
};