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