blob: fbe40a7244fcc47d89f297d99be9549b7283198c (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<context_menu
layout="topleft"
name="Toolbars Popup"
visible="false">
<menu_item_call label="Remove this button"
layout="topleft"
name="Remove button">
<menu_item_call.on_click function="Toolbars.RemoveSelectedCommand" />
</menu_item_call>
<menu_item_separator layout="topleft" />
<menu_item_call label="Toolbar buttons..."
layout="topleft"
name="Choose Buttons">
<menu_item_call.on_click function="Floater.Show"
parameter="toybox" />
</menu_item_call>
<menu_item_separator layout="topleft" />
<menu_item_check label="Icons and labels"
layout="topleft"
name="icons_with_text">
<on_click function="Toolbars.EnableSetting"
parameter="icons_with_text" />
<on_check function="Toolbars.CheckSetting"
parameter="icons_with_text" />
</menu_item_check>
<menu_item_check label="Icons only"
layout="topleft"
name="icons_only">
<on_click function="Toolbars.EnableSetting"
parameter="icons_only" />
<on_check function="Toolbars.CheckSetting"
parameter="icons_only" />
</menu_item_check>
</context_menu>
|