blob: 967cf2f539d5987b1a7f38a6976fd49cfeff42bf (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
background_visible="true"
bevel_style="in"
bg_alpha_color="0.2 0.2 0.2 1"
height="640"
label="Edit Pick"
layout="topleft"
left="0"
name="panel_edit_pick"
top="0"
width="355">
<text
type="string"
length="1"
follows="top"
font="SansSerifHugeBold"
height="15"
layout="topleft"
left="10"
name="title"
text_color="white"
top="0"
width="150">
Edit Pick
</text>
<panel
background_visible="true"
bg_alpha_color="0.5 0.5 0.5 1"
follows="left|right|top|bottom"
height="570"
layout="topleft"
left="10"
right="-10"
top="30">
<texture_picker
follows="left|top|right"
height="150"
layout="topleft"
left="10"
name="pick_snapshot"
right="-10"
top="10" />
<text
type="string"
length="1"
follows="left|top"
height="16"
layout="topleft"
left="10"
name="Name:">
Name:
</text>
<line_editor
follows="left|top|right"
font="SansSerif"
height="20"
layout="topleft"
left="10"
name="pick_name"
right="-10"
width="290" />
<text
type="string"
length="1"
follows="left|top"
height="30"
layout="topleft"
left="10"
name="description_label"
v_pad="15"
valign="center">
Description:
</text>
<text_editor
follows="left|top|right"
height="100"
layout="topleft"
left="10"
max_length="1023"
name="pick_desc"
right="-10"
word_wrap="true" />
<text
type="string"
length="1"
follows="left|top"
height="20"
layout="topleft"
left="10"
name="description_label"
v_pad="15"
valign="bottom">
Location:
</text>
<text
type="string"
length="1"
follows="left|top"
height="50"
layout="topleft"
left="10"
name="pick_location"
right="-10"
v_pad="10"
valign="center"
word_wrap="true">
loading...
</text>
<button
follows="left|top"
height="20"
label="Set to Current Location"
layout="topleft"
left="10"
name="set_to_curr_location_btn"
width="200" />
</panel>
<panel
follows="right|bottom"
height="25"
label="bottom_panel"
layout="topleft"
left="5"
name="bottom_panel"
top="605"
width="345">
<button
follows="bottom|left"
height="20"
label="Save Changes"
layout="topleft"
name="save_changes_btn"
right="-120"
top="5"
width="130" />
<button
follows="bottom|left"
height="20"
label="Cancel"
layout="topleft"
name="cancel_btn"
right="-10"
top="5"
width="90" />
</panel>
</panel>
|