blob: 99ad3e7fe3e33fbeab5837889d41403e47967173 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
layout="topleft"
top="18"
left="0"
width="350"
height="330"
label="SEARCH"
follows="all">
<string
name="not_found">
'[TEXT]' not found
</string>
<string
name="no_results">
No results
</string>
<string
name="searching">
Searching...
</string>
<string
name="loading">
Loading...
</string>
<string
name="maturity_icon_general">
"Parcel_PG_Light"
</string>
<string
name="maturity_icon_moderate">
"Parcel_M_Light"
</string>
<string
name="maturity_icon_adult">
"Parcel_R_Light"
</string>
<panel
follows="all"
left="5"
right="-3"
bottom="-2"
top="0"
name="search_panel">
<text
left="0"
follows="top|left|right"
right="-1">
Enter part of the name:
</text>
<line_editor
left="0"
follows="left|top|right"
name="edit"
height="18"
right="-60"/>
<button label="Go"
follows="top|right"
top_pad="-18"
left_pad="2"
right="-1"
height="18"
name="find"/>
<text
top_pad="6"
left="0"
follows="top|left"
width="180">
Max Content Rating:
</text>
<icons_combo_box
follows="left|top"
height="20"
label="Moderate"
layout="topleft"
name="maturity"
top_pad="-13"
left_pad="0"
right="-1">
<icons_combo_box.drop_down_button
image_overlay="Parcel_M_Light"
image_overlay_alignment="left"
imgoverlay_label_space="3"
pad_left="3"/>
<icons_combo_box.item
label="Adult"
name="Adult"
value="42">
<item.columns
halign="center"
type="icon"
value="Parcel_R_Light"
width="20"/>
</icons_combo_box.item>
<icons_combo_box.item
label="Moderate"
name="Mature"
value="21">
<item.columns
halign="center"
type="icon"
value="Parcel_M_Light"
width="20"/>
</icons_combo_box.item>
<icons_combo_box.item
label="General"
name="PG"
value="13">
<item.columns
halign="center"
type="icon"
value="Parcel_PG_Light"
width="20"/>
</icons_combo_box.item>
</icons_combo_box>
<scroll_list
draw_heading="true"
left="0"
right="-1"
height="239"
top_pad="4"
follows="all"
column_padding="5"
name="search_results">
<columns
halign="center"
width="24"
name="maturity"
label=""/>
<columns
user_resize="true"
name="experience_name"
label="Name"/>
<columns
user_resize="true"
name="owner"
label="Owner"/>
</scroll_list>
<button
follows="left|bottom"
height="23"
label="OK"
label_selected="OK"
name="ok_btn"
top_pad="3"
left="0"
width="95" />
<button
follows="left|bottom"
height="23"
label="Cancel"
name="cancel_btn"
width="95"
left_pad="3" />
<button
follows="left|bottom"
height="23"
label="View Profile"
name="profile_btn"
width="95"
left_pad="3" />
<button
follows="left|bottom"
height="23"
label="<"
name="left_btn"
width="23"
left_pad="3"
enabled="false"/>
<button
follows="left|bottom"
height="23"
label=">"
name="right_btn"
width="23"
left_pad="3"
enabled="false" />
</panel>
</panel>
|