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