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