]> git.lyx.org Git - lyx.git/blob - lib/ui/stdtoolbars.ui
31fab8bb32fdc8a453652929dc9824ee98e17962
[lyx.git] / lib / ui / stdtoolbars.ui
1 # -*- text -*-
2
3 # file stdtoolbars.ui
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
10 # Full author contact details are available in file CREDITS.
11
12 # A Toolbar starts like :
13 #
14 # Toolbar "name" "GUI Name"
15 #
16 # Only four commands are allowed inside the begin_toolbar and end_toolbar
17 # directives:
18 #   Item "The tooltip" "<action> [<parameter>]" adds an icon to the toolbar performing
19 #          "<action> <parameter>"
20 #      Examples:
21 #      Item "Small font" "font-size small"
22 #      Item Emphasized set-emph
23 #
24 #   Layouts adds the layouts combo-box to the toolbar
25 #
26 #   Separator adds some spacing to the toolbar
27 #
28 #   Minibuffer adds the command buffer (Qt only, only one may exist)
29 #
30 # The icons are found in the lib/image direcory under the name
31 # action.xpm or action_parameter.xpm, except for math-insert, which
32 # is e.g. lib/image/math/sum.xpm. Note that some characters are
33 # replaced (e.g. ')' -> rbracket).
34 #
35 #  All other lyx commands will get a "unknown" icon.
36 #
37 # This is the default toolbar:
38
39 Toolbar "standard" "Standard"
40         Layouts
41         Item "New document" "buffer-new"
42         Item "Open document" "file-open"
43         Item "Save document" "buffer-write"
44         Item "Print document" "dialog-show print"
45         Separator
46         Item "Undo" "undo"
47         Item "Redo" "redo"
48         Item "Cut" "cut"
49         Item "Copy" "copy"
50         Item "Paste" "paste"
51         Item "Find and replace" "dialog-show findreplace"
52         Separator
53         Item "Toggle emphasis style" "font-emph"
54         Item "Toggle noun style" "font-noun"
55         Item "Toggle user style" "font-free-apply"
56         Separator
57         Item "Insert math" "math-mode"
58         Item "Insert graphics" "dialog-show-new-inset graphics"
59         Item "Insert table" "tabular-insert 4 4"
60 End
61
62 Toolbar "extra" "Extra"
63         Item "Numbered list" "layout Enumerate"
64         Item "Itemized list" "layout Itemize"
65         Item "List" "layout List"
66         Item "Description" "layout Description"
67         Item "Increase depth" "depth-increment"
68         Item "Decrease depth" "depth-decrement"
69         Separator
70         Item "Insert figure float" "float-insert figure"
71         Item "Insert table float" "float-insert table"
72         Item "Insert label" "label-insert"
73         Item "Insert cross-reference" "dialog-show-new-inset ref"
74         Item "Insert citation" "dialog-show-new-inset citation"
75         Item "Insert index entry" "index-insert"
76         Separator
77         Item "Insert footnote" "footnote-insert"
78         Item "Insert margin note" "marginalnote-insert"
79         Item "Insert note" "note-insert"
80         Item "Insert URL" "url-insert"
81         Item "Insert TeX" "ert-insert"
82         Item "Include file" "dialog-show-new-inset include"
83         Separator
84         Item "Text style" "dialog-show character"
85         Item "Paragraph settings" "layout-paragraph"
86         Item "Table of contents" "toc-view"
87         Item "Check spelling" "dialog-show spellchecker"
88         Item "Thesaurus" "thesaurus-entry"
89 End
90
91 Toolbar "table" "Table"
92         Item "Add row" "tabular-feature append-row"
93         Item "Add column" "tabular-feature append-column"
94         Item "Delete row" "tabular-feature delete-row"
95         Item "Delete column" "tabular-feature delete-column"
96         Separator
97         Item "Set top line" "tabular-feature toggle-line-top"
98         Item "Set bottom line" "tabular-feature toggle-line-bottom"
99         Item "Set left line" "tabular-feature toggle-line-left"
100         Item "Set right line" "tabular-feature toggle-line-right"
101         Item "Set all lines" "tabular-feature set-all-lines"
102         Item "Unset all lines" "tabular-feature unset-all-lines"
103         Separator
104         Item "Align left" "tabular-feature align-left"
105         Item "Align center" "tabular-feature align-center"
106         Item "Align right" "tabular-feature align-right"
107         Separator
108         Item "Align top" "tabular-feature valign-top"
109         Item "Align middle" "tabular-feature valign-middle"
110         Item "Align bottom" "tabular-feature valign-bottom"
111         Separator
112         Item "Rotate cell" "tabular-feature set-rotate-cell"
113         Item "Rotate table" "tabular-feature set-rotate-tabular"
114         Item "Set multi-column" "tabular-feature multicolumn"
115 End
116
117 Toolbar "math" "Math"
118         Item "Show math panel" "dialog-show mathpanel"
119         Item "Set display mode" "math-display"
120         Item "Subscript" "math-subscript"
121         Item "Superscript" "math-superscript"
122         Item "Insert root" "math-insert \root"
123         Item "Insert square root" "math-insert \sqrt"
124         Item "Insert sum" "math-insert \sum"
125         Item "Insert integral" "math-insert \int"
126         Item "Insert product" "math-insert \prod"
127         Separator
128         Item "Insert fraction" "math-insert \frac"
129         Item "Insert ( )" "math-delim ( )"
130         Item "Insert [ ]" "math-delim [ ]"
131         Item "Insert { }" "math-delim { }"
132         Separator
133         Item "Insert matrix" "math-matrix 2 2"
134         Item "Insert cases" "math-insert \cases"
135         Item "Add row" "tabular-feature append-row"
136         Item "Add column" "tabular-feature append-column"
137         Item "Delete row" "tabular-feature delete-row"
138         Item "Delete column" "tabular-feature delete-column"
139 End
140
141 Toolbar "minibuffer" "Command Buffer"
142         Minibuffer
143 End