blob: 6abcbc40d2d3c0376a428af4bb5fb5bfe8d65e4c (
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
|
<?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_home"
help_topic="sidebar_home"
tab_title="Home"
description="Home."
image="TabIcon_Open_Off"
image_selected="TabIcon_Close_Off"
mouse_opaque="false"
background_visible="true"
>
<panel
name="panel_home"
filename="panel_sidetray_home_tab.xml"
label="home"
/>
</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"
mouse_opaque="false"
background_visible="true"
>
<panel_container
name="panel_container"
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 Info"
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"
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_me"
help_topic="sidebar_me"
tab_title="Me"
description="Edit your public profile and Picks."
image="TabIcon_Me_Off"
mouse_opaque="false"
background_visible="true"
>
<panel
class="panel_me_profile_view"
name="panel_me_profile"
filename="panel_me_profile.xml"
label="Me"
/>
</sidetray_tab>
<sidetray_tab
name="sidebar_appearance"
help_topic="sidebar_appearance"
tab_title="Appearance"
description="Change your appearance and current look."
image="TabIcon_Appearance_Off"
mouse_opaque="false"
background_visible="true"
>
<panel
class="panel_appearance"
name="panel_appearance"
filename="panel_appearance.xml"
label="Edit Appearance"
font="SansSerifBold"
/>
</sidetray_tab>
</side_tray>
|