summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/en/menu_people_nearby.xml
blob: 3abb5f7bc8ca3a8a142da8c254d20a47e0de3475 (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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<context_menu
 layout="topleft"
 name="Nearby People Context Menu">
    <menu_item_call
     label="View Profile"
     layout="topleft"
     name="view_profile">
        <menu_item_call.on_click
         function="Avatar.Profile" />
    </menu_item_call>
    <menu_item_call
     label="IM"
     layout="topleft"
     name="im">
        <menu_item_call.on_click
         function="Avatar.IM" />
        <menu_item_call.on_enable
      	 function="Avatar.EnableItem"
         parameter="can_im"/> 
    </menu_item_call>
    <menu_item_call
    label="Offer Teleport"
    name="offer_teleport">
      <menu_item_call.on_click
       function="Avatar.OfferTeleport"/>
      <menu_item_call.on_enable
      function="Avatar.EnableItem"
      parameter="can_offer_teleport"/>
    </menu_item_call>
    <menu_item_call
     label="Voice call"
     layout="topleft"
     name="voice_call">
        <menu_item_call.on_click
         function="Avatar.Call" />
        <menu_item_call.on_enable
         function="Avatar.EnableItem"
         parameter="can_call" />
    </menu_item_call>
    <menu_item_separator />
    <menu_item_call
     label="View chat history..."
     layout="topleft"
     name="chat_history">
        <menu_item_call.on_click
         function="Avatar.Calllog" />
        <menu_item_call.on_enable
      	 function="Avatar.EnableItem"
         parameter="can_callog"/>
    </menu_item_call>
    <menu_item_separator name="separator_chat_history"/>
    <menu_item_call
     label="Add Friend"
     layout="topleft"
     name="add_friend">
        <menu_item_call.on_click
         function="Avatar.AddFriend" />
        <menu_item_call.on_visible
         function="Avatar.EnableItem"
         parameter="can_add" />
    </menu_item_call>
    <menu_item_call
     label="Remove Friend"
     layout="topleft"
     name="remove_friend">
        <menu_item_call.on_click
         function="Avatar.RemoveFriend" />
        <menu_item_call.on_enable
         function="Avatar.EnableItem"
         parameter="can_delete" />
    </menu_item_call>
    <menu_item_call
     label="Invite to group..."
     layout="topleft"
     name="invite_to_group">
        <menu_item_call.on_click
         function="Avatar.InviteToGroup" />
        <menu_item_call.on_enable
      	 function="Avatar.EnableItem"
         parameter="can_invite"/>
    </menu_item_call>
    <menu_item_separator name="separator_invite_to_group"/>
    <menu_item_call
     label="Zoom In"
     layout="topleft"
     name="zoom_in">
      <menu_item_call.on_click
       function="Avatar.ZoomIn" />
      <menu_item_call.on_enable
       function="Avatar.EnableItem"
       parameter="can_zoom_in"/>
    </menu_item_call>
    <menu_item_call
     label="Map"
     layout="topleft"
     name="map">
        <menu_item_call.on_click
         function="Avatar.ShowOnMap" />
        <menu_item_call.on_enable
         function="Avatar.EnableItem"
         parameter="can_show_on_map" />
    </menu_item_call>
    <menu_item_call
     label="Share"
     layout="topleft"
     name="share">
        <menu_item_call.on_click
         function="Avatar.Share" />
        <menu_item_call.on_enable
      	 function="Avatar.EnableItem"
         parameter="can_share"/>
    </menu_item_call>
    <menu_item_call
     label="Pay"
     layout="topleft"
     name="pay">
        <menu_item_call.on_click
         function="Avatar.Pay" />
        <menu_item_call.on_enable
      	 function="Avatar.EnableItem"
         parameter="can_pay"/> 
    </menu_item_call>
    <menu_item_check
     label="Block/Unblock"
     layout="topleft"
     name="block_unblock">
        <menu_item_check.on_click
         function="Avatar.BlockUnblock" />
        <menu_item_check.on_check
         function="Avatar.CheckItem"
         parameter="is_blocked" />
        <menu_item_check.on_enable
         function="Avatar.EnableItem"
         parameter="can_block" />
    </menu_item_check>
    <menu_item_separator />
</context_menu>