blob: 35918e9705d65093740cedd016fb9e945d857f93 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
legacy_header_height="18"
height="198"
layout="topleft"
name="build options floater"
help_topic="build_options_floater"
save_rect="true"
title="GRID OPTIONS"
width="264">
<floater.string
name="grid_screen_text">
Screen
</floater.string>
<floater.string
name="grid_local_text">
Local
</floater.string>
<floater.string
name="grid_world_text">
World
</floater.string>
<floater.string
name="grid_reference_text">
Reference
</floater.string>
<floater.string
name="grid_attachment_text">
Attachment
</floater.string>
<text
type="string"
length="1"
follows="left|top"
height="16"
layout="topleft"
left="10"
tool_tip="Grid opacity"
name="grid_mode_label"
top_pad="30"
width="123">
Mode
</text>
<combo_box
height="23"
layout="topleft"
left_pad="9"
follows="left|top"
name="combobox grid mode"
tool_tip="Choose the type of grid ruler for positioning the object"
top_delta="-3"
width="108">
<combo_box.item
label="World grid"
name="World"
value="World" />
<combo_box.item
label="Local grid"
name="Local"
value="Local" />
<combo_box.item
label="Reference grid"
name="Reference"
value="Reference" />
<combo_box.commit_callback
function="GridOptions.gridMode"/>
</combo_box>
<spinner
control_name="GridResolution"
follows="left|top"
height="23"
initial_value="1"
label="Units (meters)"
label_width="130"
layout="topleft"
left="10"
max_val="5"
min_val="0.01"
name="GridResolution"
top_pad="4"
width="200" />
<spinner
control_name="GridDrawSize"
decimal_digits="1"
follows="left|top"
height="23"
increment="0.5"
initial_value="5"
label="Extents (meters)"
label_width="130"
layout="topleft"
left_delta="0"
max_val="50"
min_val="1"
name="GridDrawSize"
top_pad="0"
width="200" />
<check_box
control_name="GridSubUnit"
height="16"
label="Snap to sub-units"
layout="topleft"
name="GridSubUnit"
top_pad="0"
width="200" />
<check_box
control_name="GridCrossSections"
height="16"
label="View cross-sections"
layout="topleft"
name="GridCrossSection"
top_pad="5"
width="200" />
<text
type="string"
length="1"
follows="left|top"
height="16"
layout="topleft"
left="10"
tool_tip="Grid opacity"
name="grid_opacity_label"
top_pad="5"
width="128">
Opacity:
</text>
<slider
control_name="GridOpacity"
follows="left"
height="18"
increment="0.05"
initial_value="0.7"
layout="topleft"
name="GridOpacity"
show_text="false"
top_pad="0"
width="210" />
</floater>
|