blob: af6d11f47e406e8a03aeba6b27ce26dfc1b2bd45 (
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
positioning="cascading"
legacy_header_height="18"
can_resize="true"
height="350"
layout="topleft"
min_height="200"
min_width="400"
name="avatarpicker"
help_topic="avatarpicker"
title="CHOOSE RESIDENT"
width="500">
<floater.string
name="not_found">
'[TEXT]' not found
</floater.string>
<floater.string
name="not_found_text">
Resident wasn't found.
</floater.string>
<floater.string
name="no_one_near">
No one near
</floater.string>
<floater.string
name="no_results">
No results
</floater.string>
<floater.string
name="searching">
Searching...
</floater.string>
<!-- For multiple person selection, use "Select" and "Close"
instead of "OK" and "Cancel" because "Cancel" still keeps the ones
you have already selected. The code will show the appropriate
set of buttons. -->
<string name="Select">Select</string>
<string name="Close">Close</string>
<tab_container
follows="all"
height="300"
layout="topleft"
left="0"
name="ResidentChooserTabs"
tab_position="top"
top="20"
width="500">
<panel
height="150"
label="Search"
layout="topleft"
left="6"
help_topic="avatarpicker"
name="SearchPanel"
top="150"
width="132">
<text
type="string"
length="1"
follows="left|top"
height="16"
layout="topleft"
left="10"
name="InstructSearchResidentName"
top="8"
width="220">
Type part of a person's name:
</text>
<line_editor
bevel_style="none"
border_style="line"
border.border_thickness="0"
commit_on_focus_lost="false"
follows="left|top|right"
height="23"
left_delta="0"
name="Edit"
top_pad="0"
width="65" />
<button
follows="top|right"
height="23"
label="Go"
label_selected="Go"
layout="topleft"
left_pad="5"
name="Find"
width="45" />
<scroll_list
draw_heading="true"
follows="all"
height="98"
layout="topleft"
left="0"
name="SearchResults"
top="52"
width="132">
<columns
label="Name"
name="name"
width="150" />
<columns
label="Username"
name="username"
width="150" />
</scroll_list>
</panel>
<panel
height="150"
label="Friends"
layout="topleft"
left="6"
help_topic="avatarpicker"
name="FriendsPanel"
top="150"
width="132">
<text
type="string"
length="1"
follows="left|top"
height="16"
layout="topleft"
left="10"
name="InstructSelectFriend"
top="5"
width="200">
Select a person:
</text>
<button
follows="top|right"
layout="topleft"
right="-5"
top ="5"
height="20"
width="20"
name="RefreshFriends"
image_overlay="Refresh_Off">
<button.commit_callback
function="Refresh.FriendList"/>
</button>
<scroll_list
follows="all"
height="120"
layout="topleft"
left="0"
name="Friends"
sort_column="0"
top_pad="5"
width="132" />
</panel>
<panel
height="150"
label="Near Me"
layout="topleft"
left="6"
help_topic="avatarpicker"
name="NearMePanel"
top="150"
width="132">
<text
type="string"
length="1"
follows="left|top"
height="16"
layout="topleft"
left="10"
name="InstructSelectResident"
top="8"
width="220">
Select a person nearby:
</text>
<slider
control_name="NearMeRange"
decimal_digits="0"
follows="left|top"
height="18"
increment="1"
initial_value="20"
label="Range"
layout="topleft"
left="10"
max_val="130"
min_val="5"
name="near_me_range"
top_pad="0"
width="160" />
<text
type="string"
length="1"
follows="left|top"
height="18"
layout="topleft"
left_pad="0"
name="meters"
width="60">
Meters
</text>
<button
follows="top|left"
layout="topleft"
left_pad="0"
height="28"
width="28"
name="Refresh"
image_overlay="Refresh_Off" />
<scroll_list
draw_heading="true"
follows="all"
height="100"
layout="topleft"
left="0"
name="NearMe"
sort_column="0"
top="52"
width="132">
<columns
label="Name"
name="name"
width="150" />
<columns
label="Username"
name="username"
width="150" />
</scroll_list>
</panel>
</tab_container>
<button
follows="left|bottom"
height="23"
label="OK"
label_selected="OK"
name="ok_btn"
top_pad="3"
left="10"
width="100" />
<button
follows="left|bottom"
height="23"
label="Cancel"
label_selected="Cancel"
name="cancel_btn"
width="100"
left_pad="5" />
</floater>
|