blob: 348c0ce19500b2472105f6b58185c12f925b4ecd (
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
can_tear_off="false"
can_resize="false"
can_drag_on_left="false"
can_close="true"
can_dock="false"
bevel_style="in"
height="550"
layout="topleft"
name="Fixed Environment"
save_rect="true"
title="Fixed Environment"
save_visibility="false"
help_topic="fixed_environment"
single_instance="true"
width="750">
<string name="edit_sky">Edit Sky:</string>
<string name="edit_water">Edit Water:</string>
<layout_stack name="floater_stack"
left="5"
top="5"
right="-5"
bottom="-5"
follows="left|top|right|bottom"
orientation="vertical">
<layout_panel name="info_panel"
auto_resize="false"
user_resize="false"
min_height="60">
<text
follows="left|top"
top_delta="30"
left_delta="10"
width="35"
height="20"
font="SansSerif">
Name:
</text>
<line_editor
follows="left|top"
top_delta="-2"
left_delta="45"
width="250"
name="settings_name"
prevalidate_callback="ascii"
max_length_chars="32"
height="20"/>
<button
height="23"
label="Load"
follows="left|top"
left_delta="260"
font="SansSerif"
top_delta="-2"
name="btn_load"
tool_tip="Load a settings from inventory"
width="96" />
<button
height="23"
label="Import"
follows="right|top"
right="-10"
font="SansSerif"
top_delta="0"
name="btn_import"
tool_tip="Import legacy settings from disk."
width="96" />
</layout_panel>
<layout_panel name="tab_area"
auto_resize="true"
user_resize="false"
height="11"
min_height="0"
visible="true">
<tab_container
follows="all"
halign="left"
layout="topleft"
left="0"
name="tab_settings"
tab_position="top"
tab_width="120"
tab_padding_right="3">
<!-- Tabs inserted here in code -->
</tab_container>
</layout_panel>
<layout_panel name="button_panel"
follows="left|top|right|bottom"
auto_resize="false"
user_resize="false"
height="40"
visible="true">
<layout_stack
follows="bottom|left|right"
height="23"
layout="topleft"
mouse_opaque="false"
name="button_bar_ls"
left="0"
orientation="horizontal"
top="0"
width="313">
<layout_panel
follows="bottom|left|right"
height="23"
layout="bottomleft"
left="0"
mouse_opaque="false"
name="save_btn_lp"
auto_resize="true"
width="156">
<button
follows="bottom|left|right"
height="23"
label="Save"
left="1"
layout="topleft"
name="btn_commit"
top="0"
width="155" />
<button
follows="bottom|right"
height="23"
name="btn_flyout"
label=""
layout="topleft"
left_pad="-20"
tab_stop="false"
top="0"
image_selected="SegmentedBtn_Right_Selected_Press"
image_unselected="SegmentedBtn_Right_Off"
image_pressed="SegmentedBtn_Right_Press"
image_pressed_selected="SegmentedBtn_Right_Selected_Press"
image_overlay="Arrow_Small_Up"
width="20"/>
</layout_panel>
<layout_panel
follows="bottom|left|right"
height="23"
layout="bottomleft"
left_pad="3"
mouse_opaque="false"
name="revert_btn_lp"
auto_resize="true"
width="147">
<button
follows="bottom|right"
height="23"
right="-1"
label="Cancel"
layout="topleft"
name="btn_cancel"
top="0"
tool_tip="Revert to last saved version"
width="147" />
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</floater>
|