blob: 14c38f6f26d61c77c6e63b28a933658c6eb4e2e0 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu_bar
follows="left|top|right"
height="18"
layout="topleft"
left_delta="0"
name="Login Menu"
top_delta="0"
width="802">
<menu
create_jump_keys="true"
label="File"
layout="topleft"
name="File">
<menu_item_call
label="Quit"
layout="topleft"
name="Quit"
shortcut="control|Q">
<menu_item_call.on_click
function="File.Quit" />
</menu_item_call>
</menu>
<menu
create_jump_keys="true"
label="Edit"
layout="topleft"
name="Edit"
width="153">
<menu_item_call
label="Preferences..."
layout="topleft"
name="Preferences..."
shortcut="control|P">
<menu_item_call.on_click
function="ShowFloater"
parameter="preferences" />
</menu_item_call>
</menu>
<menu
create_jump_keys="true"
label="Help"
layout="topleft"
name="Help">
<menu_item_call
label="Second Life Help"
layout="topleft"
name="Second Life Help"
shortcut="F1">
<menu_item_call.on_click
function="ShowFloater"
parameter="help f1" />
</menu_item_call>
<menu_item_call
label="About Second Life..."
layout="topleft"
name="About Second Life...">
<menu_item_call.on_click
function="ShowFloater"
parameter="about" />
</menu_item_call>
</menu>
<menu
create_jump_keys="true"
label="Debug"
layout="topleft"
name="Debug">
<menu_item_call
label="Debug Settings"
layout="topleft"
name="Debug Settings">
<menu_item_call.on_click
function="Advanced.ShowDebugSettings"
parameter="all" />
</menu_item_call>
<menu_item_call
label="UI/Color Settings"
layout="topleft"
name="UI/Color Settings">
<menu_item_call.on_click
function="Advanced.ShowDebugSettings"
parameter="skin" />
</menu_item_call>
<menu_item_separator
layout="topleft" />
<menu_item_call
label="UI Preview Tool"
layout="topleft"
name="UI Preview Tool"
shortcut="control|T">
<menu_item_call.on_click
function="ShowFloater"
parameter="ui_preview" />
</menu_item_call>
<menu_item_call
label="Widget Test"
layout="topleft"
name="Widget Test"
shortcut="control|shift|T">
<menu_item_call.on_click
function="ShowFloater"
parameter="test_widgets" />
</menu_item_call>
<menu_item_call
label="List View Test"
name="List View Test"
shortcut="control|shift|L">
<menu_item_call.on_click
function="ShowFloater"
parameter="test_list_view" />
</menu_item_call>
</menu>
</menu_bar>
|