blob: 3ed2bd72061c4e27a4e506c3b6969d58336bd986 (
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
legacy_header_height="18"
can_minimize="false"
height="215"
layout="topleft"
name="settings_debug"
help_topic="settings_debug"
title="DEBUG SETTINGS"
width="350">
<combo_box
allow_text_entry="true"
follows="top|left"
height="22"
layout="topleft"
left="15"
max_chars="255"
name="settings_combo"
top="30"
width="320">
<combo_box.commit_callback
function="SettingSelect" />
</combo_box>
<text_editor
enabled="false"
height="60"
layout="topleft"
left_delta="0"
name="comment_text"
top_pad="10"
width="320"
word_wrap="true" />
<radio_group
follows="top|left"
height="30"
layout="topleft"
left_delta="0"
name="boolean_combo"
top_pad="10"
visible="false"
tab_stop="true"
width="100">
<radio_item
top_pad="5"
label="TRUE"
name="TRUE"
value="true" />
<radio_item
top_pad="5"
label="FALSE"
name="FALSE"
value="" />
<commit_callback
function="CommitSettings" />
</radio_group>
<line_editor
height="20"
layout="topleft"
left_delta="0"
name="val_text"
top_delta="0"
visible="false"
width="300" >
<line_editor.commit_callback
function="CommitSettings" />
</line_editor>
<color_swatch
bottom="185"
can_apply_immediately="true"
height="55"
name="val_color_swatch"
label="Color"
layout="topleft"
width="37" >
<color_swatch.commit_callback
function="CommitSettings" />
</color_swatch>
<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.commit_callback
function="CommitSettings" />
</spinner>
<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.commit_callback
function="CommitSettings" />
</spinner>
<spinner
height="20"
label="x"
layout="topleft"
left="15"
max_val="1e+007"
name="val_spinner_3"
top="160"
visible="false"
width="120">
<spinner.commit_callback
function="CommitSettings" />
</spinner>
<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" >
<spinner.commit_callback
function="CommitSettings" />
</spinner>
<button
height="22"
label="Reset to default"
layout="topleft"
left="15"
name="default_btn"
top="186"
width="150" >
<button.commit_callback
function="ClickDefault" />
</button>
</floater>
|