blob: fcdd71136625031b8991befad37aeddb28b8fb0f (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
height="602"
layout="topleft"
mouse_opaque="false"
name="save_settings_menu"
width="120">
<menu_item_call
name="save_settings"
label="Save">
<menu_item_call.on_click
function="FlyoutCombo.Button.Action"
userdata="save"/>
</menu_item_call>
<menu_item_call
name="save_as_new_settings"
label="Save As">
<menu_item_call.on_click
function="FlyoutCombo.Button.Action"
userdata="saveas" />
</menu_item_call>
<menu_item_call
name="apply_local"
label="Apply Locally">
<menu_item_call.on_click
function="FlyoutCombo.Button.Action"
userdata="local" />
</menu_item_call>
<menu_item_call
name="apply_parcel"
label="Apply Parcel">
<menu_item_call.on_click
function="FlyoutCombo.Button.Action"
userdata="parcel" />
</menu_item_call>
<menu_item_call
name="apply_region"
label="Apply Region">
<menu_item_call.on_click
function="FlyoutCombo.Button.Action"
userdata="region" />
</menu_item_call>
</toggleable_menu>
|