blob: b44acebbcf757c047d71bb6eb9cd23d475ece2c4 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<!--
Not can_close / no title to avoid window chrome
Single instance - only have one at a time, recycle it each spawn
-->
<floater
bevel_style="in"
bg_alpha_color="PanelDefaultBackgroundColor"
can_close="false"
can_minimize="false"
height="190"
layout="topleft"
name="inspect_avatar"
single_instance="true"
sound_flags="0"
visible="true"
width="300">
<!-- Allowed fields include:
[BORN_ON] ("12/3/2008")
[SL_PROFILE] (Second Life profile),
[RW_PROFILE] (real world profile),
[ACCTTYPE] ("Resident"),
[PAYMENTINFO] ("Payment Info on File"),
[AGE] ("1 year 2 months")
-->
<string
name="Subtitle">
[AGE]
</string>
<string
name="Details">
[ACCTTYPE][COMMA] [PAYMENTINFO]
</string>
<string
name="Partner">
Partner: [PARTNER]
</string>
<text
follows="left|top|right|bottom"
font="SansSerifHugeBold"
height="70"
left="10"
name="user_name"
text_color="white"
top="20"
use_ellipses="true"
value="Test Name"
width="280"
word_wrap="true" />
<text
follows="left|top|right|bottom"
font="SansSerifBig"
height="20"
left="10"
name="user_subtitle"
text_color="white"
top="45"
width="150" />
<!-- Leave text fields blank so it doesn't flash when data arrives off the network -->
<text
follows="left|top|right|bottom"
height="20"
left="10"
name="user_details"
text_color="white"
top="85"
width="290"
word_wrap="true" />
<text
follows="left|top|right|bottom"
height="20"
left="10"
name="user_partner"
text_color="white"
top="105"
width="290"
word_wrap="true" />
<avatar_icon
follows="left|top|right|bottom"
height="60"
left="230"
mouse_opaque="true"
name="avatar_icon"
top="15"
width="60" />
<slider
follows="top|left"
height="30"
increment="0.05"
left="20"
max_val="0.95"
min_val="0.05"
name="volume_slider"
show_text="false"
tool_tip="Voice Volume"
top="125"
value="0.5"
width="240" />
<button
follows="left|top|right|bottom"
height="16"
image_disabled="icn_speaker_dark.tga"
image_disabled_selected="icn_speaker-muted_dark.tga"
image_hover_selected="icn_speaker-muted_dark.tga"
image_selected="icn_speaker-muted_dark.tga"
image_unselected="icn_speaker_dark.tga"
is_toggle="true"
left="265"
name="mute_btn"
picture_style="true"
top="132"
width="32" />
<button
follows="top|left"
font="SansSerif"
height="20"
label="Add Friend"
left="10"
name="add_friend_btn"
top_pad="10"
width="105" />
<button
follows="top|left"
font="SansSerif"
height="20"
label="View Profile"
left_delta="110"
name="view_profile_btn"
top_delta="0"
width="105" />
<menu_button
follows="top|left"
height="20"
image_overlay="windows\Icon_Gear_Foreground.png"
image_overlay_alignment="center"
menu_filename="menu_inspect_avatar_gear.xml"
name="gear_btn"
picture_style="true"
top_delta="0"
left_delta="110"
width="60"/>
</floater>
|