blob: 407ce14e811bc77ff3d3b283ba2002f6ee1419bb (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
height="50"
layout="topleft"
mouse_opaque="false"
name="profile_overflow_menu"
width="120">
<menu_item_call
label="Pay"
layout="topleft"
name="pay">
<menu_item_call.on_click
function="Profile.Pay" />
</menu_item_call>
<menu_item_call
label="Share"
layout="topleft"
name="share">
<menu_item_call.on_click
function="Profile.Share" />
</menu_item_call>
<menu_item_check
label="Block/Unblock"
layout="topleft"
name="block_unblock">
<menu_item_check.on_click
function="Profile.BlockUnblock" />
<menu_item_check.on_check
function="Profile.CheckItem"
parameter="is_blocked" />
<menu_item_check.on_enable
function="Profile.EnableItem"
parameter="can_block" />
</menu_item_check>
<menu_item_call
label="Kick"
layout="topleft"
name="kick">
<menu_item_call.on_click
function="Profile.Kick" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
<menu_item_call
label="Freeze"
layout="topleft"
name="freeze">
<menu_item_call.on_click
function="Profile.Freeze" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
<menu_item_call
label="Unfreeze"
layout="topleft"
name="unfreeze">
<menu_item_call.on_click
function="Profile.Unfreeze" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
<menu_item_call
label="CSR"
layout="topleft"
name="csr">
<menu_item_call.on_click
function="Profile.CSR" />
<menu_item_call.on_visible
function="Profile.EnableGod" />
</menu_item_call>
</toggleable_menu>
|