blob: 108d0b97e8f6a06bf196f66162e05356d9c8d004 (
plain)
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
106
107
108
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
can_minimize="false"
height="215"
layout="topleft"
name="settings_debug"
title="Debug Settings"
width="350">
<combo_box
allow_text_entry="true"
follows="top|left"
height="20"
layout="topleft"
left="15"
max_chars="255"
name="settings_combo"
top="30"
width="200" />
<text_editor
enabled="false"
height="60"
hide_scrollbar="true"
layout="topleft"
left_delta="0"
name="comment_text"
top_pad="15"
width="320"
word_wrap="true" />
<combo_box
follows="top|left"
height="20"
layout="topleft"
left_delta="0"
name="boolean_combo"
top_pad="10"
visible="false"
width="100">
<combo_box.item
label="TRUE"
value="true" />
<combo_box.item
label="FALSE"
value="" />
</combo_box>
<line_editor
height="20"
layout="topleft"
left_delta="0"
name="val_text"
top_delta="0"
visible="false"
width="300" />
<color_swatch
bottom="185"
can_apply_immediately="true"
height="55"
label="Color"
layout="topleft"
width="37" />
<spinner
height="20"
label="x"
layout="topleft"
left_delta="0"
max_val="1e+007"
name="val_spinner_1"
top_delta="10"
visible="false"
width="120" />
<spinner
height="20"
label="x"
layout="topleft"
left_pad="15"
max_val="1e+007"
name="val_spinner_2"
top_delta="0"
visible="false"
width="120" />
<spinner
height="20"
label="x"
layout="topleft"
left="15"
max_val="1e+007"
name="val_spinner_3"
top="160"
visible="false"
width="120" />
<spinner
height="20"
label="x"
layout="topleft"
left_pad="15"
max_val="1e+007"
name="val_spinner_4"
top_delta="0"
visible="false"
width="120" />
<button
height="20"
label="Reset to default"
layout="topleft"
left="15"
name="default_btn"
top="190"
width="150" />
</floater>
|