blob: a1a3afbf6820d2786a55f5dd920ac82fef5f5696 (
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
143
144
145
146
147
148
149
150
151
152
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
layout="topleft"
name="Conversation Context Menu">
<menu_item_call
label="IM..."
layout="topleft"
name="IM">
<on_click
function="Calllog.Action"
parameter="im" />
<on_enable
function="Calllog.Enable"
parameter="can_im" />
</menu_item_call>
<menu_item_call
label="Voice call..."
layout="topleft"
name="Call">
<on_click
function="Calllog.Action"
parameter="call" />
<on_enable
function="Calllog.Enable"
parameter="can_call" />
</menu_item_call>
<menu_item_call
label="Open chat history..."
layout="topleft"
name="Chat history">
<on_click
function="Calllog.Action"
parameter="chat_history" />
<on_enable
function="Calllog.Enable"
parameter="can_view_chat_history" />
</menu_item_call>
<menu_item_call
label="View Profile"
layout="topleft"
name="View Profile">
<on_click
function="Calllog.Action"
parameter="view_profile" />
<on_enable
function="Calllog.Enable"
parameter="can_view_profile" />
</menu_item_call>
<menu_item_call
label="Offer Teleport"
name="teleport">
<on_click
function="Calllog.Action"
parameter="offer_teleport"/>
<on_enable
function="Calllog.Enable"
parameter="can_offer_teleport"/>
</menu_item_call>
<menu_item_call
label="Request Teleport"
name="request_teleport">
<on_click
function="Calllog.Action"
parameter="request_teleport"/>
<on_enable
function="Calllog.Enable"
parameter="can_offer_teleport"/>
</menu_item_call>
<menu_item_separator />
<menu_item_call
label="Add Friend"
layout="topleft"
name="add_friend">
<on_click
function="Calllog.Action"
parameter="add_friend"/>
<on_visible
function="Calllog.Check"
parameter="is_not_friend" />
</menu_item_call>
<menu_item_call
label="Remove Friend"
layout="topleft"
name="remove_friend">
<on_click
function="Calllog.Action"
parameter="remove_friend"/>
<on_visible
function="Calllog.Check"
parameter="is_friend" />
</menu_item_call>
<menu_item_call
label="Invite to group..."
layout="topleft"
name="Invite">
<on_click
function="Calllog.Action"
parameter="invite_to_group"/>
<on_enable
function="Calllog.Enable"
parameter="can_invite_to_group" />
</menu_item_call>
<menu_item_separator />
<menu_item_call
label="Map"
layout="topleft"
name="Map">
<on_click
function="Calllog.Action"
parameter="show_on_map" />
<on_enable
function="Calllog.Enable"
parameter="can_show_on_map" />
</menu_item_call>
<menu_item_call
label="Share"
layout="topleft"
name="Share">
<on_click
function="Calllog.Action"
parameter="share" />
<on_enable
function="Calllog.Enable"
parameter="can_share" />
</menu_item_call>
<menu_item_call
label="Pay"
layout="topleft"
name="Pay">
<on_click
function="Calllog.Action"
parameter="pay" />
<on_enable
function="Calllog.Enable"
parameter="can_pay" />
</menu_item_call>
<menu_item_check
label="Block/Unblock"
layout="topleft"
name="Block/Unblock">
<menu_item_check.on_click
function="Calllog.Action"
parameter="block"/>
<menu_item_check.on_check
function="Calllog.Check"
parameter="is_blocked" />
<menu_item_check.on_enable
function="Calllog.Enable"
parameter="can_block" />
</menu_item_check>
</toggleable_menu>
|