blob: cd83ea4e992f429d2535e0977a82bc7aab0ea952 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu_bar
bg_visible="false"
follows="left|top|right"
name="Main Menu">
<menu
create_jump_keys="true"
label="Help"
name="Help"
tear_off="true">
<menu_item_call
label="[SECOND_LIFE] Help"
name="Second Life Help"
shortcut="F1">
<menu_item_call.on_click
function="ShowHelp"
parameter="f1_help" />
</menu_item_call>
</menu>
<menu
create_jump_keys="true"
label="Advanced"
name="Advanced"
tear_off="true"
visible="false">
<menu
create_jump_keys="true"
label="Shortcuts"
name="Shortcuts"
tear_off="true"
visible="false">
<menu_item_check
label="Fly"
name="Fly"
shortcut="Home">
<menu_item_check.on_check
function="Agent.getFlying" />
<menu_item_check.on_click
function="Agent.toggleFlying" />
<menu_item_check.on_enable
function="Agent.enableFlying" />
</menu_item_check>
<menu_item_call
label="Close Window"
name="Close Window"
shortcut="control|W">
<menu_item_call.on_click
function="File.CloseWindow" />
<menu_item_call.on_enable
function="File.EnableCloseWindow" />
</menu_item_call>
<menu_item_call
label="Close All Windows"
name="Close All Windows"
shortcut="control|shift|W">
<menu_item_call.on_click
function="File.CloseAllWindows" />
<menu_item_call.on_enable
function="File.EnableCloseAllWindows" />
</menu_item_call>
<menu_item_call
label="Reset View"
name="Reset View"
shortcut="Esc">
<menu_item_call.on_click
function="View.ResetView" />
</menu_item_call>
</menu> <!--Shortcuts-->
</menu>
</menu_bar>
|