blob: ea263d05ceff687978d60373687b44d8721e9c21 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu
height="101"
layout="topleft"
left="100"
mouse_opaque="false"
name="Popup"
top="724"
visible="false"
width="128">
<menu_item_call
label="Zoom Close"
name="Zoom Close">
<menu_item_call.on_click
function="Minimap.Zoom"
parameter="close" />
</menu_item_call>
<menu_item_call
label="Zoom Medium"
name="Zoom Medium">
<menu_item_call.on_click
function="Minimap.Zoom"
parameter="medium" />
</menu_item_call>
<menu_item_call
label="Zoom Far"
name="Zoom Far">
<menu_item_call.on_click
function="Minimap.Zoom"
parameter="far" />
</menu_item_call>
<menu_item_call
label="Zoom Default"
name="Zoom Default">
<menu_item_call.on_click
function="Minimap.Zoom"
parameter="default" />
</menu_item_call>
<menu_item_separator />
<menu_item_check
label="Rotate Map"
name="Rotate Map">
<menu_item_check.on_check
control="MiniMapRotate" />
<menu_item_check.on_click
function="ToggleControl"
parameter="MiniMapRotate" />
</menu_item_check>
<menu_item_check
label="Auto Center"
name="Auto Center">
<menu_item_check.on_check
control="MiniMapAutoCenter" />
<menu_item_check.on_click
function="ToggleControl"
parameter="MiniMapAutoCenter" />
</menu_item_check>
<menu_item_separator />
<menu_item_call
label="Stop Tracking"
name="Stop Tracking">
<menu_item_call.on_click
function="Minimap.Tracker"
parameter="task_properties" />
</menu_item_call>
<menu_item_separator />
<menu_item_call
label="World Map"
name="World Map">
<menu_item_call.on_click
function="Floater.Show"
parameter="world_map" />
</menu_item_call>
</menu>
|