blob: 2042ffedbc04930ef0ea368662d38d4b712f19e9 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- All our XML is utf-8 encoded. -->
<!--
Not can_close / no title to avoid window chrome
Single instance - only have one at a time, recycle it each spawn
-->
<floater
background_opaque="false"
background_visible="true"
bevel_style="in"
bg_alpha_color="PanelDefaultBackgroundColor"
can_close="false"
can_minimize="false"
name="inspect_avatar"
help_topic="inspect_avatar"
single_instance="true"
sound_flags="0"
title=""
visible="true"
width="300"
height="200"
left="0"
top="200"
>
<!-- 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], [PAYMENTINFO]
Profile: [SL_PROFILE]
</string>
<text
top="180" left="10" width="280" height="70" follows="left|top|right|bottom"
use_ellipses="true" word_wrap="true"
font="SansSerifHugeBold" text_color="white"
mouse_opaque="true" name="user_name" >
Test Name
</text>
<!-- General purpose subtitle area, not sure yet what goes here -->
<text
top="155" left="10" width="150" height="20" follows="left|top|right|bottom"
font="SansSerifBig"
text_color="white"
mouse_opaque="true"
name="user_subtitle" />
<!-- Leave text fields blank so it doesn't flash when data arrives off the network -->
<text
top="115" left="10" width="290" height="50" follows="left|top|right|bottom"
font="SansSerifSmall" text_color="white" word_wrap="true"
mouse_opaque="true" name="user_details" />
<avatar_icon
top="185" left="230" width="60" height="60" follows="left|top|right|bottom"
color="1 1 1 1" enabled="true" mouse_opaque="true" name="avatar_icon"
/>
<slider
bottom="35" left="45" width="250" height="30" follows="top|left"
name="volume_slider"
tool_tip="Voice Volume"
increment="0.05" initial_value="0.75" max_val="1" min_val="0"
show_text="false"
/>
<button
bottom="40" left="10" width="32" height="16" follows="left|top|right|bottom"
name="mute_btn"
label=""
image_unselected="icn_speaker_dark.tga"
image_disabled="icn_speaker_dark.tga"
image_selected="icn_speaker-muted_dark.tga"
image_hover_selected="icn_speaker-muted_dark.tga"
image_disabled_selected="icn_speaker-muted_dark.tga"
halign="center"
toggle="true"
/>
<button
bottom="10" left="10" width="110" height="20" follows="top|left"
name="add_friend_btn"
label="Add Friend"
font="SansSerif"
/>
<button
bottom="10" left="120" width="110" height="20" follows="top|left"
name="view_profile_btn"
label="View Profile"
font="SansSerif"
/>
<button
bottom="10" left="230" width="60" height="20" follows="top|left"
name="gear_btn"
label=""
image_overlay="Icon_Gear_Foreground"
image_overlay_alignment="center"
scale_image="true"
/>
</floater>
|