blob: b0b7b554b07ec9a1dad96a85341e9de57400a071 (
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
|
<?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="Map"
layout="topleft"
name="show_on_map">
<menu_item_call.on_click
function="Profile.ShowOnMap" />
<menu_item_call.on_enable
function="Profile.EnableShowOnMap" />
</menu_item_call>
<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_call
label="Block"
name="block">
<menu_item_call.on_click
function="Profile.BlockUnblock"/>
<menu_item_call.on_visible
function="Profile.EnableBlock" />
</menu_item_call>
<menu_item_call
label="Unblock"
name="unblock">
<menu_item_call.on_click
function="Profile.BlockUnblock"/>
<menu_item_call.on_visible
function="Profile.EnableUnblock" />
</menu_item_call>
<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>
|