]> git.lyx.org Git - lyx.git/blob - lib/ui/stdmenus.inc
Add visible space. After long discussion the solution is part of InsetSpace.
[lyx.git] / lib / ui / stdmenus.inc
1 # -*- text -*-
2
3 # file stdmenus.inc
4 # This file is part of LyX, the document processor.
5 # Licence details can be found in the file COPYING.
6
7 # author Jean-Marc Lasgouttes
8 # author John Levon
9 # author Michael Gerz
10
11 # Full author contact details are available in file CREDITS.
12
13 # The interface is designed (partially) following the KDE Human Interface
14 # Guidelines (http://techbase.kde.org/Projects/Usability/HIG)
15
16 # Casing Rules:
17 # Capitalize all words in the element, with the following exceptions: 
18 # * Articles: a, an, the. 
19 # * Conjunctions: and, but, for, not, so, yet ...  
20 # * Prepositions of three or fewer letters: at, for, by, in, to ...
21 #   (except when the preposition is part of a verb phrase, such as "Check In")
22 # (http://library.gnome.org/devel/hig-book/stable/design-text-labels.html.en)
23
24 Format 1
25
26 Menuset
27
28         Menubar
29 # Make the first 4 menus be as much as expected as possible
30                 Submenu "File|F" "file"
31                 Submenu "Edit|E" "edit"
32                 Submenu "View|V" "view"
33                 Submenu "Insert|I" "insert"
34                 Submenu "Navigate|N" "navigate"
35                 Submenu "Document|D" "document"
36                 Submenu "Tools|T" "tools"
37                 Submenu "Help|H" "help"
38         End
39
40 #
41 # FILE MENU
42 #
43
44         Menu "file"
45                 Item "New|N" "buffer-new"
46                 Item "New from Template...|m" "buffer-new-template"
47                 Item "Open...|O" "file-open"
48                 Submenu "Open Recent|t" "file_lastfiles"
49                 Separator
50                 Item "Close|C" "buffer-close"
51                 Item "Close All" "buffer-close-all"
52                 Item "Save|S" "buffer-write"
53                 Item "Save As...|A" "buffer-write-as"
54                 Item "Save All|l" "buffer-write-all"
55                 Item "Revert to Saved|R" "buffer-reload"
56                 Submenu "Version Control|V" "file_vc"
57                 Separator
58                 Submenu "Import|I" "file_import"
59                 Submenu "Export|E" "file_export"
60                 Item "Print...|P" "dialog-show print"
61                 OptItem "Fax...|F" "buffer-export fax"
62                 Separator
63                 Item "New Window|W" "window-new"
64                 Item "Close Window|d" "window-close"
65                 Separator
66                 Item "Exit|x" "lyx-quit"
67         End
68
69         Menu "file_lastfiles"
70                 Lastfiles
71         End
72
73         Menu "file_vc"
74                 OptItem "Register...|R" "vc-register"
75                 OptItem "Check In Changes...|I" "vc-check-in"
76                 OptItem "Check Out for Edit|O" "vc-check-out"
77                 OptItem "Update Local Directory From Repository|d" "vc-repo-update"
78                 OptItem "Revert to Repository Version|v" "vc-revert"
79                 OptItem "Undo Last Check In|U" "vc-undo-last"
80                 OptItem "Compare with Older Revision...|C" "vc-compare"
81                 OptItem "Show History...|H" "dialog-show vclog"
82                 OptItem "Use Locking Property|L" "vc-locking-toggle"
83         End
84
85         Menu "file_import"
86                 ImportFormats
87         End
88
89         Menu "file_export"
90                 ExportFormats
91                 Item "More Formats & Options...|O" "buffer-export custom"
92         End
93
94 #
95 # EDIT MENU
96 #
97
98         Menu "edit"
99                 Item "Undo|U" "undo"
100                 Item "Redo|R" "redo"
101                 Separator
102                 Item "Cut" "cut"
103                 Item "Copy" "copy"
104                 Item "Paste" "paste"
105                 Submenu "Paste Recent|e" "edit_pasterecent"
106                 Submenu "Paste Special" "edit_paste"
107                 Separator
108                 Item "Select All" "command-sequence buffer-begin ; buffer-end-select"
109                 Separator
110                 Item "Find & Replace (Quick)...|F" "dialog-show findreplace"
111                 Item "Find & Replace (Advanced)..." "dialog-show findreplaceadv"
112                 Separator
113                 Item "Move Paragraph Up|o" "paragraph-move-up"
114                 Item "Move Paragraph Down|v" "paragraph-move-down"
115                 Separator
116                 Submenu "Text Style|S" "edit_textstyles"
117                 LanguageSelector
118                 Item "Paragraph Settings...|P" "layout-paragraph"
119                 Separator
120 # Mathed b0rkage means these don't work properly
121                 OptSubmenu "Table|T" "edit_tabular"
122                 OptSubmenu "Math|M" "edit_math"
123                 OptSubmenu "Rows & Columns|C" "edit_tabular_features"
124                 Separator
125 # This is where the context-specific stuff is supposed to go.
126 # The idea is that everything on here can disappear and should
127 # only appear when relevant (getStatus). Only stuff that needs
128 # a right-click to bring up the dialog should appear here (it is not
129 # obvious what the context is for the others)
130                 OptItem "Increase List Depth|I" "depth-increment"
131                 OptItem "Decrease List Depth|D" "depth-decrement"
132                 OptItem "Dissolve Inset" "inset-dissolve"
133                 OptItem "TeX Code Settings...|C" "inset-settings ert"
134 # 'a' shortcut to match Insert entry, shouldn't clash with Table Settings
135                 OptItem "Float Settings...|a" "inset-settings float"
136                 OptItem "Text Wrap Settings...|W" "inset-settings wrap"
137                 OptItem "Note Settings...|N" "inset-settings note"
138                 OptItem "Phantom Settings...|h" "inset-settings phantom"
139                 OptItem "Branch Settings...|B" "inset-settings branch"
140                 OptItem "Box Settings...|x" "inset-settings box"
141                 OptItem "Index Entry Settings...|y" "inset-settings index"
142                 OptItem "Index Settings...|x" "inset-settings index_print"
143                 OptItem "Info Settings...|n" "inset-settings info"
144                 OptItem "Listings Settings...|g" "inset-settings listings"
145 # Hey, guess what's broken ? Surprise surprise, it's tabular stuff
146 # This is in the Table submenu instead for now.
147 #       OptItem "Table Settings...|a" "inset-settings tabular"
148                 OptItem "Table Settings...|a" "layout-tabular"
149         End
150
151         Menu "edit_paste"
152                 Item "Plain Text|T" "clipboard-paste"
153                 Item "Plain Text, Join Lines|J" "clipboard-paste paragraph"
154                 Separator
155                 Item "Selection|S" "primary-selection-paste"
156                 Item "Selection, Join Lines|i" "primary-selection-paste paragraph"
157                 Separator
158                 Item "Paste as LinkBack PDF" "paste linkback"
159                 Item "Paste as PDF" "paste pdf"
160                 Item "Paste as PNG" "paste png"
161                 Item "Paste as JPEG" "paste jpeg"
162         End
163
164         Menu "edit_pasterecent"
165                 PasteRecent
166         End
167
168         Menu "edit_textstyles"
169                 Item "Dissolve Text Style" "inset-dissolve charstyle"
170                 CharStyles
171                 Elements
172                 Separator
173                 Item "Customized...|C" "dialog-show character"
174                 Separator
175                 Item "Capitalize|a" "word-capitalize"
176                 Item "Uppercase|U" "word-upcase"
177                 Item "Lowercase|L" "word-lowcase"
178         End
179
180 # not much we can do to help here
181         Menu "edit_tabular"
182                 Item "Multicolumn|M" "inset-modify tabular multicolumn"
183                 Item "Multirow|u" "inset-modify tabular multirow"
184                 Separator
185                 Item "Top Line|T" "inset-modify tabular toggle-line-top"
186                 Item "Bottom Line|B" "inset-modify tabular toggle-line-bottom"
187                 Item "Left Line|L" "inset-modify tabular toggle-line-left"
188                 Item "Right Line|R" "inset-modify tabular toggle-line-right"
189                 Separator
190                 Item "Top|p" "inset-modify tabular tabular-valign-top"
191                 Item "Middle|i" "inset-modify tabular tabular-valign-middle"
192                 Item "Bottom|o" "inset-modify tabular tabular-valign-bottom"
193         End
194
195         Menu "edit_tabular_features"
196                 Item "Left|L" "inset-modify tabular align-left"
197                 Item "Center|C" "inset-modify tabular align-center"
198                 Item "Right|R" "inset-modify tabular align-right"
199                 Separator
200                 Item "Top|T" "inset-modify tabular valign-top"
201                 Item "Middle|M" "inset-modify tabular valign-middle"
202                 Item "Bottom|B" "inset-modify tabular valign-bottom"
203                 Separator
204                 Item "Add Row|A" "inset-modify tabular append-row"
205                 Item "Delete Row|D" "inset-modify tabular delete-row"
206                 Item "Copy Row|o" "inset-modify tabular copy-row"
207                 # Item "Swap Rows|S" "inset-modify tabular swap-row" # currently broken
208                 Separator
209                 Item "Add Column|u" "inset-modify tabular append-column"
210                 Item "Delete Column|e" "inset-modify tabular delete-column"
211                 Item "Copy Column|p" "inset-modify tabular copy-column"
212                 # Item "Swap Columns|w" "inset-modify tabular swap-column" # currently broken
213         End
214
215         Menu "edit_math"
216                 Item "Number Whole Formula|N" "math-number-toggle"
217                 Item "Number This Line|u" "math-number-line-toggle"
218                 Submenu "Change Limits Type|L" "edit_math_limits"
219                 Submenu "Macro Definition" "edit_math_macro_definition"
220                 Separator
221                 Submenu "Change Formula Type|F" "edit_math_mutate"
222                 Separator
223                 Submenu "Text Style|T" "edit_math_fontstyles"
224                 Separator
225                 Submenu "Use Computer Algebra System|S" "edit_math_extern"
226                 Separator
227                 Item "Split Cell|C" "cell-split"
228                 Separator
229                 Item "Add Line Above|A" "inset-modify tabular add-hline-above"
230                 Item "Add Line Below|B" "inset-modify tabular add-hline-below"
231                 Item "Delete Line Above|D" "inset-modify tabular delete-hline-above"
232                 Item "Delete Line Below|e" "inset-modify tabular delete-hline-below"
233                 Separator
234                 Item "Add Line to Left" "inset-modify tabular add-vline-left"
235                 Item "Add Line to Right" "inset-modify tabular add-vline-right"
236                 Item "Delete Line to Left" "inset-modify tabular delete-vline-left"
237                 Item "Delete Line to Right" "inset-modify tabular delete-vline-right"
238         End
239
240         Menu "edit_math_macro_definition"
241                 Item "Append Argument" "math-macro-add-param"
242                 Item "Remove Last Argument" "math-macro-remove-param"
243                 Separator
244                 Item "Make First Non-Optional into Optional Argument" "math-macro-make-optional"
245                 Item "Make Last Optional into Non-Optional Argument" "math-macro-make-nonoptional"
246                 Item "Insert Optional Argument" "math-macro-add-optional-param"
247                 Item "Remove Optional Argument" "math-macro-remove-optional-param"
248                 Separator
249                 Item "Append Argument Eating From the Right" "math-macro-append-greedy-param"
250                 Item "Append Optional Argument Eating From the Right" "math-macro-add-greedy-optional-param"
251                 Item "Remove Last Argument Spitting Out to the Right" "math-macro-remove-greedy-param"
252         End
253
254         Menu "edit_math_limits"
255                  Item "Default|t"  "math-limits empty"
256                  Item "Display|D"  "math-limits limits"
257                  Item "Inline|I"  "math-limits nolimits"
258         End
259
260         Menu "edit_math_fontstyles"
261                 Item "Math Normal Font|N" "math-font-style mathnormal"
262                 Separator
263                 Item "Math Calligraphic Family|C" "math-font-style mathcal"
264                 Item "Math Formal Script Family|o" "math-font-style mathscr"
265                 Item "Math Fraktur Family|F" "math-font-style mathfrak"
266                 Item "Math Roman Family|R" "math-font-style mathrm"
267                 Item "Math Sans Serif Family|S" "math-font-style mathsf"
268                 Separator
269                 Item "Math Bold Series|B" "math-font-style mathbf"
270                 Separator
271                 Item "Text Normal Font|T" "math-font-style textnormal"
272                 Separator
273                 Item "Text Roman Family" "math-font-style textrm"
274                 Item "Text Sans Serif Family" "math-font-style textsf"
275                 Item "Text Typewriter Family" "math-font-style texttt"
276                 Separator
277                 Item "Text Bold Series" "math-font-style textbf"
278                 Item "Text Medium Series" "math-font-style textmd"
279                 Separator
280                 Item "Text Italic Shape" "math-font-style textit"
281                 Item "Text Small Caps Shape" "math-font-style textsc"
282                 Item "Text Slanted Shape" "math-font-style textsl"
283                 Item "Text Upright Shape" "math-font-style textup"
284         End
285
286         Menu "edit_math_extern"
287                 Item "Octave|O" "math-extern octave"
288                 Item "Maxima|M" "math-extern maxima"
289                 Item "Mathematica|a" "math-extern mathematica"
290                 Separator
291                 Item "Maple, Simplify|S" "math-extern maple simplify"
292                 Item "Maple, Factor|F" "math-extern maple factor"
293                 Item "Maple, Evalm|E" "math-extern maple evalm"
294                 Item "Maple, Evalf|v" "math-extern maple evalf"
295         End
296
297         Menu "edit_math_mutate"
298                 Item "Inline Formula|I" "math-mutate simple"
299                 Item "Displayed Formula|D" "math-mutate equation"
300                 Item "Eqnarray Environment|E" "math-mutate eqnarray"
301                 Item "AMS align Environment|a" "math-mutate align"
302                 Item "AMS alignat Environment|t" "math-mutate alignat"
303                 Item "AMS flalign Environment|f" "math-mutate flalign"
304                 Item "AMS gather Environment|g" "math-mutate gather"
305                 Item "AMS multline Environment|m" "math-mutate multline"
306         End
307
308 #
309 # VIEW MENU
310 #
311
312         Menu "view"
313                 Item "Open All Insets|O" "inset-forall * inset-toggle open"
314                 Item "Close All Insets|C" "inset-forall * inset-toggle close"
315                 Separator
316                 Item "Unfold Math Macro|n" "math-macro-unfold"
317                 Item "Fold Math Macro|d" "math-macro-fold"
318                 Separator
319                 Item "View Source|S" "dialog-toggle view-source"
320                 Item "View Messages|g" "dialog-toggle progress"
321                 ViewFormats
322                 UpdateFormats
323                 OptItem "View Master Document|M" "master-buffer-view"
324                 OptItem "Update Master Document|a" "master-buffer-update"
325                 Separator
326                 Item "Split View Into Left and Right Half|i" "split-view horizontal"
327                 Item "Split View Into Upper and Lower Half|e" "split-view vertical"
328                 Item "Close Current View|w" "close-tab-group"
329                 Item "Fullscreen|l" "ui-toggle fullscreen"      
330                 Submenu "Toolbars|b" "toolbars"
331                 Separator
332                 Documents
333         End
334
335         Menu "toolbars"
336                 Toolbars
337         End
338 #
339 # INSERT MENU
340 #
341         Menu "insert"
342 # Try and group things a little better, and percolate the most
343 # commonly used to good positions (exception being mathed, but
344 # most people using mathed learn key shortcuts quite quickly anyway)
345                 Submenu "Math|h" "insert_math"
346                 Submenu "Special Character|p" "insert_special"
347                 Submenu "Formatting|o" "insert_formatting"
348                 Submenu "List / TOC|i" "insert_toc"
349                 Submenu "Float|a" "insert_float"
350                 Submenu "Note|N" "insert_note"
351                 Submenu "Branch|B" "insert_branches"
352                 Submenu "Custom Insets" "insert_custom"
353                 Submenu "File|e" "insert_file"
354                 Submenu "Box[[Menu]]" "insert_box"
355                 OptSubmenu "Insert Regular Expression" "context-edit-regexp"
356                 Separator
357                 Item "Citation...|C" "dialog-show-new-inset citation"
358                 Item "Cross-Reference...|R" "dialog-show-new-inset ref"
359                 Item "Label...|L" "label-insert"
360                 Item "Caption" "caption-insert"
361                 Indices
362                 Item "Nomenclature Entry...|y" "nomencl-insert"
363                 Separator
364                 Item "Table...|T" "tabular-insert"
365                 Item "Graphics...|G" "dialog-show-new-inset graphics"
366                 Item "URL|U" "flex-insert URL"
367                 Item "Hyperlink...|k" "href-insert"
368                 Item "Footnote|F" "footnote-insert"
369                 Item "Marginal Note|M" "marginalnote-insert"
370                 Item "Short Title|S" "argument-insert"
371                 Item "TeX Code|X" "ert-insert"
372                 Item "Program Listing[[Menu]]" "listing-insert"
373                 Item "Date" "date-insert"
374                 Item "Preview|w" "preview-insert"
375         End
376
377         Menu "insert_special"
378                 Item "Symbols...|b" "dialog-show symbols"
379                 Item "Ellipsis|i" "specialchar-insert dots"
380                 Item "End of Sentence|E" "specialchar-insert end-of-sentence"
381                 Item "Ordinary Quote|Q" "self-insert \""
382                 Item "Single Quote|S" "quote-insert single"
383                 Item "Protected Hyphen|y" "specialchar-insert nobreakdash"
384                 Item "Breakable Slash|a" "specialchar-insert slash"
385                 Item "Menu Separator|M" "specialchar-insert menu-separator"
386                 Item "Phonetic Symbols|P" "command-sequence math-insert \text\textipa ; char-forward ;"
387         End
388
389         Menu "insert_formatting"
390                 Item "Superscript|S" "script-insert superscript"
391                 Item "Subscript|u" "script-insert subscript"
392                 Separator
393                 Item "Protected Space|P" "space-insert protected"
394                 Item "Interword Space|w" "space-insert normal"
395                 Item "Visible Space|i" "space-insert visible"
396                 Item "Thin Space|T" "space-insert thin"
397                 Item "Horizontal Space...|o" "dialog-show-new-inset space"
398                 Item "Horizontal Line...|L" "dialog-show-new-inset line"
399                 Item "Vertical Space...|V" "dialog-show-new-inset vspace"
400                 Submenu "Phantom|m" "insert_phantom"
401                 Separator
402                 Item "Hyphenation Point|H" "specialchar-insert hyphenation"
403                 Item "Ligature Break|k" "specialchar-insert ligature-break"
404                 Item "Ragged Line Break|R" "newline-insert newline"
405                 Item "Justified Line Break|J" "newline-insert linebreak"
406                 Separator
407                 Item "New Page|N" "newpage-insert newpage"
408                 Item "Page Break|a" "newpage-insert pagebreak"
409                 Item "Clear Page|C" "newpage-insert clearpage"
410                 Item "Clear Double Page|D" "newpage-insert cleardoublepage"
411         End
412
413         Menu "insert_math"
414 # Always use "math-mode on" instead of "math-display" etc. because this disables the commands in math mode
415                 Item "Inline Formula|I" "math-mode on"
416                 Item "Display Formula|D" "command-sequence math-mode on; math-mutate equation"
417                 Item "Numbered Formula|N" "command-sequence math-mode on; math-mutate equation; math-number-toggle;"
418                 Item "Eqnarray Environment|E" "command-sequence math-mode on; math-mutate eqnarray;"
419                 Item "AMS align Environment|a" "command-sequence math-mode on; math-mutate align;"
420                 Item "AMS alignat Environment|t" "command-sequence math-mode on; math-mutate alignat;"
421                 Item "AMS flalign Environment|f" "command-sequence math-mode on; math-mutate flalign;"
422                 Item "AMS gather Environment|g" "command-sequence math-mode on; math-mutate gather;"
423                 Item "AMS multline Environment|m" "command-sequence math-mode on; math-mutate multline;"
424                 Separator
425 # "math-matrix" and "math-insert" create an inline formula first if called from text mode
426                 Item "Array Environment|y" "math-matrix 2 2"
427                 Item "Cases Environment|C" "math-insert \cases"
428                 Item "Aligned Environment|l" "command-sequence math-insert \aligned; inset-modify tabular append-column"
429                 Item "AlignedAt Environment|v" "command-sequence math-insert \alignedat; inset-modify tabular append-column"
430                 Item "Gathered Environment|h" "math-insert \gathered"
431                 Item "Split Environment|S" "command-sequence math-insert \split; inset-modify tabular append-column"
432                 Separator
433                 Item "Delimiters...|r" "dialog-show mathdelimiter"
434                 Item "Matrix...|x" "dialog-show mathmatrix"
435                 Item "Macro|o" "math-macro newmacroname newcommand"
436         End
437
438         Menu "insert_float"
439                 FloatInsert
440 # This has got to be better than "Wrap", anyway
441                 Item "Figure Wrap Float|F" "wrap-insert figure"
442                 Item "Table Wrap Float|T" "wrap-insert table"
443         End
444
445         Menu "insert_toc"
446                 Item "Table of Contents|C" "inset-insert toc"
447                 FloatListInsert
448                 IndicesLists
449                 Item "Nomenclature|N" "nomencl-print"
450                 Item "BibTeX Bibliography...|B" "dialog-show-new-inset bibtex"
451         End
452
453         Menu "insert_file"
454                 Item "LyX Document...|X" "file-insert"
455                 Item "Plain Text...|T" "file-insert-plaintext"
456                 Item "Plain Text, Join Lines...|J" "file-insert-plaintext-para"
457                 Separator
458                 Item "External Material...|M" "dialog-show-new-inset external"
459                 Item "Child Document...|d" "dialog-show-new-inset include"
460         End
461
462         Menu "insert_box"
463                 Item "Frameless|l" "box-insert Frameless"
464                 Item "Simple Frame|F" "box-insert Boxed"
465                 Item "Oval, Thin|a" "box-insert ovalbox"
466                 Item "Oval, Thick|v" "box-insert Ovalbox"
467                 Item "Drop Shadow|w" "box-insert Shadowbox"
468                 Item "Shaded Background|B" "box-insert Shaded"
469                 Item "Double Frame|u" "box-insert Doublebox"
470         End
471
472         Menu "insert_note"
473                 Item "LyX Note|N" "note-insert Note"
474                 Item "Comment|C" "note-insert Comment"
475                 Item "Greyed Out|G" "note-insert Greyedout"
476         End
477
478         Menu "insert_branches"
479                 Branches
480                 Separator
481                 Item "Insert New Branch...|I" "branch-add-insert"
482         End
483         
484         Menu "insert_phantom"
485                 Item "Phantom|P" "phantom-insert Phantom"
486                 Item "Horizontal Phantom|H" "phantom-insert HPhantom"
487                 Item "Vertical Phantom|V" "phantom-insert VPhantom"
488         End
489
490         Menu "insert_custom"
491                 Custom
492         End
493
494 #
495 # DOCUMENT MENU
496 #
497
498         Menu "document"
499                 Submenu "Change Tracking|C" "document_change"
500                 OptItem "Build Program|B" "build-program"
501                 Item "LaTeX Log|L" "dialog-show latexlog"
502                 Item "Outline|O" "dialog-toggle toc"
503                 Item "Start Appendix Here|A" "appendix"
504                 Separator
505                 Item "Save in Bundled Format|F" "buffer-toggle-embedding"
506                 Item "Compressed|m" "buffer-toggle-compression"
507                 Item "Settings...|S" "dialog-show document"
508         End
509
510         Menu "document_change"
511                 Item "Track Changes|T" "changes-track"
512                 Item "Merge Changes...|M" "changes-merge"
513                 Item "Accept Change|A" "change-accept"
514                 Item "Reject Change|R" "change-reject"
515                 Item "Accept All Changes|c" "all-changes-accept"
516                 Item "Reject All Changes|e" "all-changes-reject"
517                 Item "Show Changes in Output|S" "changes-output"
518         End
519
520 #
521 # NAVIGATE MENU
522 #
523         Menu "navigate"
524                 Submenu "Bookmarks|B" "navigate_bookmarks"
525                 Item "Next Note|N" "note-next"
526                 Item "Next Change|C" "change-next"
527                 Item "Next Cross-Reference|R" "reference-next"
528                 OptItem "Go to Label|L" "label-goto"
529                 Item "Forward search|F" "forward-search"
530                 Separator
531                 Toc
532         End
533
534         Menu "navigate_bookmarks"
535                 Item "Save Bookmark 1|S" "bookmark-save 1"
536                 Item "Save Bookmark 2" "bookmark-save 2"
537                 Item "Save Bookmark 3" "bookmark-save 3"
538                 Item "Save Bookmark 4" "bookmark-save 4"
539                 Item "Save Bookmark 5" "bookmark-save 5"
540                 Item "Clear Bookmarks|C" "bookmark-clear"
541                 Separator
542                 Item "Navigate Back|B" "bookmark-goto 0"
543                 Bookmarks
544         End
545
546 #
547 # TOOLS MENU
548 #
549
550         Menu "tools"
551                 Item "Spellchecker...|S" "dialog-show spellchecker"
552                 OptItem "Thesaurus...|T" "thesaurus-entry"
553                 Item "Statistics...|a" "statistics"
554                 OptItem "Check TeX|h" "buffer-chktex"
555                 Item "TeX Information|I" "dialog-show texinfo"
556                 Item "Compare...|C" "dialog-show compare"
557                 Separator
558 # A LOT of applications have Tools->Prefs. Remember this
559 # should be rarely used - Edit menu is not a good place to
560 # have it.
561                 Item "Reconfigure|R" "reconfigure"
562                 Item "Preferences...|P" "dialog-show prefs"
563         End
564
565 #
566 # HELP MENU
567 #
568         Menu "help"
569                 Item "Introduction|I" "help-open Intro"
570                 Item "Tutorial|T" "help-open Tutorial"
571                 Item "User's Guide|U" "help-open UserGuide"
572                 Item "Additional Features|F" "help-open Additional"
573                 Item "Embedded Objects|O" "help-open EmbeddedObjects"
574                 Item "Math|M" "help-open Math"
575                 Item "Customization|C" "help-open Customization"
576                 Item "Shortcuts|S" "help-open Shortcuts"
577                 Item "LyX Functions|y" "help-open LFUNs"
578                 Item "LaTeX Configuration|L" "help-open LaTeXConfig"
579                 Submenu "Specific Manuals|p" "examples"
580                 Separator
581                 Item "About LyX|X" "dialog-show aboutlyx"
582         End
583
584         Menu "examples"
585                 Item "Linguistics Manual|L" "help-open linguistics"
586                 Item "Braille Manual|B" "help-open Braille"
587                 Item "XY-pic Manual|X" "help-open xypic"
588                 Item "Multicolumn Manual|M" "help-open multicol"
589                 Item "Feynman-diagram Manual|F" "help-open FeynmanDiagrams"
590         End
591
592
593 End
594