blob: 1b96eb51f0ca2c6811bbafba0998a23e15274fbf (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
height="201"
layout="topleft"
mouse_opaque="false"
name="place_overflow_menu"
width="128">
<menu_item_call
label="Make a Landmark"
layout="topleft"
name="landmark">
<menu_item_call.on_click
function="Places.OverflowMenu.Action"
parameter="landmark" />
</menu_item_call>
<menu_item_call
label="Create Pick"
layout="topleft"
name="pick">
<menu_item_call.on_click
function="Places.OverflowMenu.Action"
parameter="pick" />
<menu_item_call.on_enable
function="Places.OverflowMenu.Enable"
parameter="can_create_pick" />
</menu_item_call>
<menu_item_separator
layout="topleft"/>
<menu_item_call
enabled="false"
label="Buy Pass"
layout="topleft"
name="pass">
<menu_item_call.on_click
function="Places.OverflowMenu.Action"
parameter="pass" />
</menu_item_call>
<menu_item_separator
layout="topleft"/>
<menu_item_call
enabled="false"
label="Edit"
layout="topleft"
name="edit">
<menu_item_call.on_click
function="Places.OverflowMenu.Action"
parameter="edit" />
</menu_item_call>
</toggleable_menu>
|