]> git.lyx.org Git - lyx.git/blob - src/lyxfunc.C
set fill in fill(...) istead of returning it.
[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                                 LyXText * text = view()->text;
959                                 RowList::iterator const rit = text->cursorRow();
960                                 if (text->isFirstRow(text->cursorPar(), *rit)) {
961 #if 1
962                                         text->setCursorFromCoordinates(
963                                                 text->cursor.x() + inset_x,
964                                                 text->cursor.y() -
965                                                 rit->baseline() - 1);
966                                         text->cursor.x_fix(text->cursor.x());
967 #else
968                                         text->cursorUp(view());
969 #endif
970                                         moveCursorUpdate();
971                                 } else {
972                                         view()->update();
973                                 }
974                                 owner->clearMessage();
975                                 goto exit_with_message;
976                         }
977
978                         if (result == FINISHED_DOWN) {
979                                 LyXText * text = view()->text;
980                                 RowList::iterator const rit = text->cursorRow();
981                                 if (text->isLastRow(text->cursorPar(), *rit)) {
982 #if 1
983                                         text->setCursorFromCoordinates(
984                                                 text->cursor.x() + inset_x,
985                                                 text->cursor.y() -
986                                                 rit->baseline() +
987                                                 rit->height() + 1);
988                                         text->cursor.x_fix(text->cursor.x());
989 #else
990                                         text->cursorDown(view());
991 #endif
992                                 } else {
993                                         text->cursorRight(view());
994                                 }
995                                 moveCursorUpdate();
996                                 owner->clearMessage();
997                                 goto exit_with_message;
998                         }
999
1000 #warning I am not sure this is still right, please have a look! (Jug 20020417)
1001                         // result == UNDISPATCHED
1002                         //setMessage(N_("Text mode"));
1003                         switch (action) {
1004                         case LFUN_UNKNOWN_ACTION:
1005                         case LFUN_BREAKPARAGRAPH:
1006                         case LFUN_BREAKLINE:
1007                                 view()->text->cursorRight(view());
1008                                 view()->switchKeyMap();
1009                                 owner->view_state_changed();
1010                                 break;
1011                         case LFUN_RIGHT:
1012                                 if (!view()->text->cursorPar()->isRightToLeftPar(owner->buffer()->params())) {
1013                                         view()->text->cursorRight(view());
1014                                         moveCursorUpdate();
1015                                         owner->view_state_changed();
1016                                 }
1017                                 goto exit_with_message;
1018                         case LFUN_LEFT:
1019                                 if (view()->text->cursorPar()->isRightToLeftPar(owner->buffer()->params())) {
1020                                         view()->text->cursorRight(view());
1021                                         moveCursorUpdate();
1022                                         owner->view_state_changed();
1023                                 }
1024                                 goto exit_with_message;
1025                         case LFUN_DOWN: {
1026                                 LyXText * text = view()->text;
1027                                 if (text->isLastRow(text->cursorPar(), *text->cursorRow()))
1028                                         view()->text->cursorDown(view());
1029                                 else
1030                                         view()->text->cursorRight(view());
1031                                 moveCursorUpdate();
1032                                 owner->view_state_changed();
1033                                 goto exit_with_message;
1034                         }
1035                         default:
1036                                 break;
1037                         }
1038                 }
1039         }
1040
1041         switch (action) {
1042
1043         case LFUN_ESCAPE: {
1044                 if (!view()->available())
1045                         break;
1046                 // this function should be used always [asierra060396]
1047                 UpdatableInset * tli = view()->theLockingInset();
1048                 if (tli) {
1049                         UpdatableInset * lock = tli->getLockingInset();
1050
1051                         if (tli == lock) {
1052                                 view()->unlockInset(tli);
1053                                 view()->text->cursorRight(view());
1054                                 moveCursorUpdate();
1055                                 owner->view_state_changed();
1056                         } else {
1057                                 tli->unlockInsetInInset(view(), lock, true);
1058                         }
1059                         finishUndo();
1060                         // Tell the paragraph dialog that we changed paragraph
1061                         dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
1062                 }
1063                 break;
1064         }
1065
1066         case LFUN_WORDFINDFORWARD:
1067         case LFUN_WORDFINDBACKWARD: {
1068                 static string last_search;
1069                 string searched_string;
1070
1071                 if (!argument.empty()) {
1072                         last_search = argument;
1073                         searched_string = argument;
1074                 } else {
1075                         searched_string = last_search;
1076                 }
1077                 bool fw = (action == LFUN_WORDFINDFORWARD);
1078                 if (!searched_string.empty())
1079                         lyx::find::find(view(), searched_string, fw);
1080                 break;
1081         }
1082
1083         case LFUN_PREFIX:
1084                 if (view()->available() && !view()->theLockingInset())
1085                         view()->update();
1086                 owner->message(keyseq.printOptions());
1087                 break;
1088
1089         // --- Misc -------------------------------------------
1090         case LFUN_EXEC_COMMAND:
1091                 owner->focus_command_buffer();
1092                 break;
1093
1094         case LFUN_CANCEL:
1095                 keyseq.reset();
1096                 meta_fake_bit = key_modifier::none;
1097                 if (view()->available())
1098                         // cancel any selection
1099                         dispatch(FuncRequest(LFUN_MARK_OFF));
1100                 setMessage(N_("Cancel"));
1101                 break;
1102
1103         case LFUN_META_FAKE:
1104                 meta_fake_bit = key_modifier::alt;
1105                 setMessage(keyseq.print());
1106                 break;
1107
1108         case LFUN_READ_ONLY_TOGGLE:
1109                 if (owner->buffer()->lyxvc().inUse())
1110                         owner->buffer()->lyxvc().toggleReadOnly();
1111                 else
1112                         owner->buffer()->setReadonly(
1113                                 !owner->buffer()->isReadonly());
1114                 break;
1115
1116         case LFUN_CENTER: // this is center and redraw.
1117                 view()->center();
1118                 break;
1119
1120                 // --- Menus -----------------------------------------------
1121         case LFUN_MENUNEW:
1122                 menuNew(argument, false);
1123                 break;
1124
1125         case LFUN_MENUNEWTMPLT:
1126                 menuNew(argument, true);
1127                 break;
1128
1129         case LFUN_CLOSEBUFFER:
1130                 closeBuffer();
1131                 break;
1132
1133         case LFUN_MENUWRITE:
1134                 if (!owner->buffer()->isUnnamed()) {
1135                         string const str = bformat(_("Saving document %1$s..."),
1136                            MakeDisplayPath(owner->buffer()->fileName()));
1137                         owner->message(str);
1138                         MenuWrite(owner->buffer());
1139                         owner->message(str + _(" done."));
1140                 } else
1141                         WriteAs(owner->buffer());
1142                 break;
1143
1144         case LFUN_WRITEAS:
1145                 WriteAs(owner->buffer(), argument);
1146                 break;
1147
1148         case LFUN_MENURELOAD: {
1149                 string const file = MakeDisplayPath(view()->buffer()->fileName(), 20);
1150                 string text = bformat(_("Any changes will be lost. Are you sure "
1151                         "you want to revert to the saved version of the document %1$s?"), file);
1152                 int const ret = Alert::prompt(_("Revert to saved document?"),
1153                         text, 0, 1, _("&Revert"), _("&Cancel"));
1154
1155                 if (ret == 0)
1156                         view()->reload();
1157                 break;
1158         }
1159
1160         case LFUN_UPDATE:
1161                 Exporter::Export(owner->buffer(), argument, true);
1162                 view()->showErrorList(BufferFormat(*owner->buffer()));
1163                 break;
1164
1165         case LFUN_PREVIEW:
1166                 Exporter::Preview(owner->buffer(), argument);
1167                 view()->showErrorList(BufferFormat(*owner->buffer()));
1168                 break;
1169
1170         case LFUN_BUILDPROG:
1171                 Exporter::Export(owner->buffer(), "program", true);
1172                 view()->showErrorList(_("Build"));
1173                 break;
1174
1175         case LFUN_RUNCHKTEX:
1176                 owner->buffer()->runChktex();
1177                 view()->showErrorList(_("ChkTeX"));
1178                 break;
1179
1180         case LFUN_EXPORT:
1181                 if (argument == "custom")
1182                         owner->getDialogs().showSendto();
1183                 else {
1184                         Exporter::Export(owner->buffer(), argument, false);
1185                         view()->showErrorList(BufferFormat(*owner->buffer()));
1186                 }
1187                 break;
1188
1189         case LFUN_IMPORT:
1190                 doImport(argument);
1191                 break;
1192
1193         case LFUN_QUIT:
1194                 QuitLyX();
1195                 break;
1196
1197         case LFUN_TOCVIEW:
1198         {
1199                 InsetCommandParams p("tableofcontents");
1200                 string const data = InsetCommandMailer::params2string("toc", p);
1201                 owner->getDialogs().show("toc", data, 0);
1202                 break;
1203         }
1204
1205         case LFUN_AUTOSAVE:
1206                 AutoSave(view());
1207                 break;
1208
1209         case LFUN_UNDO:
1210                 view()->undo();
1211                 break;
1212
1213         case LFUN_REDO:
1214                 view()->redo();
1215                 break;
1216
1217         case LFUN_FREEFONT_APPLY:
1218                 apply_freefont(view());
1219                 break;
1220
1221         case LFUN_FREEFONT_UPDATE:
1222                 update_and_apply_freefont(view(), argument);
1223                 break;
1224
1225         case LFUN_RECONFIGURE:
1226                 Reconfigure(view());
1227                 break;
1228
1229 #if 0
1230         case LFUN_FLOATSOPERATE:
1231                 if (argument == "openfoot")
1232                         view()->allFloats(1,0);
1233                 else if (argument == "closefoot")
1234                         view()->allFloats(0,0);
1235                 else if (argument == "openfig")
1236                         view()->allFloats(1,1);
1237                 else if (argument == "closefig")
1238                         view()->allFloats(0,1);
1239                 break;
1240 #else
1241 #ifdef WITH_WARNINGS
1242 //#warning Find another implementation here (or another lyxfunc)!
1243 #endif
1244 #endif
1245         case LFUN_HELP_OPEN:
1246         {
1247                 string const arg = argument;
1248                 if (arg.empty()) {
1249                         setErrorMessage(N_("Missing argument"));
1250                         break;
1251                 }
1252                 string const fname = i18nLibFileSearch("doc", arg, "lyx");
1253                 if (fname.empty()) {
1254                         lyxerr << "LyX: unable to find documentation file `"
1255                                << arg << "'. Bad installation?" << endl;
1256                         break;
1257                 }
1258                 owner->message(bformat(_("Opening help file %1$s..."),
1259                         MakeDisplayPath(fname)));
1260                 view()->loadLyXFile(fname, false);
1261                 break;
1262         }
1263
1264                 // --- version control -------------------------------
1265         case LFUN_VC_REGISTER:
1266         {
1267                 if (!ensureBufferClean(view()))
1268                         break;
1269                 if (!owner->buffer()->lyxvc().inUse()) {
1270                         owner->buffer()->lyxvc().registrer();
1271                         view()->reload();
1272                 }
1273         }
1274         break;
1275
1276         case LFUN_VC_CHECKIN:
1277         {
1278                 if (!ensureBufferClean(view()))
1279                         break;
1280                 if (owner->buffer()->lyxvc().inUse()
1281                     && !owner->buffer()->isReadonly()) {
1282                         owner->buffer()->lyxvc().checkIn();
1283                         view()->reload();
1284                 }
1285         }
1286         break;
1287
1288         case LFUN_VC_CHECKOUT:
1289         {
1290                 if (!ensureBufferClean(view()))
1291                         break;
1292                 if (owner->buffer()->lyxvc().inUse()
1293                     && owner->buffer()->isReadonly()) {
1294                         owner->buffer()->lyxvc().checkOut();
1295                         view()->reload();
1296                 }
1297         }
1298         break;
1299
1300         case LFUN_VC_REVERT:
1301         {
1302                 owner->buffer()->lyxvc().revert();
1303                 view()->reload();
1304         }
1305         break;
1306
1307         case LFUN_VC_UNDO:
1308         {
1309                 owner->buffer()->lyxvc().undoLast();
1310                 view()->reload();
1311         }
1312         break;
1313
1314         // --- buffers ----------------------------------------
1315
1316         case LFUN_SWITCHBUFFER:
1317                 view()->buffer(bufferlist.getBuffer(argument));
1318                 break;
1319
1320         case LFUN_FILE_NEW:
1321                 NewFile(view(), argument);
1322                 break;
1323
1324         case LFUN_FILE_OPEN:
1325                 open(argument);
1326                 break;
1327
1328         case LFUN_LAYOUT_TABULAR:
1329             if (view()->theLockingInset()) {
1330                 if (view()->theLockingInset()->lyxCode()== InsetOld::TABULAR_CODE) {
1331                     InsetTabular * inset = static_cast<InsetTabular *>
1332                         (view()->theLockingInset());
1333                     inset->openLayoutDialog(view());
1334                 } else if (view()->theLockingInset()->
1335                            getFirstLockingInsetOfType(InsetOld::TABULAR_CODE)!=0) {
1336                     InsetTabular * inset = static_cast<InsetTabular *>(
1337                         view()->theLockingInset()->getFirstLockingInsetOfType(InsetOld::TABULAR_CODE));
1338                     inset->openLayoutDialog(view());
1339                 }
1340             }
1341             break;
1342
1343         case LFUN_DROP_LAYOUTS_CHOICE:
1344                 owner->getToolbar().openLayoutList();
1345                 break;
1346
1347         case LFUN_MENU_OPEN_BY_NAME:
1348                 owner->getMenubar().openByName(argument);
1349                 break; // RVDK_PATCH_5
1350
1351         // --- lyxserver commands ----------------------------
1352
1353
1354         case LFUN_GETNAME:
1355                 setMessage(owner->buffer()->fileName());
1356                 lyxerr[Debug::INFO] << "FNAME["
1357                                << owner->buffer()->fileName()
1358                                << "] " << endl;
1359                 break;
1360
1361         case LFUN_NOTIFY:
1362         {
1363                 dispatch_buffer = keyseq.print();
1364                 lyxserver->notifyClient(dispatch_buffer);
1365         }
1366         break;
1367
1368         case LFUN_GOTOFILEROW:
1369         {
1370                 string file_name;
1371                 int row;
1372                 istringstream istr(argument.c_str());
1373                 istr >> file_name >> row;
1374                 if (prefixIs(file_name, getTmpDir())) {
1375                         // Needed by inverse dvi search. If it is a file
1376                         // in tmpdir, call the apropriated function
1377                         view()->buffer(bufferlist.getBufferFromTmp(file_name));
1378                 } else {
1379                         // Must replace extension of the file to be .lyx
1380                         // and get full path
1381                         string const s(ChangeExtension(file_name, ".lyx"));
1382                         // Either change buffer or load the file
1383                         if (bufferlist.exists(s)) {
1384                                 view()->buffer(bufferlist.getBuffer(s));
1385                         } else {
1386                                 view()->loadLyXFile(s);
1387                         }
1388                 }
1389
1390                 view()->setCursorFromRow(row);
1391
1392                 view()->center();
1393                 // see BufferView_pimpl::center()
1394                 view()->updateScrollbar();
1395         }
1396         break;
1397
1398         case LFUN_GOTO_PARAGRAPH:
1399         {
1400                 istringstream istr(argument.c_str());
1401
1402                 int id;
1403                 istr >> id;
1404                 ParIterator par = owner->buffer()->getParFromID(id);
1405                 if (par == owner->buffer()->par_iterator_end()) {
1406                         lyxerr[Debug::INFO] << "No matching paragraph found! ["
1407                                             << id << ']' << endl;
1408                         break;
1409                 } else {
1410                         lyxerr[Debug::INFO] << "Paragraph " << par->id()
1411                                             << " found." << endl;
1412                 }
1413
1414                 if (view()->theLockingInset())
1415                         view()->unlockInset(view()->theLockingInset());
1416                 if (par->inInset()) {
1417                         FuncRequest cmd(view(), LFUN_INSET_EDIT, "left");
1418                         par->inInset()->dispatch(cmd);
1419                 }
1420                 // Set the cursor
1421                 view()->getLyXText()->setCursor(par.pit(), 0);
1422                 view()->switchKeyMap();
1423                 owner->view_state_changed();
1424
1425                 view()->center();
1426                 // see BufferView_pimpl::center()
1427                 view()->updateScrollbar();
1428         }
1429         break;
1430
1431         // --- insert characters ----------------------------------------
1432
1433         // ---  Mathed stuff. If we are here, there is no locked inset yet.
1434         case LFUN_MATH_EXTERN:
1435         case LFUN_MATH_NUMBER:
1436         case LFUN_MATH_NONUMBER:
1437         case LFUN_MATH_LIMITS:
1438         {
1439                 setErrorMessage(N_("This is only allowed in math mode!"));
1440         }
1441         break;
1442
1443         // passthrough hat and underscore outside mathed:
1444         case LFUN_SUBSCRIPT:
1445                 dispatch(FuncRequest(view(), LFUN_SELFINSERT, "_"));
1446                 break;
1447         case LFUN_SUPERSCRIPT:
1448                 dispatch(FuncRequest(view(), LFUN_SELFINSERT, "^"));
1449                 break;
1450
1451         case LFUN_DIALOG_SHOW: {
1452                 string const name = func.getArg(0);
1453                 string data = trim(func.argument.substr(name.size()));
1454
1455                 if (name == "character") {
1456                         data = freefont2string();
1457                         if (!data.empty())
1458                                 owner->getDialogs().show("character", data);
1459                 } else if (name == "document")
1460                         owner->getDialogs().showDocument();
1461                 else if (name == "findreplace")
1462                         owner->getDialogs().showSearch();
1463                 else if (name == "forks")
1464                         owner->getDialogs().showForks();
1465                 else if (name == "preamble")
1466                         owner->getDialogs().showPreamble();
1467                 else if (name == "preferences")
1468                         owner->getDialogs().showPreferences();
1469                 else if (name == "print")
1470                         owner->getDialogs().showPrint();
1471                 else if (name == "spellchecker")
1472                         owner->getDialogs().showSpellchecker();
1473                 else
1474                         owner->getDialogs().show(name, data);
1475                 break;
1476         }
1477
1478         case LFUN_DIALOG_SHOW_NEW_INSET: {
1479                 string const & name = argument;
1480                 string data;
1481                 if (name == "bibitem" ||
1482                     name == "bibtex" ||
1483                     name == "include" ||
1484                     name == "index" ||
1485                     name == "ref" ||
1486                     name == "toc" ||
1487                     name == "url") {
1488                         InsetCommandParams p(name);
1489                         data = InsetCommandMailer::params2string(name, p);
1490                 } else if (name == "citation") {
1491                         InsetCommandParams p("cite");
1492                         data = InsetCommandMailer::params2string(name, p);
1493                 }
1494                 owner->getDialogs().show(name, data, 0);
1495         }
1496         break;
1497
1498         case LFUN_DIALOG_SHOW_NEXT_INSET: {
1499         }
1500         break;
1501
1502         case LFUN_INSET_DIALOG_SHOW: {
1503                 LyXText * lt = view()->getLyXText();
1504                 InsetOld * inset = lt->getInset();
1505                 if (inset) {
1506                         FuncRequest cmd(view(), LFUN_INSET_DIALOG_SHOW);
1507                         inset->dispatch(cmd);
1508                 }
1509         }
1510         break;
1511
1512         case LFUN_DIALOG_UPDATE: {
1513                 string const & name = argument;
1514                 // Can only update a dialog connected to an existing inset
1515                 InsetBase * inset = owner->getDialogs().getOpenInset(name);
1516                 if (inset) {
1517                         FuncRequest fr(view(), LFUN_INSET_DIALOG_UPDATE,
1518                                        func.argument);
1519                         inset->dispatch(fr);
1520                 } else if (name == "paragraph") {
1521                         dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
1522                 }
1523         }
1524         break;
1525
1526         case LFUN_DIALOG_HIDE:
1527                 Dialogs::hide(argument, 0);
1528                 break;
1529
1530         case LFUN_DIALOG_DISCONNECT_INSET:
1531                 owner->getDialogs().disconnect(argument);
1532                 break;
1533
1534         case LFUN_CHILDOPEN:
1535         {
1536                 string const filename =
1537                         MakeAbsPath(argument, owner->buffer()->filePath());
1538                 setMessage(N_("Opening child document ") +
1539                            MakeDisplayPath(filename) + "...");
1540                 view()->savePosition(0);
1541                 if (bufferlist.exists(filename))
1542                         view()->buffer(bufferlist.getBuffer(filename));
1543                 else
1544                         view()->loadLyXFile(filename);
1545         }
1546         break;
1547
1548         case LFUN_TOGGLECURSORFOLLOW:
1549                 lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1550                 break;
1551
1552         case LFUN_KMAP_OFF:
1553                 owner->getIntl().KeyMapOn(false);
1554                 break;
1555
1556         case LFUN_KMAP_PRIM:
1557                 owner->getIntl().KeyMapPrim();
1558                 break;
1559
1560         case LFUN_KMAP_SEC:
1561                 owner->getIntl().KeyMapSec();
1562                 break;
1563
1564         case LFUN_KMAP_TOGGLE:
1565                 owner->getIntl().ToggleKeyMap();
1566                 break;
1567
1568         case LFUN_SEQUENCE:
1569         {
1570                 // argument contains ';'-terminated commands
1571                 while (!argument.empty()) {
1572                         string first;
1573                         argument = split(argument, first, ';');
1574                         dispatch(lyxaction.lookupFunc(first));
1575                 }
1576         }
1577         break;
1578
1579         case LFUN_SAVEPREFERENCES:
1580         {
1581                 Path p(user_lyxdir());
1582                 lyxrc.write("preferences");
1583         }
1584         break;
1585
1586         case LFUN_SCREEN_FONT_UPDATE:
1587         {
1588                 // handle the screen font changes.
1589                 lyxrc.set_font_norm_type();
1590                 lyx_gui::update_fonts();
1591                 // All visible buffers will need resize
1592                 view()->resize();
1593                 view()->update();
1594         }
1595         break;
1596
1597         case LFUN_SET_COLOR:
1598         {
1599                 string lyx_name;
1600                 string const x11_name = split(argument, lyx_name, ' ');
1601                 if (lyx_name.empty() || x11_name.empty()) {
1602                         setErrorMessage(N_("Syntax: set-color <lyx_name>"
1603                                                 " <x11_name>"));
1604                         break;
1605                         }
1606
1607                 bool const graphicsbg_changed =
1608                         (lyx_name == lcolor.getLyXName(LColor::graphicsbg) &&
1609                          x11_name != lcolor.getX11Name(LColor::graphicsbg));
1610
1611                 if (!lcolor.setColor(lyx_name, x11_name)) {
1612                         setErrorMessage(
1613                                 bformat(_("Set-color \"%1$s\" failed "
1614                                                   "- color is undefined or "
1615                                                   "may not be redefined"), lyx_name));
1616                         break;
1617                 }
1618
1619                 lyx_gui::update_color(lcolor.getFromLyXName(lyx_name));
1620
1621                 if (graphicsbg_changed) {
1622 #ifdef WITH_WARNINGS
1623 #warning FIXME!! The graphics cache no longer has a changeDisplay method.
1624 #endif
1625 #if 0
1626                         lyx::graphics::GCache & gc =
1627                                 lyx::graphics::GCache::get();
1628                         gc.changeDisplay(true);
1629 #endif
1630                 }
1631
1632                 view()->update();
1633                 break;
1634         }
1635
1636         case LFUN_MESSAGE:
1637                 owner->message(argument);
1638                 break;
1639
1640         case LFUN_FORKS_KILL:
1641         {
1642                 if (!isStrInt(argument))
1643                         break;
1644
1645                 pid_t const pid = strToInt(argument);
1646                 ForkedcallsController & fcc = ForkedcallsController::get();
1647                 fcc.kill(pid);
1648                 break;
1649         }
1650
1651         case LFUN_TOOLTIPS_TOGGLE:
1652                 owner->getDialogs().toggleTooltips();
1653                 break;
1654
1655         case LFUN_EXTERNAL_EDIT: {
1656                 InsetExternal().dispatch(FuncRequest(view(), action, argument));
1657                 break;
1658         }
1659
1660         default:
1661                 // Then if it was none of the above
1662                 // Trying the BufferView::pimpl dispatch:
1663                 if (!view()->dispatch(func))
1664                         lyxerr << "A truly unknown func ["
1665                                << lyxaction.getActionName(func.action) << "]!"
1666                                << endl;
1667                 break;
1668         } // end of switch
1669
1670 exit_with_message:
1671
1672         view()->owner()->updateLayoutChoice();
1673
1674         if (view()->available()) {
1675                 if (view()->fitCursor()) {
1676                         //lyxerr << "LyXFunc->fitCursor->update" << endl;
1677                         view()->update();
1678                 }
1679
1680                 // If we executed a mutating lfun, mark the buffer as dirty
1681                 if (!getStatus(func).disabled()
1682                     && !lyxaction.funcHasFlag(func.action, LyXAction::NoBuffer)
1683                     && !lyxaction.funcHasFlag(func.action, LyXAction::ReadOnly))
1684                         view()->buffer()->markDirty();
1685         }
1686
1687         sendDispatchMessage(getMessage(), func, verbose);
1688 }
1689
1690
1691 void LyXFunc::sendDispatchMessage(string const & msg,
1692                                   FuncRequest const & func, bool verbose)
1693 {
1694         owner->updateMenubar();
1695         owner->updateToolbar();
1696
1697         if (func.action == LFUN_SELFINSERT || !verbose) {
1698                 lyxerr[Debug::ACTION] << "dispatch msg is " << msg << endl;
1699                 if (!msg.empty())
1700                         owner->message(msg);
1701                 return;
1702         }
1703
1704         string dispatch_msg = msg;
1705         if (!dispatch_msg.empty())
1706                 dispatch_msg += ' ';
1707
1708         string comname = lyxaction.getActionName(func.action);
1709
1710         bool argsadded = false;
1711
1712         if (!func.argument.empty()) {
1713                 if (func.action != LFUN_UNKNOWN_ACTION) {
1714                         comname += ' ' + func.argument;
1715                         argsadded = true;
1716                 }
1717         }
1718
1719         string const shortcuts = toplevel_keymap->findbinding(func);
1720
1721         if (!shortcuts.empty()) {
1722                 comname += ": " + shortcuts;
1723         } else if (!argsadded && !func.argument.empty()) {
1724                 comname += ' ' + func.argument;
1725         }
1726
1727         if (!comname.empty()) {
1728                 comname = rtrim(comname);
1729                 dispatch_msg += '(' + comname + ')';
1730         }
1731
1732         lyxerr[Debug::ACTION] << "verbose dispatch msg " << dispatch_msg << endl;
1733         if (!dispatch_msg.empty())
1734                 owner->message(dispatch_msg);
1735 }
1736
1737
1738 void LyXFunc::setupLocalKeymap()
1739 {
1740         keyseq.stdmap = keyseq.curmap = toplevel_keymap.get();
1741         cancel_meta_seq.stdmap = cancel_meta_seq.curmap = toplevel_keymap.get();
1742 }
1743
1744
1745 void LyXFunc::menuNew(string const & name, bool fromTemplate)
1746 {
1747         string initpath = lyxrc.document_path;
1748         string filename(name);
1749
1750         if (view()->available()) {
1751                 string const trypath = owner->buffer()->filePath();
1752                 // If directory is writeable, use this as default.
1753                 if (IsDirWriteable(trypath))
1754                         initpath = trypath;
1755         }
1756
1757         static int newfile_number;
1758
1759         if (filename.empty()) {
1760                 filename = AddName(lyxrc.document_path,
1761                             "newfile" + tostr(++newfile_number) + ".lyx");
1762                 FileInfo fi(filename);
1763                 while (bufferlist.exists(filename) || fi.readable()) {
1764                         ++newfile_number;
1765                         filename = AddName(lyxrc.document_path,
1766                                     "newfile" + tostr(newfile_number) +
1767                                     ".lyx");
1768                         fi.newFile(filename);
1769                 }
1770         }
1771
1772         // The template stuff
1773         string templname;
1774         if (fromTemplate) {
1775                 FileDialog fileDlg(_("Select template file"),
1776                         LFUN_SELECT_FILE_SYNC,
1777                         make_pair(string(_("Documents|#o#O")),
1778                                   string(lyxrc.document_path)),
1779                         make_pair(string(_("Templates|#T#t")),
1780                                   string(lyxrc.template_path)));
1781
1782                 FileDialog::Result result =
1783                         fileDlg.open(lyxrc.template_path,
1784                                        _("*.lyx| LyX Documents (*.lyx)"));
1785
1786                 if (result.first == FileDialog::Later)
1787                         return;
1788
1789                 string const fname = result.second;
1790
1791                 if (fname.empty())
1792                         return;
1793                 templname = fname;
1794         }
1795
1796         view()->newFile(filename, templname, !name.empty());
1797 }
1798
1799
1800 void LyXFunc::open(string const & fname)
1801 {
1802         string initpath = lyxrc.document_path;
1803
1804         if (view()->available()) {
1805                 string const trypath = owner->buffer()->filePath();
1806                 // If directory is writeable, use this as default.
1807                 if (IsDirWriteable(trypath))
1808                         initpath = trypath;
1809         }
1810
1811         string filename;
1812
1813         if (fname.empty()) {
1814                 FileDialog fileDlg(_("Select document to open"),
1815                         LFUN_FILE_OPEN,
1816                         make_pair(string(_("Documents|#o#O")),
1817                                   string(lyxrc.document_path)),
1818                         make_pair(string(_("Examples|#E#e")),
1819                                   string(AddPath(system_lyxdir(), "examples"))));
1820
1821                 FileDialog::Result result =
1822                         fileDlg.open(initpath,
1823                                        _("*.lyx| LyX Documents (*.lyx)"));
1824
1825                 if (result.first == FileDialog::Later)
1826                         return;
1827
1828                 filename = result.second;
1829
1830                 // check selected filename
1831                 if (filename.empty()) {
1832                         owner->message(_("Canceled."));
1833                         return;
1834                 }
1835         } else
1836                 filename = fname;
1837
1838         // get absolute path of file and add ".lyx" to the filename if
1839         // necessary
1840         string const fullpath = FileSearch(string(), filename, "lyx");
1841         if (!fullpath.empty()) {
1842                 filename = fullpath;
1843         }
1844
1845         string const disp_fn(MakeDisplayPath(filename));
1846
1847         // if the file doesn't exist, let the user create one
1848         FileInfo const f(filename, true);
1849         if (!f.exist()) {
1850                 // the user specifically chose this name. Believe them.
1851                 view()->newFile(filename, "", true);
1852                 return;
1853         }
1854
1855         owner->message(bformat(_("Opening document %1$s..."), disp_fn));
1856
1857         string str2;
1858         if (view()->loadLyXFile(filename)) {
1859                 str2 = bformat(_("Document %1$s opened."), disp_fn);
1860         } else {
1861                 str2 = bformat(_("Could not open document %1$s"), disp_fn);
1862         }
1863         owner->message(str2);
1864 }
1865
1866
1867 void LyXFunc::doImport(string const & argument)
1868 {
1869         string format;
1870         string filename = split(argument, format, ' ');
1871
1872         lyxerr[Debug::INFO] << "LyXFunc::doImport: " << format
1873                             << " file: " << filename << endl;
1874
1875         // need user interaction
1876         if (filename.empty()) {
1877                 string initpath = lyxrc.document_path;
1878
1879                 if (view()->available()) {
1880                         string const trypath = owner->buffer()->filePath();
1881                         // If directory is writeable, use this as default.
1882                         if (IsDirWriteable(trypath))
1883                                 initpath = trypath;
1884                 }
1885
1886                 string const text = bformat(_("Select %1$s file to import"),
1887                         formats.prettyName(format));
1888
1889                 FileDialog fileDlg(text,
1890                         LFUN_IMPORT,
1891                         make_pair(string(_("Documents|#o#O")),
1892                                   string(lyxrc.document_path)),
1893                         make_pair(string(_("Examples|#E#e")),
1894                                   string(AddPath(system_lyxdir(), "examples"))));
1895
1896                 string const extension = "*." + formats.extension(format)
1897                         + "| " + formats.prettyName(format)
1898                         + " (*." + formats.extension(format) + ')';
1899
1900                 FileDialog::Result result = fileDlg.open(initpath,
1901                                                            extension);
1902
1903                 if (result.first == FileDialog::Later)
1904                         return;
1905
1906                 filename = result.second;
1907
1908                 // check selected filename
1909                 if (filename.empty())
1910                         owner->message(_("Canceled."));
1911         }
1912
1913         if (filename.empty())
1914                 return;
1915
1916         // get absolute path of file
1917         filename = MakeAbsPath(filename);
1918
1919         string const lyxfile = ChangeExtension(filename, ".lyx");
1920
1921         // Check if the document already is open
1922         if (lyx_gui::use_gui && bufferlist.exists(lyxfile)) {
1923                 if (!bufferlist.close(bufferlist.getBuffer(lyxfile), true)) {
1924                         owner->message(_("Canceled."));
1925                         return;
1926                 }
1927         }
1928
1929         // if the file exists already, and we didn't do
1930         // -i lyx thefile.lyx, warn
1931         if (FileInfo(lyxfile, true).exist() && filename != lyxfile) {
1932                 string const file = MakeDisplayPath(lyxfile, 30);
1933
1934                 string text = bformat(_("The document %1$s already exists.\n\n"
1935                         "Do you want to over-write that document?"), file);
1936                 int const ret = Alert::prompt(_("Over-write document?"),
1937                         text, 0, 1, _("&Over-write"), _("&Cancel"));
1938
1939                 if (ret == 1) {
1940                         owner->message(_("Canceled."));
1941                         return;
1942                 }
1943         }
1944
1945         Importer::Import(owner, filename, format);
1946 }
1947
1948
1949 void LyXFunc::closeBuffer()
1950 {
1951         if (bufferlist.close(owner->buffer(), true) && !quitting) {
1952                 if (bufferlist.empty()) {
1953                         // need this otherwise SEGV may occur while
1954                         // trying to set variables that don't exist
1955                         // since there's no current buffer
1956                         owner->getDialogs().hideBufferDependent();
1957                 } else {
1958                         view()->buffer(bufferlist.first());
1959                 }
1960         }
1961 }
1962
1963
1964 // Each "owner" should have it's own message method. lyxview and
1965 // the minibuffer would use the minibuffer, but lyxserver would
1966 // send an ERROR signal to its client.  Alejandro 970603
1967 // This func is bit problematic when it comes to NLS, to make the
1968 // lyx servers client be language indepenent we must not translate
1969 // strings sent to this func.
1970 void LyXFunc::setErrorMessage(string const & m) const
1971 {
1972         dispatch_buffer = m;
1973         errorstat = true;
1974 }
1975
1976
1977 void LyXFunc::setMessage(string const & m) const
1978 {
1979         dispatch_buffer = m;
1980 }
1981
1982
1983 void LyXFunc::setStatusMessage(string const & m) const
1984 {
1985         status_buffer = m;
1986 }
1987
1988
1989 string const LyXFunc::view_status_message()
1990 {
1991         // When meta-fake key is pressed, show the key sequence so far + "M-".
1992         if (wasMetaKey()) {
1993                 return keyseq.print() + "M-";
1994         }
1995
1996         // Else, when a non-complete key sequence is pressed,
1997         // show the available options.
1998         if (keyseq.length() > 0 && !keyseq.deleted()) {
1999                 return keyseq.printOptions();
2000         }
2001
2002         if (!view()->available())
2003                 return _("Welcome to LyX!");
2004
2005         return currentState(view());
2006 }
2007
2008
2009 BufferView * LyXFunc::view() const
2010 {
2011         BOOST_ASSERT(owner);
2012         return owner->view().get();
2013 }
2014
2015
2016 bool LyXFunc::wasMetaKey() const
2017 {
2018         return (meta_fake_bit != key_modifier::none);
2019 }