blob: 1e0364b84eb658635cb4ff8aae7558c1a82c3b7d (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="menu_group_plus"
left="0" bottom="0" visible="false"
mouse_opaque="false" opaque="true" color="MenuDefaultBgColor">
<menu_item_call
label="Activate"
name="Activate">
<menu_item_call.on_click
function="People.Groups.Action"
parameter="activate" />
<menu_item_call.on_enable
function="People.Groups.Enable"
parameter="activate" />
</menu_item_call>
<menu_item_call
label="View Info"
name="View Info">
<menu_item_call.on_click
function="People.Groups.Action"
parameter="view_info" />
<menu_item_call.on_enable
function="People.Groups.Enable"
parameter="view_info" />
</menu_item_call>
<menu_item_call
label="Chat"
name="Chat">
<menu_item_call.on_click
function="People.Groups.Action"
parameter="chat" />
<menu_item_call.on_enable
function="People.Groups.Enable"
parameter="chat" />
</menu_item_call>
<menu_item_call
label="Voice call"
name="Call">
<menu_item_call.on_click
function="People.Groups.Action"
parameter="call" />
<menu_item_call.on_enable
function="People.Groups.Enable"
parameter="call" />
</menu_item_call>
<menu_item_separator />
<menu_item_call
label="Leave"
name="Leave">
<menu_item_call.on_click
function="People.Groups.Action"
parameter="leave" />
<menu_item_call.on_enable
function="People.Groups.Enable"
parameter="leave" />
</menu_item_call>
</toggleable_menu>
|