blob: 6ef93406ec11e63980357c5c0bd863ad598537ce (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<!-- Side tray cannot show background because it is always
partially on screen to hold tab buttons. -->
<side_tray
name="sidebar"
background_visible="false"
mouse_opaque="true"
width="333"
collapsed="true"
>
<!-- Individual tabs must show background to have seemless
appearance up to tray panel header word like "Home".
Embedded panels are inset by a pixel and so their
backgrounds will not block the world fully. -->
<sidetray_tab
name="sidebar_openclose"
help_topic="sidebar_openclose"
tab_title="Toggle Sidebar"
description="Toggle Sidebar."
image="TabIcon_Open_Off"
image_selected="TabIcon_Close_Off"
mouse_opaque="false"
background_visible="true"
>
<panel /> <!-- dummy panel, never to actually be seen -->
</sidetray_tab>
<sidetray_tab
name="sidebar_home"
help_topic="sidebar_home"
tab_title="Home"
description="Home."
image="TabIcon_Home_Off"
image_selected="TabIcon_Home_Selected"
mouse_opaque="false"
background_visible="true"
>
<panel
class="panel_sidetray_home"
name="panel_home"
filename="panel_sidetray_home_tab.xml"
label="home"
/>
</sidetray_tab>
<sidetray_tab
name="sidebar_me"
help_topic="sidebar_me"
tab_title="My Profile"
description="Edit your public profile and Picks."
image="TabIcon_Me_Off"
image_selected="TabIcon_Me_Selected"
mouse_opaque="false"
background_visible="true"
>
<panel_container
name="panel_container"
default_panel_name="panel_me"
width="333"
>
<panel
class="panel_me"
name="panel_me"
filename="panel_me.xml"
label="Me"
/>
</panel_container>
</sidetray_tab>
<sidetray_tab
name="sidebar_people"
help_topic="sidebar_people"
tab_title="People"
description="Find your friends, contacts and people nearby."
image="TabIcon_People_Off"
image_selected="TabIcon_People_Selected"
mouse_opaque="false"
background_visible="true"
>
<panel_container
name="panel_container"
default_panel_name="panel_people"
width="333"
>
<panel
class="panel_people"
name="panel_people"
filename="panel_people.xml"
/>
<panel
class="panel_profile_view"
name="panel_profile_view"
filename="panel_profile_view.xml"
/>
<panel
class="panel_group_info_sidetray"
name="panel_group_info_sidetray"
filename="panel_group_info_sidetray.xml"
label="Group Profile"
font="SansSerifBold"
/>
<panel
class="panel_block_list_sidetray"
name="panel_block_list_sidetray"
filename="panel_block_list_sidetray.xml"
label="Blocked Residents & Objects"
font="SansSerifBold"
/>
</panel_container>
</sidetray_tab>
<sidetray_tab
name="sidebar_places"
help_topic="sidebar_places"
tab_title="Places"
label="Places"
description="Find places to go and places you've visited before."
image="TabIcon_Places_Off"
image_selected="TabIcon_Places_Selected"
mouse_opaque="false"
background_visible="true"
>
<panel
class="panel_places"
name="panel_places"
filename="panel_places.xml"
label="Places"
font="SansSerifBold"
/>
</sidetray_tab>
<sidetray_tab
name="sidebar_inventory"
help_topic="sidebar_inventory"
tab_title="My Inventory"
description="Browse your inventory."
image="TabIcon_Things_Off"
image_selected="TabIcon_Things_Selected"
mouse_opaque="false"
background_visible="true"
>
<panel
class="sidepanel_inventory"
name="sidepanel_inventory"
filename="sidepanel_inventory.xml"
label="Edit Inventory"
font="SansSerifBold"
/>
</sidetray_tab>
<sidetray_tab
name="sidebar_appearance"
help_topic="sidebar_appearance"
tab_title="My Appearance"
description="Change your appearance and current look."
image="TabIcon_Appearance_Off"
image_selected="TabIcon_Appearance_Selected"
mouse_opaque="false"
background_visible="true"
>
<panel
class="sidepanel_appearance"
name="sidepanel_appearance"
filename="sidepanel_appearance.xml"
label="Edit Appearance"
font="SansSerifBold"
/>
</sidetray_tab>
</side_tray>
|