blob: 95aaadfcf3f565b0a3a19ad20fb5be930d87414b (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
legacy_header_height="18"
can_resize="true"
height="400"
layout="topleft"
name="floater_test_checkbox"
help_topic="floater_test_checkbox"
translate="false"
width="400">
<check_box
control_name="ShowStartLocation"
height="15"
initial_value="true"
label="Oh look it's a checkbox!"
layout="topleft"
left="10"
name="show_location_checkbox"
top="28"
width="256" />
<check_box
height="15"
label="Minimal Checkbox"
layout="topleft"
left_delta="0"
name="minimal_checkbox"
top_pad="14"
width="150" />
<check_box
enabled="false"
height="15"
label="Disabled Checkbox"
layout="topleft"
left_delta="0"
name="disabled_checkbox"
top_pad="14"
width="150" />
<check_box
height="15"
label="Text Enabled Color"
layout="topleft"
left_delta="0"
name="text_enabled_color_checkbox"
label_text.text_color="EmphasisColor"
top_pad="14"
width="150" />
<check_box
enabled="false"
height="15"
label="Text Disabled Color"
layout="topleft"
left_delta="0"
name="text_disabled_color_checkbox"
label_text.text_readonly_color="EmphasisColor_35"
top_pad="14"
width="150" />
<check_box
height="15"
initial_value="true"
label="Initial Value Checked"
layout="topleft"
left_delta="0"
name="initial_value_checkbox"
top_pad="14"
width="150" />
<check_box
font="Monospace"
height="15"
label="Font Monospace"
layout="topleft"
left_delta="0"
name="font_checkbox"
top_pad="14"
width="150" />
</floater>
|