]> git.lyx.org Git - lyx.git/blob - src/LyXAction.C
get rid of dead code, some new functions constify variables.
[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-2000 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 #if 1
22 // only to get access to NEW_INSETS
23 #include "lyxparagraph.h"
24 #endif
25
26 using std::ostream;
27 using std::endl;
28
29 /*  
30      NAMING RULES FOR USER-COMMANDS
31      Here's the set of rules to apply when a new command name is introduced:
32  
33      1) Use the object.event order. That is, use `word-forward'
34         instead of `forward-word'.
35      2) Don't introduce an alias for an already named object. Same for events.
36      3) Forward movement or focus is called `forward' (not `right').
37      4) Backward movement or focus is called `backward' (not `left').
38      5) Upward movement of focus is called `up'.
39      6) Downward movement is called `down'.
40      7) The begin of an object is called `begin' (not `start').
41      8) The end of an object is called `end'.
42  
43      (May 19 1996, 12:04, RvdK)
44  */
45  
46 // These are globals. 
47 LyXAction lyxaction;
48
49 void LyXAction::newFunc(kb_action action, string const & name,
50                         string const & helpText, unsigned int attrib)
51 {
52         lyx_func_map[name] = action;
53         func_info tmpinfo;
54         tmpinfo.name = name;
55         tmpinfo.attrib = attrib;
56         tmpinfo.helpText = helpText;
57         lyx_info_map[action] = tmpinfo;
58 }
59
60
61 struct lfun_item {
62         kb_action action;
63         char const * name;
64         char const * helpText;
65         unsigned int attrib;
66 };
67
68 void LyXAction::init()
69 {
70         // This function was changed to use the array below in initalization
71         // instead of calling newFunc numerous times because of compilation
72         // times. Since the array is not static we get back the memory it
73         // occupies after the init is completed. It compiles several
74         // magnitudes faster.
75         
76         static bool init = false;
77         if (init) return;
78
79         lfun_item items[] = {
80                 { LFUN_ACUTE, "accent-acute", "", Noop },
81                 { LFUN_BREVE, "accent-breve", "", Noop },
82                 { LFUN_CARON, "accent-caron", "", Noop },
83                 { LFUN_CEDILLA, "accent-cedilla", "", Noop },
84                 { LFUN_CIRCLE, "accent-circle", "", Noop },
85                 { LFUN_CIRCUMFLEX, "accent-circumflex", "", Noop },
86                 { LFUN_DOT, "accent-dot", "", Noop },
87                 { LFUN_GRAVE, "accent-grave", "", Noop },
88                 { LFUN_HUNG_UMLAUT, "accent-hungarian-umlaut", "", Noop },
89                 { LFUN_MACRON, "accent-macron", "", Noop },
90                 { LFUN_OGONEK, "accent-ogonek", "", Noop },
91                 { LFUN_SPECIAL_CARON, "accent-special-caron", "", Noop },
92                 { LFUN_TIE, "accent-tie", "", Noop },
93                 { LFUN_TILDE, "accent-tilde", "", Noop },
94                 { LFUN_UMLAUT, "accent-umlaut", "", Noop },
95                 { LFUN_UNDERBAR, "accent-underbar", "", Noop },
96                 { LFUN_UNDERDOT, "accent-underdot", "", Noop },
97                 { LFUN_VECTOR, "accent-vector", "", Noop },
98                 { LFUN_APPENDIX, "appendix", N_("Insert appendix"), Noop },
99                 { LFUN_APROPOS, "apropos", N_("Describe command"),
100                   NoBuffer|ReadOnly },
101                 { LFUN_LEFTSEL, "backward-select",
102                   N_("Select previous char"), ReadOnly },
103                 { LFUN_BIBDB_ADD, "bibtex-database-add", "", Noop },
104                 { LFUN_BIBDB_DEL, "bibtex-database-del", "", Noop },
105                 { LFUN_INSERT_BIBTEX, "bibtex-insert", N_("Insert bibtex"),
106                   Noop },
107                 { LFUN_BIBTEX_STYLE, "bibtex-style", "", Noop },
108                 { LFUN_BREAKLINE, "break-line", "", Noop },
109                 { LFUN_BREAKPARAGRAPH, "break-paragraph", "", Noop },
110                 { LFUN_BREAKPARAGRAPHKEEPLAYOUT, "break-paragraph-keep-layout",
111                   "", Noop },
112                 { LFUN_BREAKPARAGRAPH_SKIP, "break-paragraph-skip", "", Noop },
113                 { LFUN_BUILDPROG, "build-program", 
114                   N_("Build program"), ReadOnly },
115                 { LFUN_AUTOSAVE, "buffer-auto-save", N_("Autosave"), Noop },
116                 { LFUN_BEGINNINGBUF, "buffer-begin",
117                   N_("Go to beginning of document"), ReadOnly },
118                 { LFUN_BEGINNINGBUFSEL, "buffer-begin-select",
119                   N_("Select to beginning of document"), ReadOnly },
120                 { LFUN_CHILDINSERT, "buffer-child-insert", "", Noop },
121                 { LFUN_CHILDOPEN, "buffer-child-open", "", ReadOnly },
122                 { LFUN_RUNCHKTEX, "buffer-chktex", N_("Check TeX"), ReadOnly },
123                 { LFUN_CLOSEBUFFER, "buffer-close", N_("Close"), ReadOnly },
124                 { LFUN_ENDBUF, "buffer-end",
125                   N_("Go to end of document"), ReadOnly },
126                 { LFUN_ENDBUFSEL, "buffer-end-select",
127                   N_("Select to end of document"), ReadOnly },
128                 { LFUN_EXPORT, "buffer-export", N_("Export to"), ReadOnly },
129                 { LFUN_FAX, "buffer-fax", N_("Fax"), ReadOnly },
130 #ifndef NEW_INSETS
131                 { LFUN_INSERTFOOTNOTE, "buffer-float-insert", "", Noop },
132 #endif
133                 { LFUN_IMPORT, "buffer-import",
134                   N_("Import document"), NoBuffer },
135                 { LFUN_BUFFER_PRINT, "buffer-print-xtl", N_("Print"),
136                   ReadOnly },
137                 { LFUN_PRINTER_PARAMS_GET, "printer-params-get",
138                   N_("Get the printer parameters"), ReadOnly },
139                 { LFUN_MENUNEW, "buffer-new", N_("New document") , NoBuffer },
140                 { LFUN_MENUNEWTMPLT,"buffer-new-template",
141                   N_("New document from template"), NoBuffer },
142                 { LFUN_MENUOPEN, "buffer-open", N_("Open"), NoBuffer },
143                 { LFUN_MENUPRINT, "buffer-print", N_("Print"), ReadOnly },
144                 { LFUN_MENURELOAD, "buffer-reload",
145                   N_("Revert to saved"), ReadOnly },
146                 { LFUN_SWITCHBUFFER, "buffer-switch", 
147                   N_("Switch to an open document"), ReadOnly },
148                 { LFUN_READ_ONLY_TOGGLE, "buffer-toggle-read-only",
149                   N_("Toggle read-only"), ReadOnly },
150                 { LFUN_UPDATE, "buffer-update", N_("Update"), ReadOnly },
151                 { LFUN_PREVIEW, "buffer-view", N_("View") , ReadOnly },
152                 { LFUN_MENUWRITE, "buffer-write", N_("Save"), ReadOnly },
153                 { LFUN_MENUWRITEAS, "buffer-write-as", N_("Save As"),
154                   ReadOnly },
155                 { LFUN_CANCEL, "cancel", N_("Cancel"), NoBuffer },
156                 { LFUN_LEFT, "char-backward", N_("Go one char back"),
157                   ReadOnly },
158                 { LFUN_RIGHT, "char-forward", N_("Go one char forward"),
159                   ReadOnly },
160                 { LFUN_CITATION_CREATE, "citation-insert",
161                   N_("Insert citation"), Noop },
162                 { LFUN_EXEC_COMMAND, "command-execute", "", NoBuffer },
163                 { LFUN_PREFIX, "command-prefix",
164                   N_("Execute command"), NoBuffer },
165                 { LFUN_SEQUENCE, "command-sequence", "", Noop },
166                 { LFUN_COPY, "copy", N_("Copy"), ReadOnly },
167                 { LFUN_CUT, "cut", N_("Cut"), Noop },
168                 { LFUN_BACKSPACE, "delete-backward", "", Noop },
169                 { LFUN_BACKSPACE_SKIP, "delete-backward-skip", "", Noop },
170                 { LFUN_DELETE, "delete-forward", "", Noop },
171                 { LFUN_DELETE_SKIP, "delete-forward-skip", "", Noop },
172                 { LFUN_DEPTH_MIN, "depth-decrement",
173                   N_("Decrement environment depth"), Noop },
174                 { LFUN_DEPTH_PLUS, "depth-increment",
175                   N_("Increment environment depth"), Noop },
176                 { LFUN_DEPTH, "depth-next", 
177                   N_("Change environment depth"), Noop },
178                 { LFUN_LDOTS, "dots-insert", N_("Insert ... dots"), Noop },
179                 { LFUN_DOWN, "down", N_("Go down"), ReadOnly },
180                 { LFUN_DOWNSEL, "down-select",
181                   N_("Select next line"), ReadOnly },
182                 { LFUN_DROP_LAYOUTS_CHOICE, "drop-layouts-choice",
183                   N_("Choose Paragraph Environment"), ReadOnly },
184                 { LFUN_END_OF_SENTENCE, "end-of-sentence-period-insert",
185                   N_("Insert end of sentence period"), Noop },
186                 { LFUN_GOTOERROR, "error-next", N_("Go to next error"), Noop },
187                 { LFUN_REMOVEERRORS, "error-remove-all",
188                   N_("Remove all error boxes"), ReadOnly },
189                 { LFUN_INSET_ERT, "ert-insert",
190                   N_("Insert a new ERT Inset"), Noop },
191                 { LFUN_INSET_EXTERNAL, "external-insert",
192                   N_("Insert a new external inset"), Noop },
193                 { LFUN_FIGURE, "figure-insert", N_("Insert Figure"), Noop },
194                 { LFUN_INSET_GRAPHICS, "graphics-insert",
195                   N_("Insert Graphics"), Noop },
196                 { LFUN_FILE_INSERT, "file-insert", "", Noop },
197                 { LFUN_FILE_INSERT_ASCII, "file-insert-ascii", "", Noop },
198                 { LFUN_FILE_NEW, "file-new", "", NoBuffer },
199                 { LFUN_FILE_OPEN, "file-open", "", NoBuffer },
200                 { LFUN_MENUSEARCH, "find-replace", N_("Find & Replace"),
201                   ReadOnly },
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 #ifndef NEW_INSETS
219                 { LFUN_FOOTMELT, "footnote-insert", N_("Insert Footnote"),
220                   Noop },
221 #else
222                 { LFUN_INSET_FOOTNOTE, "footnote-insert",
223                   N_("Insert Footnote"), Noop },
224 #endif
225                 { LFUN_INSET_MARGINAL, "marginalnote-insert",
226                   N_("Insert Marginalnote"), Noop },
227                 { LFUN_RIGHTSEL, "forward-select", N_("Select next char"),
228                   ReadOnly },
229                 { LFUN_HFILL, "hfill-insert",
230                   N_("Insert horizontal fill"), Noop },
231                 { LFUN_HELP_COPYRIGHT, "help-copyright",
232                   N_("Display copyright information"), NoBuffer },
233                 { LFUN_HELP_CREDITS, "help-credits",
234                   N_("Show the list of people who helped writing LyX"), 
235                   NoBuffer},
236                 { LFUN_HELP_OPEN, "help-open", N_("Open a Help file"), 
237                   NoBuffer|Argument},
238                 { LFUN_HELP_VERSION, "help-version",
239                   N_("Show the actual LyX version"), NoBuffer},
240                 { LFUN_HTMLURL, "html-insert", "", Noop },
241                 { LFUN_HYPHENATION, "hyphenation-point-insert",
242                   N_("Insert hyphenation point"), Noop },
243                 { LFUN_INDEX_CREATE, "index-insert",
244                   N_("Insert index item"), Noop },
245                 { LFUN_INDEX_INSERT_LAST, "index-insert-last",
246                   N_("Insert last index item"), Noop },
247                 { LFUN_INDEX_PRINT, "index-print", N_("Insert index list"),
248                   Noop },
249                 { LFUN_KMAP_OFF, "keymap-off", N_("Turn off keymap"),
250                   ReadOnly },
251                 { LFUN_KMAP_PRIM, "keymap-primary",
252                   N_("Use primary keymap"), ReadOnly },
253                 { LFUN_KMAP_SEC, "keymap-secondary",
254                   N_("Use secondary keymap"), ReadOnly },
255                 { LFUN_KMAP_TOGGLE, "keymap-toggle", N_("Toggle keymap"),
256                   ReadOnly },
257                 { LFUN_INSERT_LABEL, "label-insert", N_("Insert Label"),
258                   Noop },
259                 { LFUN_LANGUAGE, "language", N_("Change language"), Noop },
260                 { LFUN_LATEX_LOG, "latex-view-log", N_("View LaTeX log"),
261                   ReadOnly },
262                 { LFUN_LAYOUT, "layout", "", Noop },
263                 { LFUN_LAYOUT_CHARACTER, "layout-character", "", Noop },
264                 { LFUN_LAYOUT_COPY, "layout-copy",
265                   N_("Copy paragraph environment type"), Noop },
266                 { LFUN_LAYOUT_DOCUMENT, "layout-document", "", ReadOnly },
267                 { LFUN_LAYOUTNO, "layout-number", "", Noop }, // internal only
268                 { LFUN_LAYOUT_PARAGRAPH, "layout-paragraph", "", ReadOnly },
269                 { LFUN_LAYOUT_PASTE, "layout-paste",
270                   N_("Paste paragraph environment type"), Noop },
271                 { LFUN_LAYOUT_PREAMBLE, "layout-preamble", "", ReadOnly },
272                 { LFUN_LAYOUT_SAVE_DEFAULT, "layout-save-default", "",
273                   ReadOnly },
274                 { LFUN_LAYOUT_TABULAR, "layout-tabular",
275                   N_("Open the tabular layout"), Noop },
276                 { LFUN_HOME, "line-begin",
277                   N_("Go to beginning of line"), ReadOnly },
278                 { LFUN_HOMESEL, "line-begin-select",
279                   N_("Select to beginning of line"), ReadOnly },
280                 { LFUN_DELETE_LINE_FORWARD, "line-delete-forward", "", Noop },
281                 { LFUN_END, "line-end", N_("Go to end of line"), ReadOnly },
282                 { LFUN_ENDSEL, "line-end-select",
283                   N_("Select to end of line"), ReadOnly },
284                 { LFUN_LOA_INSERT, "loa-insert",
285                   N_("Insert list of algorithms"), Noop },
286                 { LFUN_LOAVIEW, "loa-view",
287                   N_("View list of algorithms"), ReadOnly },
288                 { LFUN_LOF_INSERT, "lof-insert",
289                   N_("Insert list of figures"), Noop },
290                 { LFUN_LOFVIEW, "lof-view",
291                   N_("View list of figures"), ReadOnly },
292                 { LFUN_LOT_INSERT, "lot-insert",
293                   N_("Insert list of tables"), Noop },
294                 { LFUN_LOTVIEW, "lot-view",
295                   N_("View list of tables"), ReadOnly },
296                 { LFUN_QUIT, "lyx-quit", N_("Exit"), NoBuffer },
297 #ifndef NEW_INSETS
298                 { LFUN_MARGINMELT, "marginpar-insert",
299                   N_("Insert Margin note"), Noop },
300 #endif
301                 { LFUN_MARK_OFF, "mark-off", "", ReadOnly },
302                 { LFUN_MARK_ON, "mark-on", "", ReadOnly },
303                 { LFUN_SETMARK, "mark-toggle", "", ReadOnly },
304                 { LFUN_MATH_DELIM, "math-delim", "", Noop },
305                 { LFUN_MATH_DISPLAY, "math-display", "", Noop },
306                 { LFUN_GREEK, "math-greek", N_("Math Greek"), Noop },
307                 { LFUN_GREEK_TOGGLE, "math-greek-toggle", "", Noop },
308                 { LFUN_INSERT_MATH, "math-insert",
309                   N_("Insert math symbol"), Noop },
310                 { LFUN_MATH_LIMITS, "math-limits", "", Noop },
311                 { LFUN_MATH_MACRO, "math-macro", "", Noop },
312                 { LFUN_MATH_MACROARG, "math-macro-arg", "", Noop },
313                 { LFUN_INSERT_MATRIX, "math-matrix", "", Noop },
314                 { LFUN_MATH_MODE, "math-mode", N_("Math mode"), Noop },
315                 { LFUN_MATH_NONUMBER, "math-nonumber", "", Noop },
316                 { LFUN_MATH_NUMBER, "math-number", "", Noop },
317                 { LFUN_MATH_PANEL, "math-panel", "", Noop },
318                 { LFUN_MATH_SIZE, "math-size", "", Noop },
319                 { LFUN_MELT, "melt", N_("Melt"), Noop },
320                 { LFUN_MENU_OPEN_BY_NAME, "menu-open", "", NoBuffer },
321                 { LFUN_MENU_SEPARATOR, "menu-separator-insert", "", Noop },
322                 { LFUN_META_FAKE, "meta-prefix", "", NoBuffer },
323                 { LFUN_INSERT_NOTE, "note-insert", "", Noop },
324                 { LFUN_GOTONOTE, "note-next", "", ReadOnly },
325                 { LFUN_OPENSTUFF, "open-stuff", "", ReadOnly },
326                 { LFUN_DOWN_PARAGRAPH, "paragraph-down",
327                   N_("Go one paragraph down"), ReadOnly },
328                 { LFUN_DOWN_PARAGRAPHSEL, "paragraph-down-select",
329                   N_("Select next paragraph"), ReadOnly },
330                 { LFUN_GOTO_PARAGRAPH, "paragraph-goto", 
331                   N_("Go to paragraph"), ReadOnly },
332                 { LFUN_UP_PARAGRAPH, "paragraph-up",
333                   N_("Go one paragraph up"), ReadOnly },
334                 { LFUN_UP_PARAGRAPHSEL, "paragraph-up-select",
335                   N_("Select previous paragraph"), ReadOnly },
336                 { LFUN_PARENTINSERT, "parent-insert", "", Noop },
337                 { LFUN_PASTE, "paste", N_("Paste") , Noop },
338                 { LFUN_DIALOG_PREFERENCES, "dialog-preferences",
339                   N_("Edit Preferences"), NoBuffer },
340                 { LFUN_SAVEPREFERENCES, "preferences-save",
341                   N_("Save Preferences"), NoBuffer },
342                 { LFUN_PASTESELECTION, "primary-selection-paste", "", Noop },
343                 { LFUN_PROTECTEDSPACE, "protected-space-insert",
344                   N_("Insert protected space"), Noop },
345                 { LFUN_QUOTE, "quote-insert", N_("Insert quote"), Noop },
346                 { LFUN_RECONFIGURE, "reconfigure",
347                   N_("Reconfigure"), NoBuffer },
348                 { LFUN_REDO, "redo", N_("Redo"), Noop },
349                 { LFUN_REF_BACK, "reference-back", "", ReadOnly },
350                 { LFUN_REF_GOTO, "reference-goto", "", ReadOnly },
351                 { LFUN_REF_INSERT, "reference-insert",
352                   N_("Insert cross reference"), ReadOnly },
353                 { LFUN_NEXT, "screen-down", "", ReadOnly },
354                 { LFUN_NEXTSEL, "screen-down-select", "", ReadOnly },
355                 { LFUN_CENTER, "screen-recenter", "", ReadOnly },
356                 { LFUN_PRIOR, "screen-up", "", ReadOnly },
357                 { LFUN_PRIORSEL, "screen-up-select", "", ReadOnly },
358                 { LFUN_SCROLL_INSET, "inset-scroll", N_("Scroll inset"),
359                   ReadOnly },
360                 { LFUN_SELFINSERT, "self-insert", "", Noop },
361                 { LFUN_CHARATCURSOR, "server-char-after", "", ReadOnly },
362                 { LFUN_GETFONT, "server-get-font", "", ReadOnly },
363                 { LFUN_GETLATEX, "server-get-latex", "", ReadOnly },
364                 { LFUN_GETLAYOUT, "server-get-layout", "", ReadOnly },
365                 { LFUN_GETNAME, "server-get-name", "", ReadOnly },
366                 { LFUN_GETTIP, "server-get-tip", "", ReadOnly },
367                 { LFUN_GETXY, "server-get-xy", "", ReadOnly },
368                 { LFUN_GOTOFILEROW, "server-goto-file-row", "", Noop },
369                 { LFUN_NOTIFY, "server-notify", "", ReadOnly },
370                 { LFUN_SETXY, "server-set-xy", "", ReadOnly },
371                 { LFUN_SPELLCHECK, "spellchecker", "", Noop },
372                 { LFUN_INSERT_MATH, "symbol-insert", "", Noop },
373                 { LFUN_SHIFT_TAB, "tab-backward", "", Noop },
374                 { LFUN_TAB, "tab-forward", "", Noop },
375                 { LFUN_TABINSERT, "tab-insert", "", Noop },
376                 { LFUN_DIALOG_TABULAR_INSERT, "dialog-tabular-insert",
377                   N_("Open Insert Tabular Dialog"), Noop },
378                 { LFUN_TABULAR_FEATURE, "tabular-feature",
379                   N_("Tabular Features"), Noop },
380                 { LFUN_INSET_TABULAR, "tabular-insert",
381                   N_("Insert a new Tabular Inset"), Noop },
382                 { LFUN_TEX, "tex-mode", N_("Toggle TeX style"), Noop },
383                 { LFUN_INSET_TEXT, "text-insert",
384                   N_("Insert a new Text Inset"), Noop },
385                 { LFUN_TOC_INSERT, "toc-insert",
386                   N_("Insert table of contents"), Noop },
387                 { LFUN_TOCVIEW, "toc-view",
388                   N_("View table of contents"), ReadOnly },
389                 { LFUN_TOGGLECURSORFOLLOW, "toggle-cursor-follows-scrollbar",
390                   N_("Toggle cursor does/doesn't follow the scrollbar"),
391                   ReadOnly },
392                 { LFUN_ADD_TO_TOOLBAR, "toolbar-add-to", "", NoBuffer },
393                 { LFUN_PUSH_TOOLBAR, "toolbar-push", "", NoBuffer },
394                 { LFUN_UNDO, "undo", N_("Undo"), Noop },
395                 { LFUN_UP, "up", "", ReadOnly },
396                 { LFUN_UPSEL, "up-select", "", ReadOnly },
397                 { LFUN_URL, "url-insert", "", Noop },
398                 { LFUN_INSERT_URL, "", "", Noop },
399                 { LFUN_VC_CHECKIN, "vc-check-in", "", ReadOnly },
400                 { LFUN_VC_CHECKOUT, "vc-check-out", "", ReadOnly },
401                 { LFUN_VC_HISTORY, "vc-history", "", ReadOnly },
402                 { LFUN_VC_REGISTER, "vc-register",
403                   N_("Register document under version control"), ReadOnly },
404                 { LFUN_VC_REVERT, "vc-revert", "", ReadOnly },
405                 { LFUN_VC_UNDO, "vc-undo-last", "", ReadOnly },
406                 { LFUN_WORDLEFT, "word-backward", "", ReadOnly },
407                 { LFUN_WORDLEFTSEL, "word-backward-select", "", ReadOnly },
408                 { LFUN_CAPITALIZE_WORD, "word-capitalize", "", Noop },
409                 { LFUN_DELETE_WORD_BACKWARD, "word-delete-backward",
410                   "", Noop },
411                 { LFUN_DELETE_WORD_FORWARD, "word-delete-forward", "", Noop },
412                 { LFUN_WORDFINDBACKWARD, "word-find-backward", "", ReadOnly },
413                 { LFUN_WORDFINDFORWARD, "word-find-forward", "", ReadOnly },
414                 { LFUN_WORDRIGHT, "word-forward", "", ReadOnly },
415                 { LFUN_WORDRIGHTSEL, "word-forward-select", "", ReadOnly },
416                 { LFUN_LOWCASE_WORD, "word-lowcase", "", Noop },
417                 { LFUN_UPCASE_WORD, "word-upcase", "", Noop },
418                 { LFUN_DATE_INSERT, "date-insert", "", Noop },
419                 { LFUN_PARAGRAPH_SPACING, "paragraph-spacing", "", Noop },
420                 { LFUN_SET_COLOR, "set-color", "", Noop },
421                 { LFUN_INSET_MINIPAGE, "minipage-insert", "", Noop },
422                 { LFUN_INSET_FLOAT, "float-insert", "", Noop },
423                 { LFUN_INSET_LIST, "list-insert", "", Noop },
424                 { LFUN_INSET_THEOREM, "theorem-insert", "", Noop },
425                 { LFUN_INSET_CAPTION, "caption-insert", "", Noop },
426                 { LFUN_SCREEN_FONT_UPDATE, "screen-font-update", "", NoBuffer },
427                 { LFUN_NOACTION, "", "", Noop }
428         };
429
430         int i = 0;
431         while (items[i].action != LFUN_NOACTION) {
432                 newFunc(items[i].action,
433                         items[i].name,
434                         _(items[i].helpText),
435                         items[i].attrib);
436                 ++i;
437         }
438
439         init = true;
440 }
441
442
443 LyXAction::LyXAction()
444 {
445         init();
446 }
447
448
449 // Search for an existent pseudoaction, return LFUN_UNKNOWN_ACTION
450 // if it doesn't exist.
451 int LyXAction::searchActionArg(kb_action action, string const & arg) const
452 {
453         arg_map::const_iterator pit = lyx_arg_map.find(action);
454
455         if (pit == lyx_arg_map.end()) {
456                 // the action does not have any pseudoactions
457                 lyxerr[Debug::ACTION] << "Action " << action
458                                       << " does not have any pseudo actions."
459                                       << endl;
460                 return LFUN_UNKNOWN_ACTION;
461         }
462         
463         arg_item::const_iterator aci = (*pit).second.find(arg);
464
465         if (aci == (*pit).second.end()) {
466                 // the action does not have any pseudoactions with this arg
467                 lyxerr[Debug::ACTION] 
468                         << "Action " << action
469                         << "does not have any pseudoactions with arg "
470                         << arg << endl;
471                 return LFUN_UNKNOWN_ACTION;
472         }
473
474         // pseudo action exist
475         lyxerr[Debug::ACTION] << "Pseudoaction exist[" 
476                               << action << '|' 
477                               << arg << "] = " << (*aci).second << endl;
478
479         return (*aci).second;
480 }
481
482
483 // Returns a pseudo-action given an action and its argument.
484 int LyXAction::getPseudoAction(kb_action action, string const & arg) const
485 {
486         int psdaction = searchActionArg(action, arg);
487
488         if (isPseudoAction(psdaction)) return psdaction;
489
490         static unsigned int pseudo_counter = LFUN_LASTACTION;
491
492         // Create new pseudo action.
493         pseudo_func tmp_p;
494         tmp_p.action = action;
495         tmp_p.arg = arg;
496         lyx_pseudo_map[++pseudo_counter] = tmp_p;
497
498         // First ensure that the action is in lyx_arg_map;
499         lyx_arg_map[action];
500         // get the arg_item map
501         arg_map::iterator ami = lyx_arg_map.find(action);
502         // put the new pseudo function in it
503         (*ami).second[arg] = pseudo_counter;
504
505         lyxerr[Debug::ACTION] << "Creating new pseudoaction "
506                               << pseudo_counter << " for [" << action
507                               << '|' << arg << "]\n";
508         
509         return pseudo_counter;
510 }
511
512
513 // Retrieves the real action and its argument.
514 // perhaps a pair<kb_action, string> should be returned?
515 kb_action LyXAction::retrieveActionArg(int pseudo, string & arg) const
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 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 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 = " " +arg;
605         } 
606         else
607                 ac = static_cast<kb_action>(action);
608
609         info_map::const_iterator iit = lyx_info_map.find(ac);
610
611         if (iit != lyx_info_map.end())
612                 return (*iit).second.name + arg;
613         else 
614                 return string();
615 }
616
617
618 // Returns one line help associated with a (pseudo)action, i.e. appends
619 // the argument of the action if necessary
620 string const LyXAction::helpText(int pseudoaction) const
621 {
622         string help, arg;
623         kb_action action;
624
625         if (isPseudoAction(pseudoaction)) 
626                 action = retrieveActionArg(pseudoaction, arg);
627         else 
628                 action = static_cast<kb_action>(pseudoaction);
629
630         info_map::const_iterator ici = lyx_info_map.find(action);
631         if (ici != lyx_info_map.end()) {
632                 if (lyxerr.debugging(Debug::ACTION)) {
633                         lyxerr << "Action: " << action << '\n';
634                         lyxerr << "   name: "
635                                << (*ici).second.name << '\n';
636                         lyxerr << " attrib: "
637                                << (*ici).second.attrib << '\n';
638                         lyxerr << "   help: "
639                                << (*ici).second.helpText << '\n';
640                 }
641                 help = (*ici).second.helpText;
642                 // if the is no help text use the name of the func instead.
643                 if (help.empty()) help = (*ici).second.name;
644         }
645
646         if (help.empty()) {
647                 help = _("No description available!");
648         } else if (!arg.empty()) {
649                 help += ' ';
650                 help += arg;
651         }
652
653         return help;
654 }
655
656
657 bool LyXAction::funcHasFlag(kb_action action, 
658                             LyXAction::func_attrib flag) const 
659 {
660         info_map::const_iterator ici = lyx_info_map.find(action);
661
662         if (ici != lyx_info_map.end()) {
663                 return (*ici).second.attrib & flag;
664         } else {
665                 // it really should exist, but...
666                 lyxerr << "LyXAction::funcHasFlag: "
667                         "No info about kb_action: " << action << '\n';
668                 return false;
669         }
670
671 }
672
673
674 ostream & operator<<(ostream & o, kb_action action)
675 {
676         return o << int(action);
677 }