blob: 410caa72908b2d8225f23a11300c259f9ff962a6 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu
height="101"
layout="topleft"
left="100"
mouse_opaque="false"
name="Avatar Icon Menu"
top="724"
visible="false"
width="128">
<menu_item_call
label="View Profile"
layout="topleft"
name="Show Profile">
<menu_item_call.on_click
function="AvatarIcon.Action"
parameter="profile" />
</menu_item_call>
<menu_item_call
label="IM"
layout="topleft"
name="Send IM">
<menu_item_call.on_click
function="AvatarIcon.Action"
parameter="im" />
</menu_item_call>
<menu_item_call
label="Offer teleport"
layout="topleft"
name="Offer Teleport">
<on_click function="AvatarIcon.Action" parameter="teleport"/>
</menu_item_call>
<menu_item_call
label="Request Teleport"
layout="topleft"
name="Request Teleport">
<on_click function="AvatarIcon.Action" parameter="request_teleport"/>
</menu_item_call>
<menu_item_call
label="Voice call"
layout="topleft"
name="Voice Call">
<on_click function="AvatarIcon.Action" parameter="voice_call"/>
</menu_item_call>
<menu_item_call
label="Chat history..."
layout="topleft"
name="Chat History">
<on_click function="AvatarIcon.Action" parameter="chat_history"/>
</menu_item_call>
<menu_item_separator layout="topleft" name="separator_chat_history"/>
<menu_item_call
label="Add friend"
layout="topleft"
name="Add Friend">
<menu_item_call.on_click
function="AvatarIcon.Action"
parameter="add" />
</menu_item_call>
<menu_item_call
label="Remove friend"
layout="topleft"
name="Remove Friend">
<menu_item_call.on_click
function="AvatarIcon.Action"
parameter="remove" />
</menu_item_call>
<menu_item_call
label="Invite to group..."
layout="topleft"
name="Invite Group">
<on_click function="AvatarIcon.Action" parameter="invite_to_group" />
</menu_item_call>
<menu_item_separator layout="topleft" name="separator_invite_to_group"/>
<menu_item_call
label="Zoom In"
layout="topleft"
name="Zoom In">
<on_click function="AvatarIcon.Action" parameter="zoom_in" />
</menu_item_call>
<menu_item_call
label="Map"
layout="topleft"
name="Map">
<on_click function="AvatarIcon.Action" parameter="map" />
</menu_item_call>
<menu_item_call
label="Share"
layout="topleft"
name="Share">
<on_click function="AvatarIcon.Action" parameter="share" />
</menu_item_call>
<menu_item_call
label="Pay"
layout="topleft"
name="Pay">
<on_click function="AvatarIcon.Action" parameter="pay" />
</menu_item_call>
<menu_item_check
label="Block Voice"
layout="topleft"
name="Block Unblock">
<on_click function="AvatarIcon.Action" parameter="block_unblock" />
<on_check function="AvatarIcon.Check" parameter="is_blocked" />
</menu_item_check>
<menu_item_check
label="Block Text"
layout="topleft"
name="Mute Text">
<on_click function="AvatarIcon.Action" parameter="mute_unmute" />
<on_check function="AvatarIcon.Check" parameter="is_muted" />
</menu_item_check>
</menu>
|