]> git.lyx.org Git - lyx.git/blob - src/LyXAction.C
John's Layout Tabular UI improvements and Martins fixes to clearing the
[lyx.git] / src / LyXAction.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "LyXAction.h"
18 #include "debug.h"
19 #include "gettext.h"
20 #include "support/lstrings.h"
21
22 using std::ostream;
23 using std::endl;
24
25 /*  
26      NAMING RULES FOR USER-COMMANDS
27      Here's the set of rules to apply when a new command name is introduced:
28  
29      1) Use the object.event order. That is, use `word-forward'
30         instead of `forward-word'.
31      2) Don't introduce an alias for an already named object. Same for events.
32      3) Forward movement or focus is called `forward' (not `right').
33      4) Backward movement or focus is called `backward' (not `left').
34      5) Upward movement of focus is called `up'.
35      6) Downward movement is called `down'.
36      7) The begin of an object is called `begin' (not `start').
37      8) The end of an object is called `end'.
38  
39      (May 19 1996, 12:04, RvdK)
40  */
41
42 // These are globals. 
43 LyXAction lyxaction;
44
45 void LyXAction::newFunc(kb_action action, string const & name,
46                         string const & helpText, unsigned int attrib)
47 {
48         lyx_func_map[name] = action;
49         func_info tmpinfo;
50         tmpinfo.name = name;
51         tmpinfo.attrib = attrib;
52         tmpinfo.helpText = helpText;
53         lyx_info_map[action] = tmpinfo;
54 }
55
56
57 void LyXAction::init()
58 {
59         // This function was changed to use the array below in initalization
60         // instead of calling newFunc numerous times because of compilation
61         // times. Since the array is not static we get back the memory it
62         // occupies after the init is completed. It compiles several
63         // magnitudes faster.
64         
65         static bool init;
66         if (init) return;
67
68         struct lfun_item {
69                 kb_action action;
70                 char const * name;
71                 char const * helpText;
72                 unsigned int attrib;
73         };
74
75         lfun_item items[] = {
76                 { LFUN_ACUTE, "accent-acute", "", Noop },
77                 { LFUN_BREVE, "accent-breve", "", Noop },
78                 { LFUN_CARON, "accent-caron", "", Noop },
79                 { LFUN_CEDILLA, "accent-cedilla", "", Noop },
80                 { LFUN_CIRCLE, "accent-circle", "", Noop },
81                 { LFUN_CIRCUMFLEX, "accent-circumflex", "", Noop },
82                 { LFUN_DOT, "accent-dot", "", Noop },
83                 { LFUN_GRAVE, "accent-grave", "", Noop },
84                 { LFUN_HUNG_UMLAUT, "accent-hungarian-umlaut", "", Noop },
85                 { LFUN_MACRON, "accent-macron", "", Noop },
86                 { LFUN_OGONEK, "accent-ogonek", "", Noop },
87                 { LFUN_SPECIAL_CARON, "accent-special-caron", "", Noop },
88                 { LFUN_TIE, "accent-tie", "", Noop },
89                 { LFUN_TILDE, "accent-tilde", "", Noop },
90                 { LFUN_UMLAUT, "accent-umlaut", "", Noop },
91                 { LFUN_UNDERBAR, "accent-underbar", "", Noop },
92                 { LFUN_UNDERDOT, "accent-underdot", "", Noop },
93                 { LFUN_VECTOR, "accent-vector", "", Noop },
94                 { LFUN_APPENDIX, "appendix", N_("Insert appendix"), Noop },
95                 { LFUN_APROPOS, "apropos", N_("Describe command"),
96                   NoBuffer|ReadOnly },
97                 { LFUN_LEFTSEL, "backward-select",
98                   N_("Select previous char"), ReadOnly },
99                 { LFUN_BIBDB_ADD, "bibtex-database-add", "", Noop },
100                 { LFUN_BIBDB_DEL, "bibtex-database-del", "", Noop },
101                 { LFUN_INSERT_BIBTEX, "bibtex-insert", N_("Insert bibtex"),
102                   Noop },
103                 { LFUN_BIBTEX_STYLE, "bibtex-style", "", Noop },
104                 { LFUN_BOOKMARK_GOTO, "bookmark-goto", "", ReadOnly },
105                 { LFUN_BOOKMARK_SAVE, "bookmark-save", "", ReadOnly },
106                 { LFUN_BREAKLINE, "break-line", "", Noop },
107                 { LFUN_BREAKPARAGRAPH, "break-paragraph", "", Noop },
108                 { LFUN_BREAKPARAGRAPHKEEPLAYOUT, "break-paragraph-keep-layout",
109                   "", Noop },
110                 { LFUN_BREAKPARAGRAPH_SKIP, "break-paragraph-skip", "", Noop },
111                 { LFUN_BUILDPROG, "build-program", 
112                   N_("Build program"), ReadOnly },
113                 { LFUN_AUTOSAVE, "buffer-auto-save", N_("Autosave"), Noop },
114                 { LFUN_BEGINNINGBUF, "buffer-begin",
115                   N_("Go to beginning of document"), ReadOnly },
116                 { LFUN_BEGINNINGBUFSEL, "buffer-begin-select",
117                   N_("Select to beginning of document"), ReadOnly },
118                 { LFUN_CHILD_INSERT, "buffer-child-insert", "", Noop },
119                 { LFUN_CHILDOPEN, "buffer-child-open", "", ReadOnly },
120                 { LFUN_RUNCHKTEX, "buffer-chktex", N_("Check TeX"), ReadOnly },
121                 { LFUN_CLOSEBUFFER, "buffer-close", N_("Close"), ReadOnly },
122                 { LFUN_ENDBUF, "buffer-end",
123                   N_("Go to end of document"), ReadOnly },
124                 { LFUN_ENDBUFSEL, "buffer-end-select",
125                   N_("Select to end of document"), ReadOnly },
126                 { LFUN_EXPORT, "buffer-export", N_("Export to"), ReadOnly },
127                 { LFUN_IMPORT, "buffer-import",
128                   N_("Import document"), NoBuffer },
129                 { LFUN_BUFFER_PRINT, "buffer-print-xtl", N_("Print"),
130                   ReadOnly },
131                 { LFUN_PRINTER_PARAMS_GET, "printer-params-get",
132                   N_("Get the printer parameters"), ReadOnly },
133                 { LFUN_MENUNEW, "buffer-new", N_("New document") , NoBuffer },
134                 { LFUN_MENUNEWTMPLT,"buffer-new-template",
135                   N_("New document from template"), NoBuffer },
136                 { LFUN_MENUPRINT, "buffer-print", N_("Print"), ReadOnly },
137                 { LFUN_MENURELOAD, "buffer-reload",
138                   N_("Revert to saved"), ReadOnly },
139                 { LFUN_SWITCHBUFFER, "buffer-switch", 
140                   N_("Switch to an open document"), ReadOnly },
141                 { LFUN_READ_ONLY_TOGGLE, "buffer-toggle-read-only",
142                   N_("Toggle read-only"), ReadOnly },
143                 { LFUN_UPDATE, "buffer-update", N_("Update"), ReadOnly },
144                 { LFUN_PREVIEW, "buffer-view", N_("View") , ReadOnly },
145                 { LFUN_MENUWRITE, "buffer-write", N_("Save"), ReadOnly },
146                 { LFUN_WRITEAS, "buffer-write-as", N_("Save As"),
147                   ReadOnly },
148                 { LFUN_CANCEL, "cancel", N_("Cancel"), NoBuffer },
149                 { LFUN_INSET_CAPTION, "caption-insert", "", Noop },
150                 { LFUN_LEFT, "char-backward", N_("Go one char back"),
151                   ReadOnly },
152                 { LFUN_RIGHT, "char-forward", N_("Go one char forward"),
153                   ReadOnly },
154                 { LFUN_CITATION_CREATE, "citation-insert",
155                   N_("Insert citation"), Noop },
156                 { LFUN_CITATION_INSERT, "", "internal only", Noop },
157                 { LFUN_EXEC_COMMAND, "command-execute", "", NoBuffer },
158                 { LFUN_PREFIX, "command-prefix",
159                   N_("Execute command"), NoBuffer },
160                 { LFUN_SEQUENCE, "command-sequence", "", Noop },
161                 { LFUN_COPY, "copy", N_("Copy"), ReadOnly },
162                 { LFUN_CUT, "cut", N_("Cut"), Noop },
163                 { LFUN_DATE_INSERT, "date-insert", "", Noop },
164                 { LFUN_BACKSPACE, "delete-backward", "", Noop },
165                 { LFUN_BACKSPACE_SKIP, "delete-backward-skip", "", Noop },
166                 { LFUN_DELETE, "delete-forward", "", Noop },
167                 { LFUN_DELETE_SKIP, "delete-forward-skip", "", Noop },
168                 { LFUN_DEPTH_MIN, "depth-decrement",
169                   N_("Decrement environment depth"), Noop },
170                 { LFUN_DEPTH_PLUS, "depth-increment",
171                   N_("Increment environment depth"), Noop },
172                 { LFUN_DEPTH, "depth-next", 
173                   N_("Change environment depth"), Noop },
174                 { LFUN_LDOTS, "dots-insert", N_("Insert ... dots"), Noop },
175                 { LFUN_DOWN, "down", N_("Go down"), ReadOnly },
176                 { LFUN_DOWNSEL, "down-select",
177                   N_("Select next line"), ReadOnly },
178                 { LFUN_DROP_LAYOUTS_CHOICE, "drop-layouts-choice",
179                   N_("Choose Paragraph Environment"), ReadOnly },
180                 { LFUN_END_OF_SENTENCE, "end-of-sentence-period-insert",
181                   N_("Insert end of sentence period"), Noop },
182                 { LFUN_GOTOERROR, "error-next", N_("Go to next error"), Noop },
183                 { LFUN_REMOVEERRORS, "error-remove-all",
184                   N_("Remove all error boxes"), ReadOnly },
185                 { LFUN_INSET_ERT, "ert-insert",
186                   N_("Insert a new ERT Inset"), Noop },
187                 { LFUN_INSET_EXTERNAL, "external-insert",
188                   N_("Insert a new external inset"), Noop },
189                 { LFUN_FIGURE, "figure-insert", N_("Insert Graphics"), Noop },
190                 { LFUN_INSET_GRAPHICS, "graphics-insert",
191                   N_("Insert Graphics"), Noop },
192                 { LFUN_FILE_INSERT, "file-insert", "", Noop },
193                 { LFUN_FILE_INSERT_ASCII, "file-insert-ascii", _("Insert ASCII files as lines"), Noop },
194                 { LFUN_FILE_INSERT_ASCII_PARA, "file-insert-ascii-para", _("Insert ASCII file as a paragraph"), Noop },
195                 { LFUN_FILE_NEW, "file-new", "", NoBuffer },
196                 { LFUN_FILE_OPEN, "file-open", _("Open a file"), NoBuffer },
197                 { LFUN_MENUSEARCH, "find-replace", N_("Find & Replace"),
198                   ReadOnly },
199                 { LFUN_INSET_FLOAT, "float-insert", "Insert a Float", Noop },
200                 { LFUN_INSET_WIDE_FLOAT, "float-wide-insert",
201                   "Insert a wide Float", Noop },
202                 { LFUN_BOLD, "font-bold", N_("Toggle bold"), Noop },
203                 { LFUN_CODE, "font-code", N_("Toggle code style"), Noop },
204                 { LFUN_DEFAULT, "font-default", N_("Default font style"),
205                   Noop },
206                 { LFUN_EMPH, "font-emph", N_("Toggle emphasize"), Noop },
207                 { LFUN_FREE, "font-free", N_("Toggle user defined style"),
208                   Noop },
209                 { LFUN_NOUN, "font-noun", N_("Toggle noun style"), Noop },
210                 { LFUN_ROMAN, "font-roman", N_("Toggle roman font style"),
211                   Noop },
212                 { LFUN_SANS, "font-sans", N_("Toggle sans font style"), Noop },
213                 { LFUN_FONT_SIZE, "font-size", N_("Set font size"), Noop },
214                 { LFUN_FONT_STATE, "font-state", N_("Show font state"),
215                   ReadOnly },
216                 { LFUN_UNDERLINE, "font-underline",
217                   N_("Toggle font underline"), Noop },
218                 { LFUN_INSET_FOOTNOTE, "footnote-insert",
219                   N_("Insert Footnote"), Noop },
220                 { LFUN_RIGHTSEL, "forward-select", N_("Select next char"),
221                   ReadOnly },
222                 { LFUN_HFILL, "hfill-insert",
223                   N_("Insert horizontal fill"), Noop },
224                 { LFUN_HELP_OPEN, "help-open", N_("Open a Help file"), 
225                   NoBuffer|Argument},
226                 { LFUN_HTMLURL, "html-insert", "", Noop },
227                 { LFUN_HYPHENATION, "hyphenation-point-insert",
228                   N_("Insert hyphenation point"), Noop },
229                 { LFUN_LIGATURE_BREAK, "ligature-break-insert",
230                   N_("Insert ligature break"), Noop },
231                 { LFUN_INDEX_CREATE, "index-insert",
232                   N_("Insert index item"), Noop },
233                 { LFUN_INDEX_INSERT_LAST, "index-insert-last",
234                   N_("Insert last index item"), Noop },
235                 { LFUN_INDEX_PRINT, "index-print", N_("Insert index list"),
236                   Noop },
237                 { LFUN_KMAP_OFF, "keymap-off", N_("Turn off keymap"),
238                   ReadOnly },
239                 { LFUN_KMAP_PRIM, "keymap-primary",
240                   N_("Use primary keymap"), ReadOnly },
241                 { LFUN_KMAP_SEC, "keymap-secondary",
242                   N_("Use secondary keymap"), ReadOnly },
243                 { LFUN_KMAP_TOGGLE, "keymap-toggle", N_("Toggle keymap"),
244                   ReadOnly },
245                 { LFUN_INSERT_LABEL, "label-insert", N_("Insert Label"),
246                   Noop },
247                 { LFUN_LANGUAGE, "language", N_("Change language"), Noop },
248                 { LFUN_LATEX_LOG, "latex-view-log", N_("View LaTeX log"),
249                   ReadOnly },
250                 { LFUN_LAYOUT, "layout", "", Noop },
251                 { LFUN_LAYOUT_CHARACTER, "layout-character", "", Noop },
252                 { LFUN_LAYOUT_COPY, "layout-copy",
253                   N_("Copy paragraph environment type"), Noop },
254                 { LFUN_LAYOUT_DOCUMENT, "layout-document", "", ReadOnly },
255                 { LFUN_LAYOUT_PARAGRAPH, "layout-paragraph", "", ReadOnly },
256                 { LFUN_LAYOUT_PASTE, "layout-paste",
257                   N_("Paste paragraph environment type"), Noop },
258                 { LFUN_LAYOUT_PREAMBLE, "layout-preamble", "", ReadOnly },
259                 { LFUN_LAYOUT_TABULAR, "layout-tabular",
260                   N_("Open the tabular layout"), Noop },
261                 { LFUN_HOME, "line-begin",
262                   N_("Go to beginning of line"), ReadOnly },
263                 { LFUN_HOMESEL, "line-begin-select",
264                   N_("Select to beginning of line"), ReadOnly },
265                 { LFUN_DELETE_LINE_FORWARD, "line-delete-forward", "", Noop },
266                 { LFUN_END, "line-end", N_("Go to end of line"), ReadOnly },
267                 { LFUN_ENDSEL, "line-end-select",
268                   N_("Select to end of line"), ReadOnly },
269 #if 0
270                 { LFUN_INSET_LIST, "list-insert", "", Noop },
271 #endif
272                 { LFUN_QUIT, "lyx-quit", N_("Exit"), NoBuffer },
273                 { LFUN_INSET_MARGINAL, "marginalnote-insert",
274                   N_("Insert Marginalnote"), Noop },
275                 { LFUN_MARK_OFF, "mark-off", "", ReadOnly },
276                 { LFUN_MARK_ON, "mark-on", "", ReadOnly },
277                 { LFUN_SETMARK, "mark-toggle", "", ReadOnly },
278                 { LFUN_MATH_DELIM, "math-delim", "", Noop },
279                 { LFUN_MATH_DISPLAY, "math-display", "", Noop },
280                 { LFUN_GREEK, "math-greek", N_("Math Greek"), Noop },
281                 { LFUN_GREEK_TOGGLE, "math-greek-toggle", "", Noop },
282                 { LFUN_INSERT_MATH, "math-insert",
283                   N_("Insert math symbol"), Noop },
284                 { LFUN_SUBSCRIPT, "math-subscript", "", Noop },
285                 { LFUN_SUPERSCRIPT, "math-superscript", "", Noop },
286                 { LFUN_MATH_LIMITS, "math-limits", "", Noop },
287                 { LFUN_MATH_MACRO, "math-macro", "", Noop },
288                 { LFUN_MATH_MUTATE, "math-mutate", "", Noop },
289                 { LFUN_MATH_SPACE, "math-space", "", Noop },
290                 { LFUN_MATH_IMPORT_SELECTION, "math-import-selection", "", Noop },
291                 { LFUN_MATH_MACROARG, "math-macro-arg", "", Noop },
292                 { LFUN_INSERT_MATRIX, "math-matrix", "", Noop },
293                 { LFUN_MATH_MODE, "math-mode", N_("Math mode"), Noop },
294                 { LFUN_MATH_NONUMBER, "math-nonumber", "", Noop },
295                 { LFUN_MATH_NUMBER, "math-number", "", Noop },
296                 { LFUN_MATH_EXTERN, "math-extern", "", Noop },
297                 { LFUN_MATH_VALIGN, "math-valign", "", Noop },
298                 { LFUN_MATH_HALIGN, "math-halign", "", Noop },
299                 { LFUN_MATH_ROW_INSERT, "math-row-insert", "", Noop },
300                 { LFUN_MATH_ROW_DELETE, "math-row-delete", "", Noop },
301                 { LFUN_MATH_COLUMN_INSERT, "math-column-insert", "", Noop },
302                 { LFUN_MATH_COLUMN_DELETE, "math-column-delete", "", Noop },
303                 { LFUN_MATH_PANEL, "math-panel", "", Noop },
304                 { LFUN_MATH_SIZE, "math-size", "", Noop },
305                 { LFUN_MENU_OPEN_BY_NAME, "menu-open", "", NoBuffer },
306                 { LFUN_MENU_SEPARATOR, "menu-separator-insert", "", Noop },
307                 { LFUN_META_FAKE, "meta-prefix", "", NoBuffer },
308                 { LFUN_INSET_MINIPAGE, "minipage-insert", "", Noop },
309                 { LFUN_INSERT_NOTE, "note-insert", "", Noop },
310                 { LFUN_GOTONOTE, "note-next", "", ReadOnly },
311                 { LFUN_INSET_TOGGLE, "inset-toggle", 
312                   N_("toggle inset"), ReadOnly },
313                 { LFUN_DOWN_PARAGRAPH, "paragraph-down",
314                   N_("Go one paragraph down"), ReadOnly },
315                 { LFUN_DOWN_PARAGRAPHSEL, "paragraph-down-select",
316                   N_("Select next paragraph"), ReadOnly },
317                 { LFUN_GOTO_PARAGRAPH, "paragraph-goto", 
318                   N_("Go to paragraph"), ReadOnly },
319                 { LFUN_PARAGRAPH_SPACING, "paragraph-spacing", "", Noop },
320                 { LFUN_UP_PARAGRAPH, "paragraph-up",
321                   N_("Go one paragraph up"), ReadOnly },
322                 { LFUN_UP_PARAGRAPHSEL, "paragraph-up-select",
323                   N_("Select previous paragraph"), ReadOnly },
324                 { LFUN_PARENTINSERT, "parent-insert", "", Noop },
325                 { LFUN_PASTE, "paste", N_("Paste") , Noop },
326                 { LFUN_DIALOG_PREFERENCES, "dialog-preferences",
327                   N_("Edit Preferences"), NoBuffer },
328                 { LFUN_SAVEPREFERENCES, "preferences-save",
329                   N_("Save Preferences"), NoBuffer },
330                 { LFUN_PASTESELECTION, "primary-selection-paste", "", Noop },
331                 { LFUN_PROTECTEDSPACE, "protected-space-insert",
332                   N_("Insert protected space"), Noop },
333                 { LFUN_QUOTE, "quote-insert", N_("Insert quote"), Noop },
334                 { LFUN_RECONFIGURE, "reconfigure",
335                   N_("Reconfigure"), NoBuffer },
336                 { LFUN_REDO, "redo", N_("Redo"), Noop },
337                 { LFUN_REF_GOTO, "reference-goto", "", ReadOnly },
338                 { LFUN_REF_INSERT, "reference-insert",
339                   N_("Insert cross reference"), ReadOnly },
340                 { LFUN_REFERENCE_GOTO, "reference-next", "", ReadOnly },
341                 { LFUN_NEXT, "screen-down", "", ReadOnly },
342                 { LFUN_NEXTSEL, "screen-down-select", "", ReadOnly },
343                 { LFUN_SCREEN_FONT_UPDATE, "screen-font-update",
344                   "", NoBuffer },
345                 { LFUN_CENTER, "screen-recenter", "", ReadOnly },
346                 { LFUN_PRIOR, "screen-up", "", ReadOnly },
347                 { LFUN_PRIORSEL, "screen-up-select", "", ReadOnly },
348                 { LFUN_SCROLL_INSET, "inset-scroll", N_("Scroll inset"),
349                   ReadOnly },
350                 { LFUN_SELFINSERT, "self-insert", "", Noop },
351                 { LFUN_CHARATCURSOR, "server-char-after", "", ReadOnly },
352                 { LFUN_GETFONT, "server-get-font", "", ReadOnly },
353                 { LFUN_GETLAYOUT, "server-get-layout", "", ReadOnly },
354                 { LFUN_GETNAME, "server-get-name", "", ReadOnly },
355                 { LFUN_GETTIP, "server-get-tip", "", ReadOnly },
356                 { LFUN_GETXY, "server-get-xy", "", ReadOnly },
357                 { LFUN_GOTOFILEROW, "server-goto-file-row", "", Noop },
358                 { LFUN_NOTIFY, "server-notify", "", ReadOnly },
359                 { LFUN_SETXY, "server-set-xy", "", ReadOnly },
360                 { LFUN_SET_COLOR, "set-color", "", ReadOnly|NoBuffer },
361                 { LFUN_SPELLCHECK, "spellchecker", "", Noop },
362                 { LFUN_SHIFT_TAB, "tab-backward", "", Noop },
363                 { LFUN_TAB, "tab-forward", "", Noop },
364                 { LFUN_TABINSERT, "tab-insert", "", Noop },
365                 { LFUN_DIALOG_TABULAR_INSERT, "dialog-tabular-insert",
366                   N_("Insert Table"), Noop },
367                 { LFUN_TABULAR_FEATURE, "tabular-feature",
368                   N_("Tabular Features"), Noop },
369                 { LFUN_INSET_TABULAR, "tabular-insert",
370                   N_("Insert a new Tabular Inset"), Noop },
371                 { LFUN_INSET_TEXT, "text-insert",
372                   N_("Insert a new Text Inset"), Noop },
373 #if 0
374                 { LFUN_INSET_THEOREM, "theorem-insert", "", Noop },
375 #endif
376                 { LFUN_THESAURUS_ENTRY, "thesaurus-entry", N_("Open thesaurus"), ReadOnly },
377                 { LFUN_TOC_INSERT, "toc-insert",
378                   N_("Insert table of contents"), Noop },
379                 { LFUN_TOCVIEW, "toc-view",
380                   N_("View table of contents"), ReadOnly },
381                 { LFUN_TOGGLECURSORFOLLOW, "toggle-cursor-follows-scrollbar",
382                   N_("Toggle cursor does/doesn't follow the scrollbar"),
383                   ReadOnly },
384                 { LFUN_ADD_TO_TOOLBAR, "toolbar-add-to", "", NoBuffer },
385                 { LFUN_PUSH_TOOLBAR, "toolbar-push", "", NoBuffer },
386                 { LFUN_UNDO, "undo", N_("Undo"), Noop },
387                 { LFUN_UP, "up", "", ReadOnly },
388                 { LFUN_UPSEL, "up-select", "", ReadOnly },
389                 { LFUN_URL, "url-insert", "", Noop },
390                 { LFUN_INSERT_URL, "", "internal only", Noop },
391                 { LFUN_VC_CHECKIN, "vc-check-in", "", ReadOnly },
392                 { LFUN_VC_CHECKOUT, "vc-check-out", "", ReadOnly },
393                 { LFUN_VC_HISTORY, "vc-history", "", ReadOnly },
394                 { LFUN_VC_REGISTER, "vc-register",
395                   N_("Register document under version control"), ReadOnly },
396                 { LFUN_VC_REVERT, "vc-revert", "", ReadOnly },
397                 { LFUN_VC_UNDO, "vc-undo-last", "", ReadOnly },
398                 { LFUN_WORDLEFT, "word-backward", "", ReadOnly },
399                 { LFUN_WORDLEFTSEL, "word-backward-select", "", ReadOnly },
400                 { LFUN_CAPITALIZE_WORD, "word-capitalize", "", Noop },
401                 { LFUN_DELETE_WORD_BACKWARD, "word-delete-backward",
402                   "", Noop },
403                 { LFUN_DELETE_WORD_FORWARD, "word-delete-forward", "", Noop },
404                 { LFUN_WORDFINDBACKWARD, "word-find-backward", "", ReadOnly },
405                 { LFUN_WORDFINDFORWARD, "word-find-forward", "", ReadOnly },
406                 { LFUN_WORDRIGHT, "word-forward", "", ReadOnly },
407                 { LFUN_WORDRIGHTSEL, "word-forward-select", "", ReadOnly },
408                 { LFUN_LOWCASE_WORD, "word-lowcase", "", Noop },
409                 { LFUN_UPCASE_WORD, "word-upcase", "", Noop },
410                 { LFUN_MESSAGE, "message",
411                   N_("Show message in minibuffer"), NoBuffer },
412                 { LFUN_MESSAGE_PUSH, "message-push",
413                   N_("Push old message and show this one in minibuffer"),
414                   NoBuffer },
415                 { LFUN_MESSAGE_POP, "message-pop",
416                   N_("Pop old message and show it in the minibuffer"),
417                   NoBuffer },
418                 { LFUN_TRANSPOSE_CHARS, "chars-transpose", "", Noop },
419                 { LFUN_FLOAT_LIST, "float-list", "Insert a float list", Noop },
420                 { LFUN_ESCAPE, "escape", "", Noop },
421                 { LFUN_HELP_ABOUTLYX, "help-aboutlyx",
422                   N_("Display information about LyX"), NoBuffer },
423                 { LFUN_HELP_TEXINFO, "help-Texinfo",
424                   N_("Display information about the TeX installation"), NoBuffer },
425                 { LFUN_NOACTION, "", "", Noop }
426         };
427
428         int i = 0;
429         while (items[i].action != LFUN_NOACTION) {
430                 newFunc(items[i].action,
431                         items[i].name,
432                         _(items[i].helpText),
433                         items[i].attrib);
434                 ++i;
435         }
436
437         init = true;
438 }
439
440
441 LyXAction::LyXAction()
442 {
443         init();
444 }
445
446
447 // Search for an existent pseudoaction, return LFUN_UNKNOWN_ACTION
448 // if it doesn't exist.
449 kb_action LyXAction::searchActionArg(kb_action action, string const & arg) const
450 {
451         arg_map::const_iterator pit = lyx_arg_map.find(action);
452
453         if (pit == lyx_arg_map.end()) {
454                 // the action does not have any pseudoactions
455                 lyxerr[Debug::ACTION] << "Action " << action
456                                       << " does not have any pseudo actions."
457                                       << endl;
458                 return LFUN_UNKNOWN_ACTION;
459         }
460
461         arg_item::const_iterator aci = pit->second.find(arg);
462
463         if (aci == pit->second.end()) {
464                 // the action does not have any pseudoactions with this arg
465                 lyxerr[Debug::ACTION] 
466                         << "Action " << action
467                         << "does not have any pseudoactions with arg "
468                         << arg << endl;
469                 return LFUN_UNKNOWN_ACTION;
470         }
471
472         // pseudo action exist
473         lyxerr[Debug::ACTION] << "Pseudoaction exist[" 
474                               << action << '|' 
475                               << arg << "] = " << aci->second << endl;
476
477         return kb_action(aci->second);
478 }
479
480
481 // Returns a pseudo-action given an action and its argument.
482 int LyXAction::getPseudoAction(kb_action action, string const & arg) const
483 {
484         int const psdaction = searchActionArg(action, arg);
485
486         if (isPseudoAction(psdaction)) return psdaction;
487
488         static unsigned int pseudo_counter = LFUN_LASTACTION;
489
490         // Create new pseudo action.
491         pseudo_func tmp_p;
492         tmp_p.action = action;
493         tmp_p.arg = arg;
494         lyx_pseudo_map[++pseudo_counter] = tmp_p;
495
496         // First ensure that the action is in lyx_arg_map;
497         lyx_arg_map[action];
498         // get the arg_item map
499         arg_map::iterator ami = lyx_arg_map.find(action);
500         // put the new pseudo function in it
501         ami->second[arg] = pseudo_counter;
502
503         lyxerr[Debug::ACTION] << "Creating new pseudoaction "
504                               << pseudo_counter << " for [" << action
505                               << '|' << arg << "]\n";
506         
507         return pseudo_counter;
508 }
509
510
511 // Retrieves the real action and its argument.
512 // perhaps a pair<kb_action, string> should be returned?
513 kb_action LyXAction::retrieveActionArg(int pseudo, string & arg) const
514 {
515         arg.erase(); // clear it to be sure.
516
517         pseudo_map::const_iterator pit = lyx_pseudo_map.find(pseudo);
518
519         if (pit != lyx_pseudo_map.end()) {
520                 lyxerr[Debug::ACTION] << "Found the pseudoaction: ["
521                                       << pit->second.action << '|'
522                                       << pit->second.arg << '\n';
523                 arg = pit->second.arg;
524                 return pit->second.action;
525         } else {
526                 lyxerr << "Lyx Error: Unrecognized pseudo-action\n";
527                 return LFUN_UNKNOWN_ACTION;
528         }
529 }
530
531
532 // Returns an action tag from a string.
533 int LyXAction::LookupFunc(string const & func) const
534 {
535         if (func.empty()) return LFUN_NOACTION;
536
537         // split action and arg
538         string actstr;
539         string const argstr = split(func, actstr, ' ');
540         lyxerr[Debug::ACTION] << "Action: " << actstr << '\n';
541         lyxerr[Debug::ACTION] << "Arg   : " << argstr << '\n';
542
543         func_map::const_iterator fit = lyx_func_map.find(actstr);
544
545         if (!argstr.empty() && fit != lyx_func_map.end()) {
546                 // might be pseudo (or create one)
547                 return getPseudoAction(fit->second, argstr);
548         }
549
550         return fit != lyx_func_map.end() ? fit->second : LFUN_UNKNOWN_ACTION;
551 }
552
553
554 //#ifdef WITH_WARNINGS
555 //#warning Not working as it should.
556 //#endif
557 // I have no clue what is wrong with it... (Lgb)
558 int LyXAction::getApproxFunc(string const & func) const
559         // This func should perhaps also be able to return a list of all
560         // actions that has func as a prefix. That should actually be quite
561         // easy, just let it return a vector<int> or something.
562 {
563         int action = LookupFunc(func);
564         if (action == LFUN_UNKNOWN_ACTION) {
565                 // func is not an action, but perhaps it is
566                 // part of one...check if it is prefix if one of the
567                 // actions.
568                 // Checking for prefix is not so simple, but
569                 // using a simple bounding function gives
570                 // a similar result.  [ale 19981103]
571                 func_map::const_iterator fit = 
572                         lyx_func_map.lower_bound(func);
573                 
574                 if (fit != lyx_func_map.end()) {
575                         action =  fit->second;
576                 }
577         } else {  // Go get the next function
578                 func_map::const_iterator fit = 
579                         lyx_func_map.upper_bound(func);
580                 
581                 if (fit != lyx_func_map.end()) {
582                         action =  fit->second;
583                 }
584         }
585         
586         return action;
587 }
588
589
590 string const LyXAction::getApproxFuncName(string const & func) const
591 {
592         int const f = getApproxFunc(func);
593         // This will return empty string if f isn't an action.
594         return getActionName(f);
595 }
596
597
598 string const LyXAction::getActionName(int action) const
599 {
600         kb_action ac;
601         string arg;
602         if (isPseudoAction(action)) {
603                 ac = retrieveActionArg(action, arg);
604                 arg.insert(0, " ");
605         } else
606                 ac = static_cast<kb_action>(action);
607
608         info_map::const_iterator iit = lyx_info_map.find(ac);
609
610         if (iit != lyx_info_map.end()) {
611                 string ret(iit->second.name);
612                 ret += arg;
613                 return ret;
614         } else 
615                 return string();
616 }
617
618
619 // Returns one line help associated with a (pseudo)action, i.e. appends
620 // the argument of the action if necessary
621 string const LyXAction::helpText(int pseudoaction) const
622 {
623         string help, arg;
624         kb_action action;
625
626         if (isPseudoAction(pseudoaction)) 
627                 action = retrieveActionArg(pseudoaction, arg);
628         else 
629                 action = static_cast<kb_action>(pseudoaction);
630
631         info_map::const_iterator ici = lyx_info_map.find(action);
632         if (ici != lyx_info_map.end()) {
633                 if (lyxerr.debugging(Debug::ACTION)) {
634                         lyxerr << "Action: " << action << '\n';
635                         lyxerr << "   name: "
636                                << ici->second.name << '\n';
637                         lyxerr << " attrib: "
638                                << ici->second.attrib << '\n';
639                         lyxerr << "   help: "
640                                << ici->second.helpText << '\n';
641                 }
642                 help = ici->second.helpText;
643                 // if the is no help text use the name of the func instead.
644                 if (help.empty()) help = ici->second.name;
645         }
646
647         if (help.empty()) {
648                 help = _("No description available!");
649         } else if (!arg.empty()) {
650                 help += ' ';
651                 help += arg;
652         }
653
654         return help;
655 }
656
657
658 bool LyXAction::funcHasFlag(kb_action action, 
659                             LyXAction::func_attrib flag) const 
660 {
661         info_map::const_iterator ici = lyx_info_map.find(action);
662
663         if (ici != lyx_info_map.end()) {
664                 return ici->second.attrib & flag;
665         } else {
666                 // it really should exist, but...
667                 lyxerr << "LyXAction::funcHasFlag: "
668                         "No info about kb_action: " << action << '\n';
669                 return false;
670         }
671 }
672
673
674 LyXAction::const_func_iterator LyXAction::func_begin() const 
675 {
676         return lyx_func_map.begin();
677 }
678
679
680 LyXAction::const_func_iterator LyXAction::func_end() const 
681 {
682         return lyx_func_map.end();
683 }
684
685
686 ostream & operator<<(ostream & o, kb_action action)
687 {
688         return o << int(action);
689 }