blob: 23049aae06d44359cb6d04c20903360427848f34 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<context_menu
layout="topleft"
name="COF Attachment">
<menu_item_call
label="Touch"
layout="topleft"
name="touch_attach">
<on_click
function="Attachment.Touch" />
<on_enable
function="Attachment.OnEnable"
parameter="touch" />
</menu_item_call>
<menu_item_call
label="Edit"
layout="topleft"
name="edit_item">
<on_click
function="Attachment.Edit" />
<on_enable
function="Attachment.OnEnable"
parameter="edit" />
</menu_item_call>
<menu_item_call
label="Detach"
layout="topleft"
name="detach">
<on_click
function="Attachment.Detach"
parameter="detach"/>
</menu_item_call>
</context_menu>
|