]> git.lyx.org Git - lyx.git/blob - src/lyxfunc.C
56464ec535f7a21d1ab8735e9fe00bef168f5abf
[lyx.git] / src / lyxfunc.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 "lyxfunc.h"
18 #include "version.h"
19 #include "kbmap.h"
20 #include "lyxrow.h"
21 #include "bufferlist.h"
22 #include "BufferView.h"
23 #include "lyxserver.h"
24 #include "intl.h"
25 #include "lyx_main.h"
26 #include "lyx_cb.h"
27 #include "LyXAction.h"
28 #include "debug.h"
29 #include "lyxrc.h"
30 #include "lyxtext.h"
31 #include "gettext.h"
32 #include "Lsstream.h"
33 #include "trans_mgr.h"
34 #include "layout.h"
35 #include "bufferview_funcs.h"
36 #include "frontends/LyXView.h"
37 #include "frontends/lyx_gui.h"
38 #include "vspace.h"
39 #include "FloatList.h"
40 #include "converter.h"
41 #include "exporter.h"
42 #include "importer.h"
43 #include "TextCache.h"
44 #include "lyxfind.h"
45 #include "undo_funcs.h"
46 #include "ParagraphParameters.h"
47
48 #include "insets/inseturl.h"
49 #include "insets/insetlatexaccent.h"
50 #include "insets/insettoc.h"
51 #include "insets/insetref.h"
52 #include "insets/insetparent.h"
53 #include "insets/insetindex.h"
54 #include "insets/insetinclude.h"
55 #include "insets/insetbib.h"
56 #include "insets/insetcite.h"
57 #include "insets/insettext.h"
58 #include "insets/insetert.h"
59 #include "insets/insetexternal.h"
60 #include "insets/insetgraphics.h"
61 #include "insets/insetfoot.h"
62 #include "insets/insetmarginal.h"
63 #include "insets/insetminipage.h"
64 #include "insets/insetfloat.h"
65 #if 0
66 #include "insets/insetlist.h"
67 #include "insets/insettheorem.h"
68 #endif
69 #include "insets/insettabular.h"
70 #include "insets/insetcaption.h"
71
72 #include "mathed/formulamacro.h"
73 #include "mathed/math_cursor.h"
74 #include "mathed/math_inset.h"
75
76 #include "frontends/FileDialog.h"
77 #include "frontends/Dialogs.h"
78 #include "frontends/Toolbar.h"
79 #include "frontends/Menubar.h"
80 #include "frontends/Alert.h"
81
82 #include "graphics/GraphicsCache.h"
83
84 #include "support/lyxalgo.h"
85 #include "support/LAssert.h"
86 #include "support/filetools.h"
87 #include "support/FileInfo.h"
88 #include "support/forkedcontr.h"
89 #include "support/lstrings.h"
90 #include "support/path.h"
91 #include "support/lyxfunctional.h"
92
93 #include <ctime>
94 #include <clocale>
95 #include <cstdlib>
96 #include <cctype>
97
98 #include <utility>
99 #include <algorithm>
100
101 using std::pair;
102 using std::make_pair;
103 using std::endl;
104 using std::find_if;
105 using std::vector;
106 using std::transform;
107 using std::back_inserter;
108
109 extern BufferList bufferlist;
110 extern LyXServer * lyxserver;
111 extern bool selection_possible;
112
113 extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
114
115 extern void show_symbols_form(LyXFunc *);
116
117 extern LyXAction lyxaction;
118 // (alkis)
119 extern tex_accent_struct get_accent(kb_action action);
120
121 extern void ShowLatexLog();
122
123
124 /* === globals =========================================================== */
125
126
127 LyXFunc::LyXFunc(LyXView * o)
128         : owner(o),
129         keyseq(toplevel_keymap.get(), toplevel_keymap.get()),
130         cancel_meta_seq(toplevel_keymap.get(), toplevel_keymap.get())
131 {
132         meta_fake_bit = key_modifier::none;
133         lyx_dead_action = LFUN_NOACTION;
134         lyx_calling_dead_action = LFUN_NOACTION;
135 }
136
137
138 inline
139 LyXText * LyXFunc::TEXT(bool flag = true) const
140 {
141         if (flag)
142                 return owner->view()->text;
143         return owner->view()->getLyXText();
144 }
145
146
147 inline
148 void LyXFunc::moveCursorUpdate(bool flag, bool selecting)
149 {
150         if (selecting || TEXT(flag)->selection.mark()) {
151                 TEXT(flag)->setSelection(owner->view().get());
152                 if (TEXT(flag)->bv_owner)
153                     owner->view()->toggleToggle();
154         }
155         owner->view()->update(TEXT(flag), BufferView::SELECT|BufferView::FITCUR);
156         owner->view()->showCursor();
157
158         owner->view()->switchKeyMap();
159 }
160
161
162 void LyXFunc::handleKeyFunc(kb_action action)
163 {
164         char c = keyseq.getLastKeyEncoded();
165
166         if (keyseq.length() > 1) {
167                 c = 0;
168         }
169
170         owner->getIntl()->getTransManager()
171                 .deadkey(c, get_accent(action).accent, TEXT(false));
172         // Need to clear, in case the minibuffer calls these
173         // actions
174         keyseq.clear();
175         // copied verbatim from do_accent_char
176         owner->view()->update(TEXT(false),
177                BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
178         TEXT(false)->selection.cursor = TEXT(false)->cursor;
179 }
180
181
182 void LyXFunc::processKeySym(LyXKeySymPtr keysym,
183                             key_modifier::state state)
184 {
185         string argument;
186
187         if (lyxerr.debugging(Debug::KEY)) {
188                 lyxerr << "KeySym is "
189                        << keysym->getSymbolName()
190                        << endl;
191         }
192         // Do nothing if we have nothing (JMarc)
193         if (!keysym->isOK()) {
194                 lyxerr[Debug::KEY] << "Empty kbd action (probably composing)"
195                                    << endl;
196                 return;
197         }
198
199         if (keysym->isModifier()) {
200                 return;
201         }
202
203         // Do a one-deep top-level lookup for
204         // cancel and meta-fake keys. RVDK_PATCH_5
205         cancel_meta_seq.reset();
206
207         int action = cancel_meta_seq.addkey(keysym, state);
208         if (lyxerr.debugging(Debug::KEY)) {
209                 lyxerr << "action first set to [" << action << "]" << endl;
210         }
211
212         // When not cancel or meta-fake, do the normal lookup.
213         // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
214         // Mostly, meta_fake_bit = key_modifier::none. RVDK_PATCH_5.
215         if ((action != LFUN_CANCEL) && (action != LFUN_META_FAKE)) {
216                 // remove Caps Lock and Mod2 as a modifiers
217                 action = keyseq.addkey(keysym, (state | meta_fake_bit));
218                 lyxerr[Debug::KEY] << "action now set to ["
219                         << action << "]" << endl;
220         }
221  
222         // Dont remove this unless you know what you are doing.
223         meta_fake_bit = key_modifier::none;
224
225         // can this happen now ?
226         if (action == LFUN_NOACTION) {
227                 action = LFUN_PREFIX;
228         }
229
230         if (lyxerr.debugging(Debug::KEY)) {
231                 lyxerr << "Key [action="
232                        << action << "]["
233                        << keyseq.print() << "]"
234                        << endl;
235         }
236
237         // already here we know if it any point in going further
238         // why not return already here if action == -1 and
239         // num_bytes == 0? (Lgb)
240
241         if (keyseq.length() > 1) {
242                 owner->message(keyseq.print());
243         }
244
245         if (action == LFUN_UNKNOWN_ACTION) {
246                 // It is unknown, but what if we remove all
247                 // the modifiers? (Lgb)
248                 action = keyseq.addkey(keysym, key_modifier::none);
249
250                 lyxerr[Debug::KEY] << "Removing modifiers...\n"
251                         << "Action now set to ["
252                         << action << "]" << endl;
253  
254                 if (action == LFUN_UNKNOWN_ACTION) {
255                         owner->message(_("Unknown function."));
256                         return;
257                 }
258         }
259
260         if (action == LFUN_SELFINSERT) {
261                 char c = keysym->getISOEncoded();
262                 string argument;
263
264                 if (c != 0)
265                         argument = c;
266
267                 dispatch(FuncRequest(LFUN_SELFINSERT, argument));
268                 lyxerr[Debug::KEY] << "SelfInsert arg[`"
269                                    << argument << "']" << endl;
270         } else {
271                 dispatch(action);
272         }
273 }
274
275
276 FuncStatus LyXFunc::getStatus(int ac) const
277 {
278         string argument;
279         kb_action action = lyxaction.retrieveActionArg(ac, argument);
280         return getStatus(FuncRequest(action, argument));
281 }
282
283
284 FuncStatus LyXFunc::getStatus(FuncRequest const & ev) const
285 {
286         FuncStatus flag;
287         Buffer * buf = owner->buffer();
288
289         if (ev.action == LFUN_NOACTION) {
290                 setStatusMessage(N_("Nothing to do"));
291                 return flag.disabled(true);
292         }
293
294         if (ev.action == LFUN_UNKNOWN_ACTION) {
295                 setStatusMessage(N_("Unknown action"));
296                 return flag.unknown(true);
297         }
298
299         // the default error message if we disable the command
300         setStatusMessage(N_("Command disabled"));
301
302         // Check whether we need a buffer
303         if (!lyxaction.funcHasFlag(ev.action, LyXAction::NoBuffer)) {
304                 // Yes we need a buffer, do we have one?
305                 if (buf) {
306                         // yes
307                         // Can we use a readonly buffer?
308                         if (buf->isReadonly() &&
309                             !lyxaction.funcHasFlag(ev.action,
310                                                    LyXAction::ReadOnly)) {
311                                 // no
312                                 setStatusMessage(N_("Document is read-only"));
313                                 flag.disabled(true);
314                         }
315                 } else {
316                         // no
317                         setStatusMessage(N_("Command not allowed with"
318                                            "out any document open"));
319                         return flag.disabled(true);
320                 }
321         }
322
323         UpdatableInset * tli = owner->view()->theLockingInset();
324
325         // I would really like to avoid having this switch and rather try to
326         // encode this in the function itself.
327         bool disable = false;
328         switch (ev.action) {
329         case LFUN_MENUPRINT:
330                 disable = !Exporter::IsExportable(buf, "dvi")
331                         || lyxrc.print_command == "none";
332                 break;
333         case LFUN_EXPORT:
334                 disable = ev.argument == "fax" &&
335                         !Exporter::IsExportable(buf, ev.argument);
336                 break;
337         case LFUN_UNDO:
338                 disable = buf->undostack.empty();
339                 break;
340         case LFUN_REDO:
341                 disable = buf->redostack.empty();
342                 break;
343 #ifndef HAVE_LIBAIKSAURUS
344         case LFUN_THESAURUS_ENTRY:
345                 disable = true;
346                 break;
347 #endif
348         case LFUN_RUNCHKTEX:
349                 disable = lyxrc.chktex_command == "none";
350                 break;
351         case LFUN_BUILDPROG:
352                 disable = !Exporter::IsExportable(buf, "program");
353                 break;
354
355         case LFUN_LAYOUT_CHARACTER:
356                 disable = tli && tli->lyxCode() == Inset::ERT_CODE;
357                 break;
358
359         case LFUN_LAYOUT_TABULAR:
360                 disable = !tli
361                         || (tli->lyxCode() != Inset::TABULAR_CODE
362                             && !tli->getFirstLockingInsetOfType(Inset::TABULAR_CODE));
363                 break;
364
365         case LFUN_LAYOUT:
366         case LFUN_LAYOUT_PARAGRAPH: {
367                 Inset * inset = TEXT(false)->cursor.par()->inInset();
368                 disable = inset && inset->forceDefaultParagraphs(inset);
369                 break;
370         }
371
372         case LFUN_TABULAR_FEATURE:
373                 disable = true;
374                 if (tli) {
375                         FuncStatus ret;
376                         //ret.disabled(true);
377                         if (tli->lyxCode() == Inset::TABULAR_CODE) {
378                                 ret = static_cast<InsetTabular *>(tli)
379                                         ->getStatus(ev.argument);
380                         } else if (tli->getFirstLockingInsetOfType(Inset::TABULAR_CODE)) {
381                                 ret = static_cast<InsetTabular *>
382                                         (tli->getFirstLockingInsetOfType(Inset::TABULAR_CODE))
383                                         ->getStatus(ev.argument);
384                         }
385                         flag |= ret;
386                         disable = false;
387                 } else {
388                         static InsetTabular inset(*owner->buffer(), 1, 1);
389                         FuncStatus ret;
390
391                         disable = true;
392                         ret = inset.getStatus(ev.argument);
393                         if (ret.onoff(true) || ret.onoff(false))
394                                 flag.setOnOff(false);
395                 }
396                 break;
397
398         case LFUN_VC_REGISTER:
399                 disable = buf->lyxvc.inUse();
400                 break;
401         case LFUN_VC_CHECKIN:
402                 disable = !buf->lyxvc.inUse() || buf->isReadonly();
403                 break;
404         case LFUN_VC_CHECKOUT:
405                 disable = !buf->lyxvc.inUse() || !buf->isReadonly();
406                 break;
407         case LFUN_VC_REVERT:
408         case LFUN_VC_UNDO:
409         case LFUN_VC_HISTORY:
410                 disable = !buf->lyxvc.inUse();
411                 break;
412         case LFUN_BOOKMARK_GOTO:
413                 disable =  !owner->view()->
414                         isSavedPosition(strToUnsignedInt(ev.argument));
415                 break;
416         case LFUN_INSET_TOGGLE: {
417                 LyXText * lt = owner->view()->getLyXText();
418                 disable = !(isEditableInset(lt->getInset())
419                             || (lt->inset_owner
420                                 && lt->inset_owner->owner()
421                                 && lt->inset_owner->owner()->isOpen()));
422                 break;
423         }
424         case LFUN_LATEX_LOG:
425                 disable = !IsFileReadable(buf->getLogName().second);
426                 break;
427         case LFUN_MATH_VALIGN:
428                 if (mathcursor && mathcursor->formula()->hullType() != "simple") {
429                         char align = mathcursor->valign();
430                         if (align == '\0') {
431                                 disable = true;
432                                 break;
433                         }
434                         if (ev.argument.empty()) {
435                                 flag.clear();
436                                 break;
437                         }
438                         if (!contains("tcb", ev.argument[0])) {
439                                 disable = true;
440                                 break;
441                         }
442                         flag.setOnOff(ev.argument[0] == align);
443                 } else
444                         disable = true;
445                 break;
446
447         case LFUN_MATH_HALIGN:
448                 if (mathcursor && mathcursor->formula()->hullType() != "simple") {
449                         char align = mathcursor->halign();
450                         if (align == '\0') {
451                                 disable = true;
452                                 break;
453                         }
454                         if (ev.argument.empty()) {
455                                 flag.clear();
456                                 break;
457                         }
458                         if (!contains("lcr", ev.argument[0])) {
459                                 disable = true;
460                                 break;
461                         }
462                         flag.setOnOff(ev.argument[0] == align);
463                 } else
464                         disable = true;
465                 break;
466
467         case LFUN_MATH_MUTATE:
468                 if (tli && (tli->lyxCode() == Inset::MATH_CODE))
469                         flag.setOnOff(mathcursor->formula()->hullType() == ev.argument);
470                 else
471                         disable = true;
472                 break;
473
474         // we just need to be in math mode to enable that
475         case LFUN_MATH_SIZE:
476         case LFUN_MATH_SPACE:
477         case LFUN_MATH_LIMITS:
478         case LFUN_MATH_NONUMBER:
479         case LFUN_MATH_NUMBER:
480                 disable = !mathcursor;
481                 break;
482
483         // we need to be math mode and a math array for that
484         // Hack: halign produces non-zero result iff we are in a math array
485         case LFUN_MATH_ROW_INSERT:
486         case LFUN_MATH_ROW_DELETE:
487         case LFUN_MATH_COLUMN_INSERT:
488         case LFUN_MATH_COLUMN_DELETE:
489                 disable = !mathcursor || !mathcursor->halign() ||
490                         mathcursor->formula()->hullType() == "simple";
491                 break;
492
493         default:
494                 break;
495         }
496
497         // the functions which insert insets
498         Inset::Code code = Inset::NO_CODE;
499         switch (ev.action) {
500         case LFUN_INSET_ERT:
501                 code = Inset::ERT_CODE;
502                 break;
503         case LFUN_INSET_GRAPHICS:
504                 code = Inset::GRAPHICS_CODE;
505                 break;
506         case LFUN_INSET_FOOTNOTE:
507                 code = Inset::FOOT_CODE;
508                 break;
509         case LFUN_TABULAR_INSERT:
510                 code = Inset::TABULAR_CODE;
511                 break;
512         case LFUN_INSET_EXTERNAL:
513                 code = Inset::EXTERNAL_CODE;
514                 break;
515         case LFUN_INSET_MARGINAL:
516                 code = Inset::MARGIN_CODE;
517                 break;
518         case LFUN_INSET_MINIPAGE:
519                 code = Inset::MINIPAGE_CODE;
520                 break;
521         case LFUN_INSET_FLOAT:
522         case LFUN_INSET_WIDE_FLOAT:
523                 code = Inset::FLOAT_CODE;
524                 break;
525         case LFUN_FLOAT_LIST:
526                 code = Inset::FLOAT_LIST_CODE;
527                 break;
528 #if 0
529         case LFUN_INSET_LIST:
530                 code = Inset::LIST_CODE;
531                 break;
532         case LFUN_INSET_THEOREM:
533                 code = Inset::THEOREM_CODE;
534                 break;
535 #endif
536         case LFUN_INSET_CAPTION:
537                 code = Inset::CAPTION_CODE;
538                 break;
539         case LFUN_INSERT_NOTE:
540                 code = Inset::NOTE_CODE;
541                 break;
542         case LFUN_INSERT_LABEL:
543                 code = Inset::LABEL_CODE;
544                 break;
545         case LFUN_REF_INSERT:
546                 code = Inset::REF_CODE;
547                 break;
548         case LFUN_CITATION_CREATE:
549         case LFUN_CITATION_INSERT:
550                 code = Inset::CITE_CODE;
551                 break;
552         case LFUN_INSERT_BIBTEX:
553                 code = Inset::BIBTEX_CODE;
554                 break;
555         case LFUN_INDEX_INSERT:
556                 code = Inset::INDEX_CODE;
557                 break;
558         case LFUN_INDEX_PRINT:
559                 code = Inset::INDEX_PRINT_CODE;
560                 break;
561         case LFUN_CHILD_INSERT:
562                 code = Inset::INCLUDE_CODE;
563                 break;
564         case LFUN_TOC_INSERT:
565                 code = Inset::TOC_CODE;
566                 break;
567         case LFUN_PARENTINSERT:
568                 code = Inset::PARENT_CODE;
569                 break;
570         case LFUN_HTMLURL:
571         case LFUN_URL:
572         case LFUN_INSERT_URL:
573                 code = Inset::URL_CODE;
574                 break;
575         case LFUN_QUOTE:
576                 // always allow this, since we will inset a raw quote
577                 // if an inset is not allowed.
578                 break;
579         case LFUN_HYPHENATION:
580         case LFUN_LIGATURE_BREAK:
581         case LFUN_HFILL:
582         case LFUN_MENU_SEPARATOR:
583         case LFUN_LDOTS:
584         case LFUN_END_OF_SENTENCE:
585                 code = Inset::SPECIALCHAR_CODE;
586                 break;
587         case LFUN_PROTECTEDSPACE:
588                 // slight hack: we know this is allowed in math mode
589                 if (!mathcursor)
590                         code = Inset::SPECIALCHAR_CODE;
591                 break;
592         default:
593                 break;
594         }
595         if (code != Inset::NO_CODE && tli && !tli->insetAllowed(code)) {
596                 disable = true;
597         }
598
599         if (disable)
600                 flag.disabled(true);
601
602         // A few general toggles
603         switch (ev.action) {
604         case LFUN_TOOLTIPS_TOGGLE:
605                 flag.setOnOff(owner->getDialogs()->tooltipsEnabled());
606                 break;
607
608         case LFUN_READ_ONLY_TOGGLE:
609                 flag.setOnOff(buf->isReadonly());
610                 break;
611         case LFUN_APPENDIX:
612                 flag.setOnOff(TEXT(false)->cursor.par()->params().startOfAppendix());
613                 break;
614         case LFUN_SWITCHBUFFER:
615                 // toggle on the current buffer, but do not toggle off
616                 // the other ones (is that a good idea?)
617                 if (ev.argument == buf->fileName())
618                         flag.setOnOff(true);
619                 break;
620         default:
621                 break;
622         }
623
624         // the font related toggles
625         if (!mathcursor) {
626                 LyXFont const & font = TEXT(false)->real_current_font;
627                 switch (ev.action) {
628                 case LFUN_EMPH:
629                         flag.setOnOff(font.emph() == LyXFont::ON);
630                         break;
631                 case LFUN_NOUN:
632                         flag.setOnOff(font.noun() == LyXFont::ON);
633                         break;
634                 case LFUN_BOLD:
635                         flag.setOnOff(font.series() == LyXFont::BOLD_SERIES);
636                         break;
637                 case LFUN_SANS:
638                         flag.setOnOff(font.family() == LyXFont::SANS_FAMILY);
639                         break;
640                 case LFUN_ROMAN:
641                         flag.setOnOff(font.family() == LyXFont::ROMAN_FAMILY);
642                         break;
643                 case LFUN_CODE:
644                         flag.setOnOff(font.family() == LyXFont::TYPEWRITER_FAMILY);
645                         break;
646                 default:
647                         break;
648                 }
649         } else {
650                 string tc = mathcursor->getLastCode();
651                 switch (ev.action) {
652                 case LFUN_BOLD:
653                         flag.setOnOff(tc == "mathbf");
654                         break;
655                 case LFUN_SANS:
656                         flag.setOnOff(tc == "mathsf");
657                         break;
658                 case LFUN_EMPH:
659                         flag.setOnOff(tc == "mathcal");
660                         break;
661                 case LFUN_ROMAN:
662                         flag.setOnOff(tc == "mathrm");
663                         break;
664                 case LFUN_CODE:
665                         flag.setOnOff(tc == "mathtt");
666                         break;
667                 case LFUN_NOUN:
668                         flag.setOnOff(tc == "mathbb");
669                         break;
670                 case LFUN_DEFAULT:
671                         flag.setOnOff(tc == "mathnormal");
672                         break;
673                 default:
674                         break;
675                 }
676         }
677
678         // this one is difficult to get right. As a half-baked
679         // solution, we consider only the first action of the sequence
680         if (ev.action == LFUN_SEQUENCE) {
681                 // argument contains ';'-terminated commands
682                 flag = getStatus(lyxaction.LookupFunc(token(ev.argument, ';', 0)));
683         }
684
685         return flag;
686 }
687
688
689 void LyXFunc::dispatch(string const & s, bool verbose)
690 {
691         int const action = lyxaction.LookupFunc(s);
692
693         if (action == LFUN_UNKNOWN_ACTION) {
694                 string const msg = string(_("Unknown function ("))
695                         + s + ")";
696                 owner->message(msg);
697                 return;
698         }
699
700         dispatch(action, verbose);
701 }
702
703
704 void LyXFunc::dispatch(int ac, bool verbose)
705 {
706         string argument;
707         kb_action const action = lyxaction.retrieveActionArg(ac, argument);
708         dispatch(FuncRequest(action, argument), verbose);
709 }
710
711
712
713 void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
714 {
715         lyxerr[Debug::ACTION] << "LyXFunc::dispatch: action[" << ev.action
716                               <<"] arg[" << ev.argument << "]" << endl;
717
718         // we have not done anything wrong yet.
719         errorstat = false;
720         dispatch_buffer.erase();
721
722 #ifdef NEW_DISPATCHER
723         // We try do call the most specific dispatcher first:
724         //  1. the lockinginset's dispatch
725         //  2. the bufferview's dispatch
726         //  3. the lyxview's dispatch
727 #endif
728
729         selection_possible = false;
730
731         if (owner->view()->available())
732                 owner->view()->hideCursor();
733
734         string argument = ev.argument;
735         kb_action action = ev.action;
736
737         // We cannot use this function here
738         if (getStatus(ev).disabled()) {
739                 lyxerr[Debug::ACTION] << "LyXFunc::dispatch: "
740                        << lyxaction.getActionName(action)
741                        << " [" << action << "] is disabled at this location"
742                        << endl;
743                 setErrorMessage(getStatusMessage());
744                 goto exit_with_message;
745         }
746
747         if (owner->view()->available() && owner->view()->theLockingInset()) {
748                 UpdatableInset::RESULT result;
749                 if ((action > 1) || ((action == LFUN_UNKNOWN_ACTION) &&
750                                      (!keyseq.deleted())))
751                 {
752                         UpdatableInset * inset = owner->view()->theLockingInset();
753 #if 1
754                         int inset_x;
755                         int dummy_y;
756                         inset->getCursorPos(owner->view().get(), inset_x, dummy_y);
757 #endif
758                         if ((action == LFUN_UNKNOWN_ACTION)
759                             && argument.empty()) {
760                                 argument = keyseq.getLastKeyEncoded();
761                         }
762                         // Undo/Redo is a bit tricky for insets.
763                         if (action == LFUN_UNDO) {
764                                 owner->view()->menuUndo();
765                                 goto exit_with_message;
766                         } else if (action == LFUN_REDO) {
767                                 owner->view()->menuRedo();
768                                 goto exit_with_message;
769                         } else if (((result=inset->
770                                      // Hand-over to inset's own dispatch:
771                                      localDispatch(owner->view().get(), FuncRequest(action, argument))) ==
772                                     UpdatableInset::DISPATCHED) ||
773                                    (result == UpdatableInset::DISPATCHED_NOUPDATE))
774                                 goto exit_with_message;
775                                         // If UNDISPATCHED, just soldier on
776                         else if (result == UpdatableInset::FINISHED) {
777                                 goto exit_with_message;
778                                 // We do not need special RTL handling here:
779                                 // FINISHED means that the cursor should be
780                                 // one position after the inset.
781                         } else if (result == UpdatableInset::FINISHED_RIGHT) {
782                                 TEXT()->cursorRight(owner->view().get());
783                                 moveCursorUpdate(true, false);
784                                 owner->view_state_changed();
785                                 goto exit_with_message;
786                         } else if (result == UpdatableInset::FINISHED_UP) {
787                                 if (TEXT()->cursor.irow()->previous()) {
788 #if 1
789                                         TEXT()->setCursorFromCoordinates(
790                                                 owner->view().get(), TEXT()->cursor.ix() + inset_x,
791                                                 TEXT()->cursor.iy() -
792                                                 TEXT()->cursor.irow()->baseline() - 1);
793                                         TEXT()->cursor.x_fix(TEXT()->cursor.x());
794 #else
795                                         TEXT()->cursorUp(owner->view().get());
796 #endif
797                                         moveCursorUpdate(true, false);
798                                         owner->view_state_changed();
799                                 } else {
800                                         owner->view()->update(TEXT(), BufferView::SELECT|BufferView::FITCUR);
801                                 }
802                                 goto exit_with_message;
803                         } else if (result == UpdatableInset::FINISHED_DOWN) {
804                                 if (TEXT()->cursor.irow()->next()) {
805 #if 1
806                                         TEXT()->setCursorFromCoordinates(
807                                                 owner->view().get(), TEXT()->cursor.ix() + inset_x,
808                                                 TEXT()->cursor.iy() -
809                                                 TEXT()->cursor.irow()->baseline() +
810                                                 TEXT()->cursor.irow()->height() + 1);
811                                         TEXT()->cursor.x_fix(TEXT()->cursor.x());
812 #else
813                                         TEXT()->cursorDown(owner->view().get());
814 #endif
815                                 } else {
816                                         TEXT()->cursorRight(owner->view().get());
817                                 }
818                                 moveCursorUpdate(true, false);
819                                 owner->view_state_changed();
820                                 goto exit_with_message;
821                         }
822 #warning I am not sure this is still right, please have a look! (Jug 20020417)
823                         else { // result == UNDISPATCHED
824                                 //setMessage(N_("Text mode"));
825                                 switch (action) {
826                                 case LFUN_UNKNOWN_ACTION:
827                                 case LFUN_BREAKPARAGRAPH:
828                                 case LFUN_BREAKLINE:
829                                         TEXT()->cursorRight(owner->view().get());
830                                         owner->view()->switchKeyMap();
831                                         owner->view_state_changed();
832                                         break;
833                                 case LFUN_RIGHT:
834                                         if (!TEXT()->cursor.par()->isRightToLeftPar(owner->buffer()->params)) {
835                                                 TEXT()->cursorRight(owner->view().get());
836                                                 moveCursorUpdate(true, false);
837                                                 owner->view_state_changed();
838                                         }
839                                         goto exit_with_message;
840                                 case LFUN_LEFT:
841                                         if (TEXT()->cursor.par()->isRightToLeftPar(owner->buffer()->params)) {
842                                                 TEXT()->cursorRight(owner->view().get());
843                                                 moveCursorUpdate(true, false);
844                                                 owner->view_state_changed();
845                                         }
846                                         goto exit_with_message;
847                                 case LFUN_DOWN:
848                                         if (TEXT()->cursor.row()->next())
849                                                 TEXT()->cursorDown(owner->view().get());
850                                         else
851                                                 TEXT()->cursorRight(owner->view().get());
852                                         moveCursorUpdate(true, false);
853                                         owner->view_state_changed();
854                                         goto exit_with_message;
855                                 default:
856                                         break;
857                                 }
858                         }
859                 }
860         }
861
862         switch (action) {
863
864         case LFUN_ESCAPE:
865         {
866                 if (!owner->view()->available()) break;
867                 // this function should be used always [asierra060396]
868                 UpdatableInset * tli =
869                         owner->view()->theLockingInset();
870                 if (tli) {
871                         UpdatableInset * lock = tli->getLockingInset();
872
873                         if (tli == lock) {
874                                 owner->view()->unlockInset(tli);
875                                 TEXT()->cursorRight(owner->view().get());
876                                 moveCursorUpdate(true, false);
877                                 owner->view_state_changed();
878                         } else {
879                                 tli->unlockInsetInInset(owner->view().get(),
880                                                         lock,
881                                                         true);
882                         }
883                         finishUndo();
884                         // Tell the paragraph dialog that we changed paragraph
885                         owner->getDialogs()->updateParagraph();
886                 }
887         }
888         break;
889
890                 // --- Misc -------------------------------------------
891         case LFUN_WORDFINDFORWARD  :
892         case LFUN_WORDFINDBACKWARD : {
893                 static string last_search;
894                 string searched_string;
895
896                 if (!argument.empty()) {
897                         last_search = argument;
898                         searched_string = argument;
899                 } else {
900                         searched_string = last_search;
901                 }
902                 bool fw = (action == LFUN_WORDFINDBACKWARD);
903                 if (!searched_string.empty()) {
904                         lyxfind::LyXFind(owner->view().get(), searched_string, fw);
905                 }
906 //              owner->view()->showCursor();
907         }
908         break;
909
910         case LFUN_PREFIX:
911         {
912                 if (owner->view()->available() && !owner->view()->theLockingInset()) {
913                         owner->view()->update(TEXT(),
914                                               BufferView::SELECT|BufferView::FITCUR);
915                 }
916                 owner->message(keyseq.printOptions());
917         }
918         break;
919
920         // --- Misc -------------------------------------------
921         case LFUN_EXEC_COMMAND:
922                 owner->focus_command_buffer();
923                 break;
924
925         case LFUN_CANCEL:                   // RVDK_PATCH_5
926                 keyseq.reset();
927                 meta_fake_bit = key_modifier::none;
928                 if (owner->view()->available())
929                         // cancel any selection
930                         dispatch(LFUN_MARK_OFF);
931                 setMessage(N_("Cancel"));
932                 break;
933
934         case LFUN_META_FAKE:                                 // RVDK_PATCH_5
935         {
936                 meta_fake_bit = key_modifier::alt;
937                 setMessage(keyseq.print());
938         }
939         break;
940
941         case LFUN_READ_ONLY_TOGGLE:
942                 if (owner->buffer()->lyxvc.inUse()) {
943                         owner->buffer()->lyxvc.toggleReadOnly();
944                 } else {
945                         owner->buffer()->setReadonly(
946                                 !owner->buffer()->isReadonly());
947                 }
948                 break;
949
950         case LFUN_CENTER: // this is center and redraw.
951                 owner->view()->center();
952                 break;
953
954                 // --- Menus -----------------------------------------------
955         case LFUN_MENUNEW:
956                 menuNew(argument, false);
957                 break;
958
959         case LFUN_MENUNEWTMPLT:
960                 menuNew(argument, true);
961                 break;
962
963         case LFUN_CLOSEBUFFER:
964                 closeBuffer();
965                 break;
966
967         case LFUN_MENUWRITE:
968                 if (!owner->buffer()->isUnnamed()) {
969                         ostringstream s1;
970                         s1 << _("Saving document") << ' '
971                            << MakeDisplayPath(owner->buffer()->fileName() + "...");
972                         owner->message(s1.str().c_str());
973                         MenuWrite(owner->view().get(), owner->buffer());
974                         s1 << _(" done.");
975                         owner->message(s1.str().c_str());
976                 } else
977                         WriteAs(owner->view().get(), owner->buffer());
978                 break;
979
980         case LFUN_WRITEAS:
981                 WriteAs(owner->view().get(), owner->buffer(), argument);
982                 break;
983
984         case LFUN_MENURELOAD:
985                 reloadBuffer();
986                 break;
987
988         case LFUN_UPDATE:
989                 Exporter::Export(owner->buffer(), argument, true);
990                 break;
991
992         case LFUN_PREVIEW:
993                 Exporter::Preview(owner->buffer(), argument);
994                 break;
995
996         case LFUN_BUILDPROG:
997                 Exporter::Export(owner->buffer(), "program", true);
998                 break;
999
1000         case LFUN_RUNCHKTEX:
1001                 MenuRunChktex(owner->buffer());
1002                 break;
1003
1004         case LFUN_MENUPRINT:
1005                 owner->getDialogs()->showPrint();
1006                 break;
1007
1008         case LFUN_EXPORT:
1009                 if (argument == "custom")
1010                         owner->getDialogs()->showSendto();
1011                 else
1012                         Exporter::Export(owner->buffer(), argument, false);
1013                 break;
1014
1015         case LFUN_IMPORT:
1016                 doImport(argument);
1017                 break;
1018
1019         case LFUN_QUIT:
1020                 QuitLyX();
1021                 break;
1022
1023         case LFUN_TOCVIEW:
1024 #if 0
1025         case LFUN_LOFVIEW:
1026         case LFUN_LOTVIEW:
1027         case LFUN_LOAVIEW:
1028 #endif
1029         {
1030                 InsetCommandParams p;
1031
1032 #if 0
1033                 if (action == LFUN_TOCVIEW)
1034 #endif
1035                         p.setCmdName("tableofcontents");
1036 #if 0
1037                 else if (action == LFUN_LOAVIEW)
1038                         p.setCmdName("listof{algorithm}{List of Algorithms}");
1039                 else if (action == LFUN_LOFVIEW)
1040                         p.setCmdName("listoffigures");
1041                 else
1042                         p.setCmdName("listoftables");
1043 #endif
1044                 owner->getDialogs()->createTOC(p.getAsString());
1045                 break;
1046         }
1047
1048         case LFUN_AUTOSAVE:
1049                 AutoSave(owner->view().get());
1050                 break;
1051
1052         case LFUN_UNDO:
1053                 owner->view()->menuUndo();
1054                 break;
1055
1056         case LFUN_REDO:
1057                 owner->view()->menuRedo();
1058                 break;
1059
1060         case LFUN_MENUSEARCH:
1061                 owner->getDialogs()->showSearch();
1062                 break;
1063
1064         case LFUN_REMOVEERRORS:
1065                 if (owner->view()->removeAutoInsets()) {
1066 #warning repaint() or update() or nothing ?
1067                         owner->view()->repaint();
1068                         owner->view()->fitCursor();
1069                 }
1070                 break;
1071
1072         case LFUN_DEPTH_MIN:
1073                 changeDepth(owner->view().get(), TEXT(false), -1);
1074                 break;
1075
1076         case LFUN_DEPTH_PLUS:
1077                 changeDepth(owner->view().get(), TEXT(false), 1);
1078                 break;
1079
1080         case LFUN_FREE:
1081                 owner->getDialogs()->setUserFreeFont();
1082                 break;
1083
1084         case LFUN_RECONFIGURE:
1085                 Reconfigure(owner->view().get());
1086                 break;
1087
1088 #if 0
1089         case LFUN_FLOATSOPERATE:
1090                 if (argument == "openfoot")
1091                         owner->view()->allFloats(1,0);
1092                 else if (argument == "closefoot")
1093                         owner->view()->allFloats(0,0);
1094                 else if (argument == "openfig")
1095                         owner->view()->allFloats(1,1);
1096                 else if (argument == "closefig")
1097                         owner->view()->allFloats(0,1);
1098                 break;
1099 #else
1100 #ifdef WITH_WARNINGS
1101 //#warning Find another implementation here (or another lyxfunc)!
1102 #endif
1103 #endif
1104         case LFUN_HELP_ABOUTLYX:
1105                 owner->getDialogs()->showAboutlyx();
1106                 break;
1107
1108         case LFUN_HELP_TEXINFO:
1109                 owner->getDialogs()->showTexinfo();
1110                 break;
1111
1112         case LFUN_HELP_OPEN:
1113         {
1114                 string const arg = argument;
1115                 if (arg.empty()) {
1116                         setErrorMessage(N_("Missing argument"));
1117                         break;
1118                 }
1119                 owner->prohibitInput();
1120                 string const fname = i18nLibFileSearch("doc", arg, "lyx");
1121                 if (fname.empty()) {
1122                         lyxerr << "LyX: unable to find documentation file `"
1123                                << arg << "'. Bad installation?" << endl;
1124                         owner->allowInput();
1125                         break;
1126                 }
1127                 ostringstream str;
1128                 str << _("Opening help file") << ' '
1129                     << MakeDisplayPath(fname) << "...";
1130                 owner->message(str.str().c_str());
1131                 owner->view()->buffer(bufferlist.loadLyXFile(fname, false));
1132                 owner->allowInput();
1133                 break;
1134         }
1135
1136                 // --- version control -------------------------------
1137         case LFUN_VC_REGISTER:
1138         {
1139                 if (!owner->buffer()->lyxvc.inUse())
1140                         owner->buffer()->lyxvc.registrer();
1141         }
1142         break;
1143
1144         case LFUN_VC_CHECKIN:
1145         {
1146                 if (owner->buffer()->lyxvc.inUse()
1147                     && !owner->buffer()->isReadonly())
1148                         owner->buffer()->lyxvc.checkIn();
1149         }
1150         break;
1151
1152         case LFUN_VC_CHECKOUT:
1153         {
1154                 if (owner->buffer()->lyxvc.inUse()
1155                     && owner->buffer()->isReadonly())
1156                         owner->buffer()->lyxvc.checkOut();
1157         }
1158         break;
1159
1160         case LFUN_VC_REVERT:
1161         {
1162                 owner->buffer()->lyxvc.revert();
1163         }
1164         break;
1165
1166         case LFUN_VC_UNDO:
1167         {
1168                 owner->buffer()->lyxvc.undoLast();
1169         }
1170         break;
1171
1172         case LFUN_VC_HISTORY:
1173         {
1174                 owner->getDialogs()->showVCLogFile();
1175                 break;
1176         }
1177
1178         // --- buffers ----------------------------------------
1179
1180         case LFUN_SWITCHBUFFER:
1181                 owner->view()->buffer(bufferlist.getBuffer(argument));
1182                 break;
1183
1184         case LFUN_FILE_NEW:
1185         {
1186                 // servercmd: argument must be <file>:<template>
1187                 Buffer * tmpbuf = NewFile(argument);
1188                 if (tmpbuf)
1189                         owner->view()->buffer(tmpbuf);
1190         }
1191         break;
1192
1193         case LFUN_FILE_OPEN:
1194                 open(argument);
1195                 break;
1196
1197         case LFUN_LATEX_LOG:
1198                 owner->getDialogs()->showLogFile();
1199                 break;
1200
1201         case LFUN_LAYOUT_DOCUMENT:
1202                 owner->getDialogs()->showDocument();
1203                 break;
1204
1205         case LFUN_LAYOUT_PARAGRAPH:
1206                 owner->getDialogs()->showParagraph();
1207                 break;
1208
1209         case LFUN_LAYOUT_CHARACTER:
1210                 owner->getDialogs()->showCharacter();
1211                 break;
1212
1213         case LFUN_LAYOUT_TABULAR:
1214             if (owner->view()->theLockingInset()) {
1215                 if (owner->view()->theLockingInset()->lyxCode()==Inset::TABULAR_CODE) {
1216                     InsetTabular * inset = static_cast<InsetTabular *>
1217                         (owner->view()->theLockingInset());
1218                     inset->openLayoutDialog(owner->view().get());
1219                 } else if (owner->view()->theLockingInset()->
1220                            getFirstLockingInsetOfType(Inset::TABULAR_CODE)!=0) {
1221                     InsetTabular * inset = static_cast<InsetTabular *>(
1222                         owner->view()->theLockingInset()->getFirstLockingInsetOfType(Inset::TABULAR_CODE));
1223                     inset->openLayoutDialog(owner->view().get());
1224                 }
1225             }
1226             break;
1227
1228         case LFUN_LAYOUT_PREAMBLE:
1229                 owner->getDialogs()->showPreamble();
1230                 break;
1231
1232         case LFUN_DROP_LAYOUTS_CHOICE:
1233                 owner->getToolbar()->openLayoutList();
1234                 break;
1235
1236         case LFUN_MENU_OPEN_BY_NAME:
1237                 owner->getMenubar()->openByName(argument);
1238                 break; // RVDK_PATCH_5
1239
1240         case LFUN_SPELLCHECK:
1241                 owner->getDialogs()->showSpellchecker();
1242                 break;
1243
1244         // --- lyxserver commands ----------------------------
1245
1246
1247         case LFUN_GETNAME:
1248                 setMessage(owner->buffer()->fileName());
1249                 lyxerr[Debug::INFO] << "FNAME["
1250                                << owner->buffer()->fileName()
1251                                << "] " << endl;
1252                 break;
1253
1254         case LFUN_NOTIFY:
1255         {
1256                 dispatch_buffer = keyseq.print();
1257                 lyxserver->notifyClient(dispatch_buffer);
1258         }
1259         break;
1260
1261         case LFUN_GOTOFILEROW:
1262         {
1263                 string file_name;
1264                 int row;
1265                 istringstream istr(argument.c_str());
1266                 istr >> file_name >> row;
1267                 // Must replace extension of the file to be .lyx and get full path
1268                 string const s(ChangeExtension(file_name, ".lyx"));
1269
1270                 // Either change buffer or load the file
1271                 if (bufferlist.exists(s)) {
1272                         owner->view()->buffer(bufferlist.getBuffer(s));
1273                 } else {
1274                         owner->view()->buffer(bufferlist.loadLyXFile(s));
1275                 }
1276
1277                 owner->view()->setCursorFromRow(row);
1278
1279                 owner->view()->center();
1280                 // see BufferView_pimpl::center()
1281                 owner->view()->updateScrollbar();
1282         }
1283         break;
1284
1285         case LFUN_GOTO_PARAGRAPH:
1286         {
1287                 istringstream istr(argument.c_str());
1288
1289                 int id;
1290                 istr >> id;
1291                 Paragraph * par = owner->buffer()->getParFromID(id);
1292                 if (par == 0) {
1293                         lyxerr[Debug::INFO] << "No matching paragraph found! ["
1294                                             << id << "]" << endl;
1295                         break;
1296                 } else {
1297                         lyxerr[Debug::INFO] << "Paragraph " << par->id()
1298                                             << " found." << endl;
1299                 }
1300
1301                 if (owner->view()->theLockingInset())
1302                         owner->view()->unlockInset(owner->view()->theLockingInset());
1303                 if (par->inInset()) {
1304                         par->inInset()->edit(owner->view().get());
1305                 }
1306                 // Set the cursor
1307                 owner->view()->getLyXText()->setCursor(owner->view().get(), par, 0);
1308                 owner->view()->switchKeyMap();
1309                 owner->view_state_changed();
1310
1311                 owner->view()->center();
1312                 // see BufferView_pimpl::center()
1313                 owner->view()->updateScrollbar();
1314         }
1315         break;
1316
1317         case LFUN_APROPOS:
1318         case LFUN_GETTIP:
1319         {
1320                 int const qa = lyxaction.LookupFunc(argument);
1321                 setMessage(lyxaction.helpText(static_cast<kb_action>(qa)));
1322         }
1323         break;
1324
1325         // --- insert characters ----------------------------------------
1326
1327         // ---  Mathed stuff. If we are here, there is no locked inset yet.
1328         case LFUN_MATH_EXTERN:
1329         case LFUN_MATH_NUMBER:
1330         case LFUN_MATH_NONUMBER:
1331         case LFUN_MATH_LIMITS:
1332         {
1333                 setErrorMessage(N_("This is only allowed in math mode!"));
1334         }
1335         break;
1336
1337         // passthrough hat and underscore outside mathed:
1338         case LFUN_SUBSCRIPT:
1339                 dispatch(FuncRequest(LFUN_SELFINSERT, "_"));
1340                 break;
1341         case LFUN_SUPERSCRIPT:
1342                 dispatch(FuncRequest(LFUN_SELFINSERT, "^"));
1343                 break;
1344
1345         case LFUN_MATH_PANEL:
1346                 owner->getDialogs()->showMathPanel();
1347                 break;
1348
1349         case LFUN_CITATION_CREATE:
1350         {
1351                 InsetCommandParams p("cite");
1352
1353                 if (!argument.empty()) {
1354                         // This should be set at source, ie when typing
1355                         // "citation-insert foo" in the minibuffer.
1356                         // Question: would pybibliographer also need to be
1357                         // changed. Suspect so. Leave as-is therefore.
1358                         if (contains(argument, "|")) {
1359                                 p.setContents(token(argument, '|', 0));
1360                                 p.setOptions( token(argument, '|', 1));
1361                         } else {
1362                                 p.setContents(argument);
1363                         }
1364                         dispatch(FuncRequest(LFUN_CITATION_INSERT, p.getAsString()));
1365                 } else
1366                         owner->getDialogs()->createCitation(p.getAsString());
1367         }
1368         break;
1369
1370         case LFUN_CHILDOPEN:
1371         {
1372                 string const filename =
1373                         MakeAbsPath(argument,
1374                                     owner->buffer()->filePath());
1375                 setMessage(N_("Opening child document ") +
1376                            MakeDisplayPath(filename) + "...");
1377                 owner->view()->savePosition(0);
1378                 if (bufferlist.exists(filename))
1379                         owner->view()->buffer(bufferlist.getBuffer(filename));
1380                 else
1381                         owner->view()->buffer(bufferlist.loadLyXFile(filename));
1382         }
1383         break;
1384
1385         case LFUN_TOGGLECURSORFOLLOW:
1386                 lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1387                 break;
1388
1389         case LFUN_KMAP_OFF:             // keymap off
1390                 owner->getIntl()->KeyMapOn(false);
1391                 break;
1392
1393         case LFUN_KMAP_PRIM:    // primary keymap
1394                 owner->getIntl()->KeyMapPrim();
1395                 break;
1396
1397         case LFUN_KMAP_SEC:             // secondary keymap
1398                 owner->getIntl()->KeyMapSec();
1399                 break;
1400
1401         case LFUN_KMAP_TOGGLE:  // toggle keymap
1402                 owner->getIntl()->ToggleKeyMap();
1403                 break;
1404
1405         case LFUN_SEQUENCE:
1406         {
1407                 // argument contains ';'-terminated commands
1408                 while (!argument.empty()) {
1409                         string first;
1410                         argument = split(argument, first, ';');
1411                         dispatch(first);
1412                 }
1413         }
1414         break;
1415
1416         case LFUN_DIALOG_PREFERENCES:
1417                 owner->getDialogs()->showPreferences();
1418                 break;
1419
1420         case LFUN_SAVEPREFERENCES:
1421         {
1422                 Path p(user_lyxdir);
1423                 lyxrc.write("preferences");
1424         }
1425         break;
1426
1427         case LFUN_SCREEN_FONT_UPDATE:
1428         {
1429                 // handle the screen font changes.
1430                 //
1431                 lyxrc.set_font_norm_type();
1432                 lyx_gui::update_fonts();
1433                 // Of course we should only do the resize and the textcache.clear
1434                 // if values really changed...but not very important right now. (Lgb)
1435                 // All visible buffers will need resize
1436                 owner->view()->resize();
1437                 owner->view()->repaint();
1438                 // We also need to empty the textcache so that
1439                 // the buffer will be formatted correctly after
1440                 // a zoom change.
1441                 textcache.clear();
1442         }
1443         break;
1444
1445         case LFUN_SET_COLOR:
1446         {
1447                 string lyx_name;
1448                 string const x11_name = split(argument, lyx_name, ' ');
1449                 if (lyx_name.empty() || x11_name.empty()) {
1450                         setErrorMessage(N_("Syntax: set-color <lyx_name>"
1451                                                 " <x11_name>"));
1452                         break;
1453                         }
1454
1455                 bool const graphicsbg_changed =
1456                         (lyx_name == lcolor.getLyXName(LColor::graphicsbg) &&
1457                          x11_name != lcolor.getX11Name(LColor::graphicsbg));
1458
1459                 if (!lcolor.setColor(lyx_name, x11_name)) {
1460                         static string const err1 (N_("Set-color \""));
1461                         static string const err2 (
1462                                 N_("\" failed - color is undefined "
1463                                    "or may not be redefined"));
1464                         setErrorMessage(_(err1) + lyx_name + _(err2));
1465                         break;
1466                 }
1467
1468                 lyx_gui::update_color(lcolor.getFromLyXName(lyx_name));
1469
1470                 if (graphicsbg_changed) {
1471 #ifdef WITH_WARNINGS
1472 #warning FIXME!! The graphics cache no longer has a changeDisplay method.
1473 #endif
1474 #if 0
1475                         grfx::GCache & gc = grfx::GCache::get();
1476                         gc.changeDisplay(true);
1477 #endif
1478                 }
1479
1480                 owner->view()->repaint();
1481                 break;
1482         }
1483
1484         case LFUN_MESSAGE:
1485                 owner->message(argument);
1486                 break;
1487
1488         case LFUN_FORKS_SHOW:
1489                 owner->getDialogs()->showForks();
1490                 break;
1491
1492         case LFUN_FORKS_KILL:
1493         {
1494                 if (!isStrInt(argument))
1495                         break;
1496
1497                 pid_t const pid = strToInt(argument);
1498                 ForkedcallsController & fcc = ForkedcallsController::get();
1499                 fcc.kill(pid);
1500                 break;
1501         }
1502
1503         case LFUN_TOOLTIPS_TOGGLE:
1504                 owner->getDialogs()->toggleTooltips();
1505                 break;
1506
1507         default:
1508                 // Then if it was none of the above
1509                 // Trying the BufferView::pimpl dispatch:
1510                 if (!owner->view()->dispatch(ev))
1511                         lyxerr << "A truly unknown func ["
1512                                << lyxaction.getActionName(ev.action) << "]!"
1513                                << endl;
1514                 break;
1515         } // end of switch
1516
1517 exit_with_message:
1518         sendDispatchMessage(getMessage(), ev, verbose);
1519 }
1520
1521
1522 void LyXFunc::sendDispatchMessage(string const & msg, FuncRequest const & ev, bool verbose)
1523 {
1524         owner->updateMenubar();
1525         owner->updateToolbar();
1526
1527         if (ev.action == LFUN_SELFINSERT || !verbose) {
1528                 lyxerr[Debug::ACTION] << "dispatch msg is " << msg << endl;
1529                 if (!msg.empty())
1530                         owner->message(msg);
1531                 return;
1532         }
1533
1534         string dispatch_msg = msg;
1535         if (!dispatch_msg.empty())
1536                 dispatch_msg += " ";
1537
1538         string comname = lyxaction.getActionName(ev.action);
1539
1540         int pseudoaction = ev.action;
1541         bool argsadded = false;
1542
1543         if (!ev.argument.empty()) {
1544                 // the pseudoaction is useful for the bindings
1545                 pseudoaction = lyxaction.searchActionArg(ev.action, ev.argument);
1546
1547                 if (pseudoaction == LFUN_UNKNOWN_ACTION) {
1548                         pseudoaction = ev.action;
1549                 } else {
1550                         comname += " " + ev.argument;
1551                         argsadded = true;
1552                 }
1553         }
1554
1555         string const shortcuts = toplevel_keymap->findbinding(pseudoaction);
1556
1557         if (!shortcuts.empty()) {
1558                 comname += ": " + shortcuts;
1559         } else if (!argsadded && !ev.argument.empty()) {
1560                 comname += " " + ev.argument;
1561         }
1562
1563         if (!comname.empty()) {
1564                 comname = rtrim(comname);
1565                 dispatch_msg += "(" + comname + ')';
1566         }
1567
1568         lyxerr[Debug::ACTION] << "verbose dispatch msg " << dispatch_msg << endl;
1569         if (!dispatch_msg.empty())
1570                 owner->message(dispatch_msg);
1571 }
1572
1573
1574 void LyXFunc::setupLocalKeymap()
1575 {
1576         keyseq.stdmap = keyseq.curmap = toplevel_keymap.get();
1577         cancel_meta_seq.stdmap = cancel_meta_seq.curmap = toplevel_keymap.get();
1578 }
1579
1580
1581 void LyXFunc::menuNew(string const & name, bool fromTemplate)
1582 {
1583         string initpath = lyxrc.document_path;
1584         string filename(name);
1585
1586         if (owner->view()->available()) {
1587                 string const trypath = owner->buffer()->filePath();
1588                 // If directory is writeable, use this as default.
1589                 if (IsDirWriteable(trypath))
1590                         initpath = trypath;
1591         }
1592
1593         static int newfile_number;
1594
1595         if (filename.empty()) {
1596                 filename = AddName(lyxrc.document_path,
1597                             "newfile" + tostr(++newfile_number) + ".lyx");
1598                 FileInfo fi(filename);
1599                 while (bufferlist.exists(filename) || fi.readable()) {
1600                         ++newfile_number;
1601                         filename = AddName(lyxrc.document_path,
1602                                     "newfile" + tostr(newfile_number) +
1603                                     ".lyx");
1604                         fi.newFile(filename);
1605                 }
1606         }
1607
1608         // The template stuff
1609         string templname;
1610         if (fromTemplate) {
1611                 FileDialog fileDlg(owner, _("Select template file"),
1612                         LFUN_SELECT_FILE_SYNC,
1613                         make_pair(string(_("Documents|#o#O")),
1614                                   string(lyxrc.document_path)),
1615                         make_pair(string(_("Templates|#T#t")),
1616                                   string(lyxrc.template_path)));
1617
1618                 FileDialog::Result result =
1619                         fileDlg.Select(lyxrc.template_path,
1620                                        _("*.lyx|LyX Documents (*.lyx)"));
1621
1622                 if (result.first == FileDialog::Later)
1623                         return;
1624
1625                 string const fname = result.second;
1626
1627                 if (fname.empty())
1628                         return;
1629                 templname = fname;
1630         }
1631
1632         owner->view()->buffer(bufferlist.newFile(filename, templname, !name.empty()));
1633 }
1634
1635
1636 void LyXFunc::open(string const & fname)
1637 {
1638         string initpath = lyxrc.document_path;
1639
1640         if (owner->view()->available()) {
1641                 string const trypath = owner->buffer()->filePath();
1642                 // If directory is writeable, use this as default.
1643                 if (IsDirWriteable(trypath))
1644                         initpath = trypath;
1645         }
1646
1647         string filename;
1648
1649         if (fname.empty()) {
1650                 FileDialog fileDlg(owner, _("Select document to open"),
1651                         LFUN_FILE_OPEN,
1652                         make_pair(string(_("Documents|#o#O")),
1653                                   string(lyxrc.document_path)),
1654                         make_pair(string(_("Examples|#E#e")),
1655                                   string(AddPath(system_lyxdir, "examples"))));
1656
1657                 FileDialog::Result result =
1658                         fileDlg.Select(initpath,
1659                                        "*.lyx|LyX Documents (*.lyx)");
1660
1661                 if (result.first == FileDialog::Later)
1662                         return;
1663
1664                 filename = result.second;
1665
1666                 // check selected filename
1667                 if (filename.empty()) {
1668                         owner->message(_("Canceled."));
1669                         return;
1670                 }
1671         } else
1672                 filename = fname;
1673
1674         // get absolute path of file and add ".lyx" to the filename if
1675         // necessary
1676         string const fullpath = FileSearch(string(), filename, "lyx");
1677         if (!fullpath.empty()) {
1678                 filename = fullpath;
1679         }
1680
1681         string const disp_fn(MakeDisplayPath(filename));
1682
1683         // if the file doesn't exist, let the user create one
1684         FileInfo const f(filename, true);
1685         if (!f.exist()) {
1686                 if (!Alert::askQuestion(_("No such file"), disp_fn, 
1687                         _("Start a new document with this filename ?"))) {
1688                         owner->message(_("Canceled"));
1689                         return;
1690                 }
1691                 // the user specifically chose this name. Believe them.
1692                 Buffer * buffer =  bufferlist.newFile(filename, "", true);
1693                 owner->view()->buffer(buffer);
1694                 return;
1695         }
1696
1697         ostringstream str;
1698         str << _("Opening document") << ' ' << disp_fn << "...";
1699
1700         owner->message(str.str().c_str());
1701
1702         Buffer * openbuf = bufferlist.loadLyXFile(filename);
1703         if (openbuf) {
1704                 owner->view()->buffer(openbuf);
1705                 ostringstream str;
1706                 str << _("Document") << ' ' << disp_fn << ' ' << _("opened.");
1707                 owner->message(str.str().c_str());
1708         } else {
1709                 ostringstream str;
1710                 str << _("Could not open document") << ' ' << disp_fn;
1711                 owner->message(str.str().c_str());
1712         }
1713 }
1714
1715
1716 void LyXFunc::doImport(string const & argument)
1717 {
1718         string format;
1719         string filename = split(argument, format, ' ');
1720
1721         lyxerr[Debug::INFO] << "LyXFunc::doImport: " << format
1722                             << " file: " << filename << endl;
1723
1724         // need user interaction
1725         if (filename.empty()) {
1726                 string initpath = lyxrc.document_path;
1727
1728                 if (owner->view()->available()) {
1729                         string const trypath = owner->buffer()->filePath();
1730                         // If directory is writeable, use this as default.
1731                         if (IsDirWriteable(trypath))
1732                                 initpath = trypath;
1733                 }
1734
1735                 string const text = _("Select ") + formats.prettyName(format)
1736                         + _(" file to import");
1737
1738                 FileDialog fileDlg(owner, text,
1739                         LFUN_IMPORT,
1740                         make_pair(string(_("Documents|#o#O")),
1741                                   string(lyxrc.document_path)),
1742                         make_pair(string(_("Examples|#E#e")),
1743                                   string(AddPath(system_lyxdir, "examples"))));
1744
1745                 string const extension = "*." + formats.extension(format)
1746                         + "| " + formats.prettyName(format)
1747                         + " (*." + formats.extension(format) + ")";
1748
1749                 FileDialog::Result result = fileDlg.Select(initpath,
1750                                                            extension);
1751
1752                 if (result.first == FileDialog::Later)
1753                         return;
1754
1755                 filename = result.second;
1756
1757                 // check selected filename
1758                 if (filename.empty())
1759                         owner->message(_("Canceled."));
1760         }
1761
1762         if (filename.empty())
1763                 return;
1764
1765         // get absolute path of file
1766         filename = MakeAbsPath(filename);
1767
1768         string const lyxfile = ChangeExtension(filename, ".lyx");
1769
1770         // Check if the document already is open
1771         if (lyxrc.use_gui && bufferlist.exists(lyxfile)) {
1772                 switch (Alert::askConfirmation(_("Document is already open:"),
1773                                         MakeDisplayPath(lyxfile, 50),
1774                                         _("Do you want to close that document now?\n"
1775                                           "('No' will just switch to the open version)")))
1776                         {
1777                         case 1:
1778                                 // If close is canceled, we cancel here too.
1779                                 if (!bufferlist.close(bufferlist.getBuffer(lyxfile)))
1780                                         return;
1781                                 break;
1782                         case 2:
1783                                 owner->view()->buffer(bufferlist.getBuffer(lyxfile));
1784                                 return;
1785                         case 3:
1786                                 owner->message(_("Canceled."));
1787                                 return;
1788                         }
1789         }
1790
1791         // if the file exists already, and we didn't do
1792         // -i lyx thefile.lyx, warn
1793         if (FileInfo(lyxfile, true).exist() && filename != lyxfile) {
1794                 if (!Alert::askQuestion(_("A document by the name"),
1795                         MakeDisplayPath(lyxfile), _("already exists. Overwrite?"))) {
1796                         owner->message(_("Canceled"));
1797                         return;
1798                 }
1799         }
1800
1801         Importer::Import(owner, filename, format);
1802 }
1803
1804
1805 void LyXFunc::reloadBuffer()
1806 {
1807         string const fn = owner->buffer()->fileName();
1808         if (bufferlist.close(owner->buffer()))
1809                 owner->view()->buffer(bufferlist.loadLyXFile(fn));
1810 }
1811
1812
1813 void LyXFunc::closeBuffer()
1814 {
1815         if (bufferlist.close(owner->buffer()) && !quitting) {
1816                 if (bufferlist.empty()) {
1817                         // need this otherwise SEGV may occur while trying to
1818                         // set variables that don't exist
1819                         // since there's no current buffer
1820                         owner->getDialogs()->hideBufferDependent();
1821                 } else {
1822                         owner->view()->buffer(bufferlist.first());
1823                 }
1824         }
1825 }
1826
1827
1828 // Each "owner" should have it's own message method. lyxview and
1829 // the minibuffer would use the minibuffer, but lyxserver would
1830 // send an ERROR signal to its client.  Alejandro 970603
1831 // This func is bit problematic when it comes to NLS, to make the
1832 // lyx servers client be language indepenent we must not translate
1833 // strings sent to this func.
1834 void LyXFunc::setErrorMessage(string const & m) const
1835 {
1836         dispatch_buffer = m;
1837         errorstat = true;
1838 }
1839
1840
1841 void LyXFunc::setMessage(string const & m) const
1842 {
1843         dispatch_buffer = m;
1844 }
1845
1846
1847 void LyXFunc::setStatusMessage(string const & m) const
1848 {
1849         status_buffer = m;
1850 }
1851
1852
1853 string const LyXFunc::view_status_message()
1854 {
1855         // When meta-fake key is pressed, show the key sequence so far + "M-".
1856         if (wasMetaKey()) {
1857                 return keyseq.print() + "M-";
1858         }
1859
1860         // Else, when a non-complete key sequence is pressed,
1861         // show the available options.
1862         if (keyseq.length() > 0 && !keyseq.deleted()) {
1863                 return keyseq.printOptions();
1864         }
1865
1866         if (!owner->view()->available())
1867                 return _("Welcome to LyX!");
1868
1869         return currentState(owner->view().get());
1870 }