]> git.lyx.org Git - features.git/blob - lib/ui/stdmenus.inc
a6ac4a5aafb03c2124d33c7ebd396c2b5fe6b303
[features.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 # (https://developer.gnome.org/hig-book/unstable/design-text-labels.html.en)
23
24 Format 5
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" "lyxfiles-open templates"
47                 Item "Open...|O" "file-open"
48                 Submenu "Open Recent|t" "file_lastfiles"
49                 Item "Open Example...|p" "lyxfiles-open examples"
50                 Separator
51                 Item "Close|C" "buffer-close"
52                 Item "Close All" "buffer-close-all"
53                 Item "Save|S" "buffer-write"
54                 Item "Save As...|A" "buffer-write-as"
55                 Item "Save As Template..." "buffer-write-as-template"
56                 Item "Save All|l" "buffer-write-all"
57                 Item "Revert to Saved|R" "buffer-reload"
58                 Submenu "Version Control|V" "file_vc"
59                 Separator
60                 Submenu "Import|I" "file_import"
61                 Submenu "Export|E" "file_export"
62                 OptItem "Fax...|F" "buffer-export fax"
63                 Separator
64                 Item "New Window|W" "window-new"
65                 Item "Close Window|d" "window-close"
66                 Separator
67                 Item "Exit|x" "lyx-quit"
68         End
69
70         Menu "file_lastfiles"
71                 Lastfiles
72         End
73
74         Menu "file_vc"
75                 OptItem "Register...|R" "vc-register"
76                 OptItem "Check In Changes...|I" "vc-check-in"
77                 OptItem "Check Out for Edit|O" "vc-check-out"
78                 OptItem "Copy|p" "vc-copy"
79                 OptItem "Rename|R" "vc-rename"
80                 OptItem "Update Local Directory From Repository|d" "vc-repo-update"
81                 OptItem "Revert to Repository Version|v" "vc-revert"
82                 OptItem "Undo Last Check In|U" "vc-undo-last"
83                 OptItem "Compare with Older Revision...|C" "vc-compare"
84                 OptItem "Show History...|H" "dialog-show vclog"
85                 OptItem "Use Locking Property|L" "vc-locking-toggle"
86         End
87
88         Menu "file_import"
89                 ImportFormats
90         End
91
92         Menu "file_export"
93                 ExportFormat
94                 Item "Export As...|s" "buffer-export-as"
95                 Separator
96                 ExportFormats
97                 Item "More Formats & Options...|r" "buffer-export custom"
98         End
99
100 #
101 # EDIT MENU
102 #
103
104         Menu "edit"
105                 Item "Undo|U" "undo"
106                 Item "Redo|R" "redo"
107                 Separator
108                 Item "Cut" "cut"
109                 Item "Copy" "copy"
110                 Item "Paste" "paste"
111                 Submenu "Paste Recent|e" "edit_pasterecent"
112                 Submenu "Paste Special" "edit_paste"
113                 Separator
114                 Item "Select Whole Inset" "inset-select-all"
115                 Item "Select All" "command-sequence buffer-begin ; buffer-end-select"
116                 Separator
117                 Item "Find & Replace (Quick)...|F" "dialog-show findreplace"
118                 Item "Find & Replace (Advanced)..." "dialog-show findreplaceadv"
119                 Separator
120                 Item "Move Paragraph Up|o" "paragraph-move-up"
121                 Item "Move Paragraph Down|v" "paragraph-move-down"
122                 Separator
123                 Item "Paragraph Settings...|P" "layout-paragraph"
124                 Submenu "Text Properties|x" "edit_textprops"
125                 OptSubmenu "Custom Text Styles|S" "edit_textstyles"
126                 Item "Manage Counter Values..." "dialog-show-new-inset counter"
127                 LanguageSelector
128                 Separator
129 # Mathed b0rkage means these don't work properly
130                 OptSubmenu "Table|T" "edit_tabular"
131                 OptSubmenu "Math|M" "edit_math"
132                 OptSubmenu "Rows & Columns|C" "edit_tabular_features"
133                 Separator
134 # This is where the context-specific stuff is supposed to go.
135 # The idea is that everything on here can disappear and should
136 # only appear when relevant (getStatus). Only stuff that needs
137 # a right-click to bring up the dialog should appear here (it is not
138 # obvious what the context is for the others)
139                 OptItem "Increase List Depth|I" "depth-increment"
140                 OptItem "Decrease List Depth|D" "depth-decrement"
141                 OptItem "Dissolve Inset" "inset-dissolve"
142                 OptItem "TeX Code Settings...|C" "inset-settings ert"
143 # 'a' shortcut to match Insert entry, shouldn't clash with Table Settings
144                 OptItem "Float Settings...|a" "inset-settings float"
145                 OptItem "Text Wrap Settings...|W" "inset-settings wrap"
146                 OptItem "Note Settings...|N" "inset-settings note"
147                 OptItem "Phantom Settings...|h" "inset-settings phantom"
148                 OptItem "Branch Settings...|B" "inset-settings branch"
149                 OptItem "Box Settings...|S" "inset-settings box"
150                 OptItem "Index Entry Settings...|y" "inset-settings index"
151                 OptItem "Index Settings...|S" "inset-settings index_print"
152                 OptItem "Info Settings...|n" "inset-settings info"
153                 OptItem "Listings Settings...|g" "inset-settings listings"
154 # Hey, guess what's broken ? Surprise surprise, it's tabular stuff
155 # This is in the Table submenu instead for now.
156 #       OptItem "Table Settings...|a" "inset-settings tabular"
157                 OptItem "Table Settings...|a" "layout-tabular"
158         End
159
160         Menu "edit_paste"
161                 OptItem "Paste from HTML|H" "paste html"
162                 OptItem "Paste from LaTeX|L" "paste latex"
163                 OptItem "Paste as LinkBack PDF" "paste linkback"
164                 OptItem "Paste as PDF" "paste pdf"
165                 OptItem "Paste as PNG" "paste png"
166                 OptItem "Paste as JPEG" "paste jpeg"
167                 OptItem "Paste as EMF" "paste emf"
168                 Separator
169                 Item "Plain Text|T" "clipboard-paste"
170                 Item "Plain Text, Join Lines|J" "clipboard-paste paragraph"
171                 Separator
172                 Item "Selection|S" "primary-selection-paste"
173                 Item "Selection, Join Lines|i" "primary-selection-paste paragraph"
174 # clipboard-paste-simple is commented because it is irritating (bug 8749)
175 # until somebody can explain why it is needed in addition to clipboard-paste
176 #               Separator
177 #               Item "Unformatted Text|U" "clipboard-paste-simple"
178 #               Item "Unformatted, Join Lines|o" "clipboard-paste-simple paragraph"
179         End
180
181         Menu "edit_pasterecent"
182                 PasteRecent
183         End
184
185         Menu "edit_textprops"
186                 Item "Customize...|C" "dialog-show character"
187                 Item "Apply Last Settings|A" "textstyle-apply"
188                 Separator
189                 Item "Capitalize|p" "word-capitalize"
190                 Item "Uppercase|U" "word-upcase"
191                 Item "Lowercase|L" "word-lowcase"
192         End
193
194         Menu "edit_textstyles"
195                 OptItem "Dissolve Text Style" "inset-dissolve charstyle"
196                 CharStyles
197         End
198
199 # not much we can do to help here
200         Menu "edit_tabular"
201                 Item "Multi-page Table|g" "tabular-feature toggle-longtabular"
202                 Item "Formal Style|F" "tabular-feature toggle-booktabs"
203                 Separator
204                 Item "Multicolumn|M" "tabular-feature multicolumn"
205                 Item "Multirow|u" "tabular-feature multirow"
206                 Separator
207                 Item "Top Line|T" "tabular-feature toggle-line-top"
208                 Item "Bottom Line|B" "tabular-feature toggle-line-bottom"
209                 Item "Left Line|L" "tabular-feature toggle-line-left"
210                 Item "Right Line|R" "tabular-feature toggle-line-right"
211                 Separator
212                 Item "Top|p" "tabular-feature tabular-valign-top"
213                 Item "Middle|i" "tabular-feature tabular-valign-middle"
214                 Item "Bottom|o" "tabular-feature tabular-valign-bottom"
215         End
216
217         Menu "edit_tabular_features"
218                 Item "Left|L" "tabular-feature align-left"
219                 Item "Center|C" "tabular-feature align-center"
220                 Item "Right|R" "tabular-feature align-right"
221                 Separator
222                 Item "Top|T" "tabular-feature valign-top"
223                 Item "Middle|M" "tabular-feature valign-middle"
224                 Item "Bottom|B" "tabular-feature valign-bottom"
225                 Separator
226                 Item "Add Row|A" "tabular-feature append-row"
227                 Item "Delete Row|D" "tabular-feature delete-row"
228                 Item "Copy Row|o" "tabular-feature copy-row"
229                 Item "Move Row Up" "tabular-feature move-row-up"
230                 Item "Move Row Down" "tabular-feature move-row-down"
231                 # Item "Swap Rows|S" "tabular-feature swap-row" # currently broken
232                 Separator
233                 Item "Add Column|u" "tabular-feature append-column"
234                 Item "Delete Column|e" "tabular-feature delete-column"
235                 Item "Copy Column|p" "tabular-feature copy-column"
236                 Item "Move Column Right|v" "tabular-feature move-column-right"
237                 Item "Move Column Left" "tabular-feature move-column-left"
238                 # Item "Swap Columns|w" "tabular-feature swap-column" # currently broken
239         End
240
241         Menu "edit_math"
242                 Item "Number Whole Formula|N" "math-number-toggle"
243                 Item "Number This Line|u" "math-number-line-toggle"
244                 Submenu "Change Limits Type|L" "edit_math_limits"
245                 Submenu "Macro Definition" "edit_math_macro_definition"
246                 Separator
247                 Submenu "Change Formula Type|F" "edit_math_mutate"
248                 Separator
249                 Submenu "Text Properties|T" "edit_math_fontstyles"
250                 Separator
251                 Submenu "Use Computer Algebra System|S" "edit_math_extern"
252                 Separator
253                 Item "Split Cell|C" "cell-split"
254                 Separator
255                 Item "Add Line Above|A" "tabular-feature add-hline-above"
256                 Item "Add Line Below|B" "tabular-feature add-hline-below"
257                 Item "Delete Line Above|D" "tabular-feature delete-hline-above"
258                 Item "Delete Line Below|e" "tabular-feature delete-hline-below"
259                 Separator
260                 Item "Add Line to Left" "tabular-feature add-vline-left"
261                 Item "Add Line to Right" "tabular-feature add-vline-right"
262                 Item "Delete Line to Left" "tabular-feature delete-vline-left"
263                 Item "Delete Line to Right" "tabular-feature delete-vline-right"
264         End
265
266         Menu "edit_math_macro_definition"
267                 Item "Append Argument" "math-macro-add-param"
268                 Item "Remove Last Argument" "math-macro-remove-param"
269                 Separator
270                 Item "Transform First Non-Optional to Optional Argument" "math-macro-make-optional"
271                 Item "Transform Last Optional to Non-Optional Argument" "math-macro-make-nonoptional"
272                 Item "Insert Optional Argument" "math-macro-add-optional-param"
273                 Item "Remove Optional Argument" "math-macro-remove-optional-param"
274                 Separator
275                 Item "Append Argument Eating From the Right" "math-macro-append-greedy-param"
276                 Item "Append Optional Argument Eating From the Right" "math-macro-add-greedy-optional-param"
277                 Item "Remove Last Argument Spitting Out to the Right" "math-macro-remove-greedy-param"
278         End
279
280         Menu "edit_math_limits"
281                  Item "Default|t"  "math-limits empty"
282                  Item "Display|D"  "math-limits limits"
283                  Item "Inline|I"  "math-limits nolimits"
284         End
285
286         Menu "edit_math_fontstyles"
287                 Item "Math Normal Font|N" "math-font-style mathnormal"
288                 Separator
289                 Item "Math Calligraphic Family|C" "math-font-style mathcal"
290                 Item "Math Formal Script Family|o" "math-font-style mathscr"
291                 Item "Math Fraktur Family|F" "math-font-style mathfrak"
292                 Item "Math Roman Family|R" "math-font-style mathrm"
293                 Item "Math Sans Serif Family|S" "math-font-style mathsf"
294                 Separator
295                 Item "Math Bold Series|B" "math-font-style mathbf"
296                 Separator
297                 Item "Text Normal Font|T" "math-font-style textnormal"
298                 Separator
299                 Item "Text Roman Family" "math-font-style textrm"
300                 Item "Text Sans Serif Family" "math-font-style textsf"
301                 Item "Text Typewriter Family" "math-font-style texttt"
302                 Separator
303                 Item "Text Bold Series" "math-font-style textbf"
304                 Item "Text Medium Series" "math-font-style textmd"
305                 Separator
306                 Item "Text Italic Shape" "math-font-style textit"
307                 Item "Text Small Caps Shape" "math-font-style textsc"
308                 Item "Text Slanted Shape" "math-font-style textsl"
309                 Item "Text Upright Shape" "math-font-style textup"
310         End
311
312         Menu "edit_math_extern"
313                 Item "Octave|O" "math-extern octave"
314                 Item "Maxima|M" "math-extern maxima"
315                 Item "Mathematica|a" "math-extern mathematica"
316                 Separator
317                 Item "Maple, Simplify|S" "math-extern maple simplify"
318                 Item "Maple, Factor|F" "math-extern maple factor"
319                 Item "Maple, Evalm|E" "math-extern maple evalm"
320                 Item "Maple, Evalf|v" "math-extern maple evalf"
321         End
322
323         Menu "edit_math_mutate"
324                 Item "Inline Formula|I" "math-mutate simple"
325                 Item "Displayed Formula|D" "math-mutate equation"
326                 Item "Eqnarray Environment|E" "math-mutate eqnarray"
327                 Item "AMS align Environment|a" "math-mutate align"
328                 Item "AMS alignat Environment|t" "math-mutate alignat"
329                 Item "AMS flalign Environment|f" "math-mutate flalign"
330                 Item "AMS gather Environment|g" "math-mutate gather"
331                 Item "AMS multline Environment|m" "math-mutate multline"
332         End
333
334 #
335 # VIEW MENU
336 #
337
338         Menu "view"
339                 Item "Outline Pane|O" "dialog-toggle toc"
340                 Item "Code Preview Pane|P" "dialog-toggle view-source"
341                 Item "Messages Pane|M" "dialog-toggle progress"
342                 Submenu "Toolbars|T" "toolbars"
343                 Separator
344                 OptItem "Unfold Math Macro|n" "math-macro-unfold"
345                 OptItem "Fold Math Macro|d" "math-macro-fold"
346                 Separator
347                 Item "Split View Into Left and Right Half|L" "view-split horizontal"
348                 Item "Split View Into Upper and Lower Half|U" "view-split vertical"
349                 OptItem "Close Current View|w" "tab-group-close"
350                 Item "Fullscreen|F" "ui-toggle fullscreen"
351                 Separator
352                 Item "Open All Insets|I" "inset-forall * inset-toggle open"
353                 Item "Close All Insets|C" "inset-forall * inset-toggle close"
354                 Separator
355                 Documents
356         End
357
358         Menu "toolbars"
359                 Toolbars
360                 Separator
361                 Item "Lock Toolbars|L" "toolbar-movable *"
362                 Separator
363                 Item "Small-sized Icons" "icon-size small"
364                 Item "Normal-sized Icons" "icon-size normal"
365                 Item "Big-sized Icons" "icon-size big"
366                 Item "Huge-sized Icons" "icon-size huge"
367                 Item "Giant-sized Icons" "icon-size giant"
368         End
369 #
370 # INSERT MENU
371 #
372         Menu "insert"
373 # Try and group things a little better, and percolate the most
374 # commonly used to good positions (exception being mathed, but
375 # most people using mathed learn key shortcuts quite quickly anyway)
376                 Submenu "Math|h" "insert_math"
377                 Submenu "Special Character|p" "insert_special"
378                 Submenu "Formatting|o" "insert_formatting"
379                 Submenu "Field|i" "insert_fields"
380                 Submenu "List/Contents/References|/" "insert_toc"
381                 Submenu "Float|a" "insert_float"
382                 Submenu "Note|N" "insert_note"
383                 Submenu "Branch|B" "insert_branches"
384                 Submenu "Custom Inset|s" "insert_custom"
385                 Submenu "File|e" "insert_file"
386                 Submenu "Box[[Menu]]|x" "insert_box"
387                 OptSubmenu "Regular Expression" "context-edit-regexp"
388                 Separator
389                 Item "Citation...|C" "dialog-show-new-inset citation"
390                 Item "Cross-Reference...|R" "dialog-show-new-inset ref"
391                 Item "Label...|L" "label-insert"
392                 Captions
393                 Indices
394                 OptSubmenu "Index Properties" "index_properties"
395                 Item "Nomenclature Entry...|y" "nomencl-insert"
396                 Separator
397                 Item "Table...|T" "tabular-insert"
398                 Item "Graphics...|G" "dialog-show-new-inset graphics"
399                 Item "URL|U" "flex-insert URL"
400                 Item "Hyperlink...|k" "href-insert"
401                 Item "Footnote|F" "footnote-insert"
402                 Item "Marginal Note|M" "marginalnote-insert"
403                 Item "Program Listing[[Menu]]" "listing-insert"
404                 Separator
405                 EnvironmentSeparators
406                 Separator
407                 Arguments
408                 Separator
409                 Item "TeX Code" "ert-insert"
410                 Item "Preview|w" "preview-insert"
411         End
412
413         Menu "insert_special"
414                 Item "Symbols...|b" "dialog-show symbols"
415                 Item "Ellipsis|i" "specialchar-insert dots"
416                 Item "End of Sentence|E" "specialchar-insert end-of-sentence"
417                 Item "Plain Quotation Mark|Q" "quote-insert outer auto plain"
418                 Item "Inner Quotation Mark|n" "quote-insert inner"
419                 Item "Non-Breaking Hyphen|y" "specialchar-insert nobreakdash"
420                 Item "Breakable Slash|a" "specialchar-insert slash"
421                 Item "Visible Space|V" "space-insert visible"
422                 Item "Menu Separator|M" "specialchar-insert menu-separator"
423                 Item "Phonetic Symbols|P" "ipa-insert"
424                 Submenu "Logos|L" "insert_logos"
425         End
426
427         Menu "insert_fields"
428                 Item "Date (Current)|D" "info-insert date"
429                 Item "Date (Last Modification)|L" "info-insert moddate"
430                 Item "Date (Fixed)|F" "info-insert fixdate"
431                 Separator
432                 Item "Time (Current)|T" "info-insert time"
433                 Item "Time (Last Modification)|M" "info-insert modtime"
434                 Item "Time (Fixed)|x" "info-insert fixtime"
435                 Separator
436                 Item "File Name (Excl. Extension)|N" "info-insert buffer name-noext"
437                 OptItem "Version Control Revision|V" "info-insert vcs revision"
438                 Item "User Name|U" "info-insert lyxrc user_name"
439                 Item "User Email|E" "info-insert lyxrc user_email"
440                 Separator
441                 Item "Other...|O" "info-insert"
442         End
443
444         Menu "insert_logos"
445                 Item "LyX Logo|L" "specialchar-insert lyx"
446                 Item "TeX Logo|T" "specialchar-insert tex"
447                 Item "LaTeX Logo|a" "specialchar-insert latex"
448                 Item "LaTeX2e Logo|e" "specialchar-insert latex2e"
449         End
450
451         Menu "insert_formatting"
452                 Item "Superscript|S" "script-insert superscript"
453                 Item "Subscript|u" "script-insert subscript"
454                 Separator
455                 Item "Normal Space|e" "space-insert normal"
456                 Item "Non-breaking Normal Space|p" "space-insert protected"
457                 Item "Non-breaking Thin Space|T" "space-insert thin"
458                 Item "Horizontal Space...|o" "command-alternatives dialog-show-new-inset space;dialog-show-new-inset mathspace"
459                 Item "Horizontal Line...|L" "dialog-show-new-inset line"
460                 Item "Vertical Space...|V" "dialog-show-new-inset vspace"
461                 Submenu "Phantom|m" "insert_phantom"
462                 Separator
463                 Item "Hyphenation Point|H" "specialchar-insert hyphenation"
464                 Item "Ligature Break|k" "specialchar-insert ligature-break"
465                 Item "Optional Line Break|B" "specialchar-insert allowbreak"
466                 Item "Ragged Line Break|R" "newline-insert newline"
467                 Item "Justified Line Break|J" "newline-insert linebreak"
468                 Separator
469                 Item "New Page|N" "newpage-insert newpage"
470                 Item "Page Break|a" "newpage-insert pagebreak"
471                 Item "No Page Break|g" "newpage-insert nopagebreak"
472                 Item "Clear Page|C" "newpage-insert clearpage"
473                 Item "Clear Double Page|D" "newpage-insert cleardoublepage"
474         End
475
476         Menu "insert_math"
477 # Always use "math-mode on" instead of "math-display" etc. because this disables the commands in math mode
478                 Item "Inline Formula|I" "math-mode on"
479                 Item "Display Formula|D" "command-sequence math-mode on; math-mutate equation"
480                 Item "Numbered Formula|N" "command-sequence math-mode on; math-mutate equation; math-number-toggle;"
481                 Item "Eqnarray Environment|E" "command-sequence math-mode on; math-mutate eqnarray;"
482                 Item "AMS align Environment|a" "command-sequence math-mode on; math-mutate align;"
483                 Item "AMS alignat Environment|t" "command-sequence math-mode on; math-mutate alignat;"
484                 Item "AMS flalign Environment|f" "command-sequence math-mode on; math-mutate flalign;"
485                 Item "AMS gather Environment|g" "command-sequence math-mode on; math-mutate gather;"
486                 Item "AMS multline Environment|m" "command-sequence math-mode on; math-mutate multline;"
487                 Separator
488 # "math-matrix" and "math-insert" create an inline formula first if called from text mode
489                 Item "Array Environment|y" "math-matrix 2 2"
490                 Item "Cases Environment|C" "math-insert \cases"
491                 Item "Aligned Environment|l" "command-sequence math-insert \aligned; tabular-feature append-column"
492                 Item "AlignedAt Environment|v" "command-sequence math-insert \alignedat; tabular-feature append-column"
493                 Item "Gathered Environment|h" "math-insert \gathered"
494                 Item "Split Environment|S" "command-sequence math-insert \split; tabular-feature append-column"
495                 Separator
496                 Item "Delimiters...|r" "dialog-show mathdelimiter"
497                 Item "Matrix...|x" "dialog-show mathmatrix"
498                 Item "Macro|o" "math-macro newmacroname newcommand"
499         End
500
501         Menu "insert_float"
502                 FloatInsert
503 # This has got to be better than "Wrap", anyway
504                 Item "Wrapped Figure|F" "wrap-insert figure"
505                 Item "Wrapped Table|T" "wrap-insert table"
506         End
507
508         Menu "insert_toc"
509                 Item "Table of Contents|C" "inset-insert toc"
510                 FloatListInsert
511                 IndicesLists
512                 Item "List of Listings|L" "inset-insert toc CommandInset toc LatexCommand lstlistoflistings \end_inset"
513                 Item "Nomenclature|N" "nomencl-print"
514                 Item "Bib(la)TeX Bibliography...|B" "dialog-show-new-inset bibtex"
515         End
516
517         Menu "insert_file"
518                 Item "LyX Document...|X" "file-insert"
519                 Item "Plain Text...|T" "file-insert-plaintext"
520                 Item "Plain Text, Join Lines...|J" "file-insert-plaintext-para"
521                 Separator
522                 Item "External Material...|M" "dialog-show-new-inset external"
523                 Item "Child Document...|d" "dialog-show-new-inset include"
524         End
525
526         Menu "insert_box"
527                 Item "Frameless|l" "box-insert Frameless"
528                 Item "Simple Frame|F" "box-insert Boxed"
529                 Item "Oval, Thin|a" "box-insert ovalbox"
530                 Item "Oval, Thick|v" "box-insert Ovalbox"
531                 Item "Drop Shadow|w" "box-insert Shadowbox"
532                 Item "Shaded Background|B" "box-insert Shaded"
533                 Item "Double Frame|u" "box-insert Doublebox"
534         End
535
536         Menu "index_properties"
537                 OptItem "Subentry|b" "indexmacro-insert subentry"
538                 OptItem "Sortkey|k" "indexmacro-insert sortkey"
539                 OptItem "See|e" "indexmacro-insert see"
540                 OptItem "See also|a" "indexmacro-insert seealso"
541         End
542
543         Menu "insert_note"
544                 Item "LyX Note|N" "note-insert Note"
545                 Item "Comment|C" "note-insert Comment"
546                 Item "Greyed Out|G" "note-insert Greyedout"
547         End
548
549         Menu "insert_branches"
550                 Branches
551                 Separator
552                 Item "Insert New Branch...|I" "branch-add-insert"
553         End
554
555         Menu "insert_phantom"
556                 Item "Phantom|P" "phantom-insert Phantom"
557                 Item "Horizontal Phantom|H" "phantom-insert HPhantom"
558                 Item "Vertical Phantom|V" "phantom-insert VPhantom"
559         End
560
561         Menu "insert_custom"
562                 Custom
563         End
564
565 #
566 # DOCUMENT MENU
567 #
568
569         Menu "document"
570                 OptItem "Cancel Export|P" "export-cancel"
571                 Separator
572                 Submenu "Change Tracking|C" "document_change"
573                 OptItem "Build Program|B" "build-program"
574                 Item "LaTeX Log|L" "dialog-show latexlog"
575                 Item "Start Appendix Here|x" "appendix"
576                 Separator
577                 ViewFormats
578                 UpdateFormats
579                 OptItem "View Master Document|M" "master-buffer-view"
580                 OptItem "Update Master Document|a" "master-buffer-update"
581                 Separator
582                 Item "Compressed|o" "buffer-toggle-compression"
583                 Item "Disable Editing|E" "buffer-toggle-read-only"
584                 Item "Settings...|S" "dialog-show document"
585         End
586
587         Menu "document_change"
588                 Item "Track Changes|T" "changes-track"
589                 Item "Merge Changes...|M" "changes-merge"
590                 Item "Accept Change|A" "change-accept"
591                 Item "Reject Change|R" "change-reject"
592                 Item "Accept All Changes|c" "all-changes-accept"
593                 Item "Reject All Changes|e" "all-changes-reject"
594                 Item "Accept All Changes (incl. Master/Children/Siblings)|p" "ifrelatives master-buffer-forall all-changes-accept"
595                 Item "Reject All Changes (incl. Master/Children/Siblings)|j" "ifrelatives master-buffer-forall all-changes-reject"
596                 Item "Show Changes in Output|S" "changes-output"
597         End
598
599 #
600 # NAVIGATE MENU
601 #
602         Menu "navigate"
603                 Submenu "Bookmarks|B" "navigate_bookmarks"
604                 Item "Next Note|N" "note-next"
605                 Item "Next Change|C" "change-next"
606                 Item "Next Cross-Reference|R" "reference-next"
607                 OptItem "Go to Label|L" "label-goto"
608                 Item "Forward Search|F" "forward-search"
609                 Separator
610                 Toc
611         End
612
613         Menu "navigate_bookmarks"
614                 Item "Save Bookmark 1|S" "bookmark-save 1"
615                 Item "Save Bookmark 2" "bookmark-save 2"
616                 Item "Save Bookmark 3" "bookmark-save 3"
617                 Item "Save Bookmark 4" "bookmark-save 4"
618                 Item "Save Bookmark 5" "bookmark-save 5"
619                 Item "Clear Bookmarks|C" "bookmark-clear"
620                 Separator
621                 Item "Navigate Back|B" "bookmark-goto 0"
622                 Bookmarks
623         End
624
625 #
626 # TOOLS MENU
627 #
628
629         Menu "tools"
630                 Item "Spellchecker...|S" "dialog-show spellchecker"
631                 OptItem "Thesaurus...|T" "thesaurus-entry"
632                 Item "Statistics...|a" "statistics"
633                 Item "Check TeX|h" "buffer-chktex"
634                 Item "TeX Information|I" "dialog-show texinfo"
635                 Item "Compare...|C" "dialog-show compare"
636                 Separator
637 # A LOT of applications have Tools->Prefs. Remember this
638 # should be rarely used - Edit menu is not a good place to
639 # have it.
640                 Item "Reconfigure|R" "reconfigure"
641                 Item "Preferences...|P" "dialog-show prefs"
642         End
643
644 #
645 # HELP MENU
646 #
647         Menu "help"
648                 Item "Introduction|I" "help-open Intro"
649                 Item "Tutorial|T" "help-open Tutorial"
650                 Item "User's Guide|U" "help-open UserGuide"
651                 Item "Additional Features|F" "help-open Additional"
652                 Item "Embedded Objects|O" "help-open EmbeddedObjects"
653                 Item "Math|M" "help-open Math"
654                 Item "Customization|C" "help-open Customization"
655                 Item "Shortcuts|S" "help-open Shortcuts"
656                 Item "LyX Functions|y" "help-open LFUNs"
657                 Item "LaTeX Configuration|L" "help-open LaTeXConfig"
658                 Submenu "Specific Manuals|p" "examples"
659                 Separator
660                 Item "About LyX|X" "dialog-show aboutlyx"
661         End
662
663         Menu "examples"
664                 Item "Beamer Presentations|B" "help-open Presentations/Beamer"
665                 Item "Braille|a" "help-open Modules/Braille"
666                 Item "Colored boxes|r" "help-open Modules/Fancy_Colored_Boxes"
667                 Item "Feynman-diagram|F" "help-open Graphics_and_Insets/Feynman_Diagrams"
668                 Item "Knitr|K" "help-open Modules/Rnw_%28knitr%29"
669                 Item "LilyPond|P" "help-open Modules/LilyPond_Book"
670                 Item "Linguistics|L" "help-open Modules/Linguistics"
671                 Item "Multilingual Captions|C" "help-open Modules/Multilingual_Captions"
672                 Item "Paralist|t" "help-open Modules/Paragraph_Lists_%28paralist%29"
673                 Item "PDF comments|D" "help-open Modules/PDF_Comments"
674                 Item "PDF forms|o" "help-open Modules/PDF_Form"
675                 Item "Hazard and Precautionary Statements|H" "help-open Modules/Hazard_and_Precautionary_Statements"
676                 Item "Sweave|S" "help-open Modules/Sweave"
677                 Item "XY-pic|X" "help-open Graphics_and_Insets/XY-Pic"
678         End
679
680
681 End
682