summaryrefslogtreecommitdiff
path: root/src/nautilus-shell-ui.xml
blob: 2c83a8dacb93b624f2164dcf6684344615ee7166 (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<Root>

<!-- A description of each placeholder's purpose is in libnautilus/nautilus-bonobo-ui.h -->

<commands>
	<!-- We define commands here for (at least) all the items
	 for which we share tip or sensitivity state between more
	 than one item (usually 1 menuitem and 1 toolitem.
	-->
	 
	<cmd name="Back" accel="*Control*bracketleft"
	 _tip="Go to the previous visited location"/>
	<cmd name="Forward" accel="*Control*bracketright"
	 _tip="Go to the next visited location"/>
	<cmd name="Find" accel="*Control*f"
	 _tip="Search this computer for files"/>
	<cmd name="Toggle Find Mode" 
	 _label="Find"
	 _tip="Search this computer for files"/>
	<cmd name="New Window"
	 _label="New Window"
	 _tip="Open another Nautilus window for the displayed location"/>
	<cmd name="Home"
	 _tip="Go to the home location"/>
	<cmd name="Stop"
	 _tip="Stop loading this location"/>
	<cmd name="Select All" accel="*Control*a" sensitive="0"/>
        <cmd name="Cut" accel="*Control*x" sensitive="0"/>
        <cmd name="Copy" accel="*Control*c" sensitive="0"/>
        <cmd name="Paste" accel="*Control*v" sensitive="0"/>
        <cmd name="Clear" sensitive="0"/>
	<cmd name="Up"
	 _tip="Go up to the location that contains the displayed location"/>
	<cmd name="Reload"
	 _tip="Display the latest contents of the current location"/>
	<cmd name="Zoom In" _label="Zoom In"
	 _tip="Show the contents in more detail"/>
	<cmd name="Zoom Out" _label="Zoom Out"
	 _tip="Show the contents in less detail"/>
	<cmd name="Zoom Normal" _label="Normal Size"
	 _tip="Show the contents at the normal size"/>
	<cmd name="View as" _label="View as..."
	 _tip="Choose a view for the current location, or modify the set of views"/>
</commands>

<keybindings>
	<accel name="*Control*equal" verb="Zoom In"/>
	<accel name="*Control**Shift*plus" verb="Zoom In"/>
</keybindings>

<menu>
	<submenu name="File" _label="_File">

		<placeholder name="New Items Placeholder" delimit="none">
			<menuitem name="New Window"
				  _label="New _Window"
				  pixtype="stock" pixname="gtk-new"
				  verb="New Window"/>
		</placeholder>
		<placeholder name="Open Placeholder" delimit="top"/>

		

		<menuitem name="Find"
			  _label="_Find"
			  verb="Find"/>

		<placeholder name="General Status Placeholder" delimit="top"/>
		<placeholder name="File Items Placeholder" delimit="top"/>
		<placeholder name="Dangerous File Items Placeholder" delimit="top"/>

		<placeholder name="Global File Items Placeholder" delimit="top"/>
		
		<separator/>

		<menuitem name="Close All Windows"
			  _label="Close _All Windows"
			  _tip="Close all Nautilus windows"
			  accel="*Control**Shift*w"
			  verb="Close All Windows"/>
		<menuitem name="Close"
			  _label="_Close Window"
			  _tip="Close this window"
			  accel="*Control*w"
			  pixtype="stock" pixname="gtk-close"
			  verb="Close"/>
	</submenu>

	<submenu name="Edit" _label="_Edit">

<!-- FIXME bugzilla.gnome.org 43515

     Undo is disabled until we have a better implementation.
     Both here and in nautilus-undo-signal-handlers.c.

		<menuitem name="Undo" 
			  _label="_Undo" 
			  _tip="Undo the last text change"
			  pixtype="stock" pixname="gtk-undo" 
			  accel="*Control*z"
			  verb="Undo"/>

		<separator/>
-->

		<menuitem name="Cut"
			  _label="Cut _Text"
			  pixtype="stock" pixname="gtk-cut"
			  verb="Cut"/>
		<menuitem name="Copy"
			  _label="_Copy Text"
			  pixtype="stock" pixname="gtk-copy"
			  verb="Copy"/>
		<menuitem name="Paste"
			  _label="_Paste Text"
			  pixtype="stock" pixname="gtk-paste"
			  verb="Paste"/>
		<menuitem name="Clear"
			  _label="C_lear Text"
			  pixtype="stock" pixname="gtk-clear"
			  verb="Clear"/>

		<separator/>

		<menuitem name="Select All"
			  _label="Select _All" 
			  verb="Select All"/>
		
		<separator/>

		<menuitem name="User Level Customization" 
			  _label="P_references..." 
			  _tip="Edit Nautilus preferences"
			  pixtype="stock" pixname="gtk-preferences" 
			  verb="User Level Customization"/>

		<menuitem name="Customize" 
			  _label="_Backgrounds and Emblems..." 
			  _tip="Display patterns, colors, and emblems that can be used to customize appearance"
			  verb="Customize"/>

		<placeholder name="Global Edit Items Placeholder" delimit="none"/>
		<placeholder name="Edit Items Placeholder" delimit="top"/>

	</submenu>

	<submenu name="View" _label="_View">
		<menuitem name="Reload"
			  _label="_Reload"
			  accel="*Control*r"
			  pixtype="stock" pixname="refresh"
			  verb="Reload"/>

		<placeholder name="Show Hide Placeholder" delimit="top">
			<menuitem name="Show Hide Sidebar" 
				  _label="Hide _Sidebar"
				  _tip="Change the visibility of this window's sidebar"
				  verb="Show Hide Sidebar"/>
			<menuitem name="Show Hide Toolbar" 
				  _label="Hide _Toolbar"
				  _tip="Change the visibility of this window's toolbar"
				  verb="Show Hide Toolbar"/>
			<menuitem name="Show Hide Location Bar" 
				  _label="Hide Location _Bar"
				  _tip="Change the visibility of this window's location bar"
				  verb="Show Hide Location Bar"/>
			<menuitem name="Show Hide Statusbar" 
				  _label="Hide St_atusbar"
				  _tip="Change the visibility of this window's statusbar"
				  verb="Show Hide Statusbar"/>
		</placeholder>
		<placeholder name="View Preferences Placeholder" delimit = "top"/>
		<placeholder name="View Items Placeholder" delimit="top"/>
		
		<placeholder name="Zoom Items Placeholder" delimit="top">
			<menuitem name="Zoom In"
				  _label="Zoom _In" accel="*Control*plus"
				  pixtype="stock" pixname="zoom-in"
				  verb="Zoom In"/>
			<menuitem name="Zoom Out"
				  _label="Zoom _Out" accel="*Control*minus"
				  pixtype="stock" pixname="zoom-out"
				  verb="Zoom Out"/>
			<menuitem name="Zoom Normal"
				  _label="_Normal Size"
				  pixtype="stock" pixname="zoom-100"
				  verb="Zoom Normal"/>
		</placeholder>
		<placeholder name="View Choices">
			<placeholder name="Extra Viewer" delimit="top"/>
			<separator name="Before Short List"/>
			<placeholder name="Short List"/>
			<separator name="After Short List"/>
			<menuitem name="View as" _label="_View as..." verb="View as"/>
		</placeholder>
	</submenu>

	<submenu name="Go" _label="_Go">
		<menuitem name="Back" 
			  _label="_Back"
 			  pixtype="stock" pixname="gtk-go-back"
			  verb="Back"/>
		<menuitem name="Forward" 
			  _label="_Forward"
 			  pixtype="stock" pixname="gtk-go-forward"
			  verb="Forward"/>
		<menuitem name="Up" 
			  _label="_Up a Level" 
			  accel="*Control*u"
			  pixtype="stock" pixname="gtk-go-up"
			  verb="Up"/>
		<menuitem name="Home" 
			  _label="_Home" 
			  accel="*Control*h"
			  pixtype="stock" pixname="gtk-home"
			  verb="Home"/>
		<menuitem name="Start Here" 
			  _label="_Start Here" 
			  _tip="Go to the Start Here folder"
			  verb="Start Here"/>
		<menuitem name="Go to Location"
			  _label="_Location..."
			  accel="*Control*l"
			  verb="Go to Location"/>

		<separator/>

		<menuitem name="Clear History" 
			  _label="_Clear History" 
			  _tip="Clear contents of Go menu and Back/Forward lists"
			  verb="Clear History"/>

		<placeholder name="History Placeholder" delimit="top"/>
	</submenu>

	<submenu name="Bookmarks" _label="_Bookmarks">
		<menuitem name="Add Bookmark" 
			  _label="_Add Bookmark" 
			  _tip="Add a bookmark for the current location to this menu"
			  accel="*Control*b"
			  pixtype="stock" pixname="gtk-add"
			  verb="Add Bookmark"/>
		<menuitem name="Edit Bookmarks" 
			  _label="_Edit Bookmarks..." 
			  _tip="Display a window that allows editing the bookmarks in this menu"
			  verb="Edit Bookmarks"/>

		<placeholder name="Built-in Bookmarks Placeholder" delimit="top"/>
		<placeholder name="Bookmarks Placeholder" delimit="top"/>
	</submenu>
		
	<placeholder/>

	<submenu name="Profiler" _label="_Profiler">
		<menuitem name="Start Profiling" 
			  _label="_Start Profiling" 
			  _tip="Start Profiling"
			  verb="Start Profiling"/>
		<menuitem name="Stop Profiling" 
			  _label="_Stop Profiling" 
			  _tip="Stop Profiling"
			  verb="Stop Profiling"/>
		<menuitem name="Reset Profiling" 
			  _label="_Reset Profiling" 
			  _tip="Reset Profiling"
			  verb="Reset Profiling"/>
		<menuitem name="Report Profiling" 
			  _label="_Report Profiling" 
			  _tip="Report Profiling"
			  verb="Report Profiling"/>
	</submenu>

	<submenu name="Help" _label="_Help">
		<menuitem name="Nautilus Manual"
			  _label="Nautilus User _Manual"
			  _tip="Display on-line help for Nautilus"
			  verb="Nautilus Manual"/>
		<menuitem name="Nautilus Quick Reference" 
			  _label="Nautilus Quick _Reference" 
			  _tip="Display quick reference pages for Nautilus"
			  verb="Nautilus Quick Reference"/>
		<separator/>
		<menuitem name="About Nautilus"
			  _label="_About Nautilus..."
			  _tip="Display credits for the creators of Nautilus"
			  pixtype="stock" pixname="about"
			  verb="About Nautilus"/>
	</submenu>
</menu>

<dockitem name="Location Bar" behavior="exclusive,never vertical">
	<control name="Wrapper" behavior="expandable"/>
</dockitem>

<dockitem name="Toolbar" behavior="exclusive">

	<control name="BackWrapper" 
		 min_width="48"
	         pixtype="stock" pixname="gtk-go-back"/>
	<control name="ForwardWrapper"
		 min_width="48"
	         pixtype="stock" pixname="gtk-go-forward"/>
	<toolitem name="Up"
                  _label="Up"
	          min_width="48"
	          pixtype="stock" pixname="gtk-go-up"
	          verb="Up"/>
	<toolitem name="Stop" _label="Stop"
	          min_width="48"
	          pixtype="stock" pixname="gtk-stop"
	          verb="Stop"/>	
	<toolitem name="Reload"
		  _label="Reload"
	          min_width="48"
	          pixtype="stock" pixname="gtk-refresh"
		  verb="Reload"/>

	<separator/>

	<toolitem name="Home"
		  _label="Home"
	          min_width="48"
	          pixtype="stock" pixname="gtk-home"
		  verb="Home"/>
	<toolitem name="Toggle Find Mode"
	          min_width="48"
	          type="toggle"
	          pixtype="stock" pixname="Search"
		  verb="Toggle Find Mode"/>

	<placeholder name="Extra Buttons Placeholder" delimit="top"/>
		
	<control name="ThrobberWrapper" behavior="pack-end"/>
</dockitem>

<status>
	<!-- the name "main" is required by Bonobo -->
	<item name="main"/>
</status>

<popups>
	<popup name="background" tearoff="0">
		<placeholder name="Before Zoom Items" delimit="none">
			<placeholder name="New Items" delimit="none">
				<menuitem name="New Window" 
				 pixtype="stock" pixname="gtk-new"
				 verb="New Window"/>
			</placeholder>
		</placeholder>
		<placeholder name="Zoom Items" delimit="top">
			<menuitem name="Zoom In" 
			 pixtype="stock" pixname="zoom-in"
			 verb="Zoom In"/>
			<menuitem name="Zoom Out" 
			 pixtype="stock" pixname="zoom-out"
			 verb="Zoom Out"/>
			<menuitem name="Zoom Normal" 
			 pixtype="stock" pixname="zoom-100"
			 verb="Zoom Normal"/>
		</placeholder>
		<placeholder name="After Zoom Items" delimit="top"/>
	</popup>
</popups>

</Root>