forked from LexTheGreat/TLX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimDlg.hpp
44 lines (42 loc) · 816 Bytes
/
animDlg.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
// edited by eddie vedder
class animationsdialog
{
idd = -1;
movingEnable = true;
controlsBackground[] = {DLG_BACK1, background};
objects[] = { };
controls[] = {animationsliste, submit, cancel, dummybutton};
class DLG_BACK1: RscBackground
{
x = 0.29; y = 0.09;
w = 0.43; h = 0.75;
};
class background : RscBgRahmen
{
x = 0.29; y = 0.09;
w = 0.43; h = 0.75;
text = "Select an Animation";
};
class animationsliste : RscListBox
{
idc = 1;
x = 0.30; y = 0.12;
w = 0.40; h = 0.65;
};
class submit : RscButton
{
idc = 2;
x = 0.30; y = 0.78;
w = 0.20; h = 0.04;
text = "Submit";
};
class cancel : RscButton
{
x = 0.51; y = 0.78;
w = 0.20; h = 0.04;
text = "$STRD_description_cancel";
action = "closedialog 0;";
};
class dummybutton : RscDummy {idc = 1009;
};
};