]> git.lyx.org Git - lyx.git/blob - src/lyxfunc.C
27651bfd5b30f85b50297dc065592f3e77d9f7b1
[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 "CutAndPaste.h"
32 #include "debug.h"
33 #include "dispatchresult.h"
34 #include "encoding.h"
35 #include "errorlist.h"
36 #include "exporter.h"
37 #include "format.h"
38 #include "funcrequest.h"
39 #include "gettext.h"
40 #include "importer.h"
41 #include "insetiterator.h"
42 #include "intl.h"
43 #include "kbmap.h"
44 #include "language.h"
45 #include "LColor.h"
46 #include "lyx_cb.h"
47 #include "LyXAction.h"
48 #include "lyxfind.h"
49 #include "lyxlex.h"
50 #include "lyxrc.h"
51 #include "lyxrow.h"
52 #include "lyxserver.h"
53 #include "lyxtextclasslist.h"
54 #include "lyxvc.h"
55 #include "paragraph.h"
56 #include "pariterator.h"
57 #include "ParagraphParameters.h"
58 #include "undo.h"
59
60 #include "insets/insetbox.h"
61 #include "insets/insetbranch.h"
62 #include "insets/insetcommand.h"
63 #include "insets/insetert.h"
64 #include "insets/insetexternal.h"
65 #include "insets/insetfloat.h"
66 #include "insets/insetgraphics.h"
67 #include "insets/insetnote.h"
68 #include "insets/insettabular.h"
69 #include "insets/insetvspace.h"
70 #include "insets/insetwrap.h"
71
72 #include "frontends/Alert.h"
73 #include "frontends/Dialogs.h"
74 #include "frontends/FileDialog.h"
75 #include "frontends/lyx_gui.h"
76 #include "frontends/LyXKeySym.h"
77 #include "frontends/LyXView.h"
78 #include "frontends/Menubar.h"
79 #include "frontends/Toolbar.h"
80
81 #include "support/FileInfo.h"
82 #include "support/filetools.h"
83 #include "support/forkedcontr.h"
84 #include "support/globbing.h"
85 #include "support/lstrings.h"
86 #include "support/path.h"
87 #include "support/path_defines.h"
88 #include "support/systemcall.h"
89 #include "support/tostr.h"
90 #include "support/std_sstream.h"
91 #include "support/os.h"
92
93 using bv_funcs::freefont2string;
94
95 using lyx::support::AddName;
96 using lyx::support::AddPath;
97 using lyx::support::bformat;
98 using lyx::support::ChangeExtension;
99 using lyx::support::contains;
100 using lyx::support::FileFilterList;
101 using lyx::support::FileInfo;
102 using lyx::support::FileSearch;
103 using lyx::support::ForkedcallsController;
104 using lyx::support::i18nLibFileSearch;
105 using lyx::support::IsDirWriteable;
106 using lyx::support::IsFileReadable;
107 using lyx::support::isStrInt;
108 using lyx::support::MakeAbsPath;
109 using lyx::support::MakeDisplayPath;
110 using lyx::support::Path;
111 using lyx::support::QuoteName;
112 using lyx::support::rtrim;
113 using lyx::support::split;
114 using lyx::support::strToInt;
115 using lyx::support::strToUnsignedInt;
116 using lyx::support::subst;
117 using lyx::support::system_lyxdir;
118 using lyx::support::Systemcall;
119 using lyx::support::token;
120 using lyx::support::trim;
121 using lyx::support::user_lyxdir;
122 using lyx::support::prefixIs;
123 using lyx::support::os::getTmpDir;
124
125 using std::endl;
126 using std::make_pair;
127 using std::pair;
128 using std::string;
129 using std::istringstream;
130
131
132 extern BufferList bufferlist;
133 extern LyXServer * lyxserver;
134 extern bool selection_possible;
135
136 extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
137
138 // (alkis)
139 extern tex_accent_struct get_accent(kb_action action);
140
141
142 LyXFunc::LyXFunc(LyXView * lv)
143         : owner(lv),
144         encoded_last_key(0),
145         keyseq(toplevel_keymap.get(), toplevel_keymap.get()),
146         cancel_meta_seq(toplevel_keymap.get(), toplevel_keymap.get()),
147         meta_fake_bit(key_modifier::none)
148 {
149 }
150
151
152 void LyXFunc::handleKeyFunc(kb_action action)
153 {
154         char c = encoded_last_key;
155
156         if (keyseq.length()) {
157                 c = 0;
158         }
159
160         owner->getIntl().getTransManager()
161                 .deadkey(c, get_accent(action).accent, view()->getLyXText());
162         // Need to clear, in case the minibuffer calls these
163         // actions
164         keyseq.clear();
165         // copied verbatim from do_accent_char
166         view()->cursor().resetAnchor();
167         view()->update();
168 }
169
170
171 void LyXFunc::processKeySym(LyXKeySymPtr keysym, key_modifier::state state)
172 {
173         lyxerr[Debug::KEY] << "KeySym is " << keysym->getSymbolName() << endl;
174
175         // Do nothing if we have nothing (JMarc)
176         if (!keysym->isOK()) {
177                 lyxerr[Debug::KEY] << "Empty kbd action (probably composing)"
178                                    << endl;
179                 return;
180         }
181
182         if (keysym->isModifier()) {
183                 lyxerr[Debug::KEY] << "isModifier true" << endl;
184                 return;
185         }
186
187         Encoding const * encoding = view()->cursor().getEncoding();
188
189         encoded_last_key = keysym->getISOEncoded(encoding ? encoding->Name() : "");
190
191         // Do a one-deep top-level lookup for
192         // cancel and meta-fake keys. RVDK_PATCH_5
193         cancel_meta_seq.reset();
194
195         FuncRequest func = cancel_meta_seq.addkey(keysym, state);
196         lyxerr[Debug::KEY] << "action first set to [" << func.action << ']' << endl;
197
198         // When not cancel or meta-fake, do the normal lookup.
199         // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
200         // Mostly, meta_fake_bit = key_modifier::none. RVDK_PATCH_5.
201         if ((func.action != LFUN_CANCEL) && (func.action != LFUN_META_FAKE)) {
202                 // remove Caps Lock and Mod2 as a modifiers
203                 func = keyseq.addkey(keysym, (state | meta_fake_bit));
204                 lyxerr[Debug::KEY] << "action now set to ["
205                         << func.action << ']' << endl;
206         }
207
208         // Dont remove this unless you know what you are doing.
209         meta_fake_bit = key_modifier::none;
210
211         // can this happen now ?
212         if (func.action == LFUN_NOACTION) {
213                 func = FuncRequest(LFUN_PREFIX);
214         }
215
216         if (lyxerr.debugging(Debug::KEY)) {
217                 lyxerr << "Key [action="
218                        << func.action << "]["
219                        << keyseq.print() << ']'
220                        << endl;
221         }
222
223         // already here we know if it any point in going further
224         // why not return already here if action == -1 and
225         // num_bytes == 0? (Lgb)
226
227         if (keyseq.length() > 1) {
228                 owner->message(keyseq.print());
229         }
230
231
232         // Maybe user can only reach the key via holding down shift.
233         // Let's see. But only if shift is the only modifier
234         if (func.action == LFUN_UNKNOWN_ACTION &&
235             state == key_modifier::shift) {
236                 lyxerr[Debug::KEY] << "Trying without shift" << endl;
237                 func = keyseq.addkey(keysym, key_modifier::none);
238                 lyxerr[Debug::KEY] << "Action now " << func.action << endl;
239         }
240
241         if (func.action == LFUN_UNKNOWN_ACTION) {
242                 // Hmm, we didn't match any of the keysequences. See
243                 // if it's normal insertable text not already covered
244                 // by a binding
245                 if (keysym->isText() && keyseq.length() == 1) {
246                         lyxerr[Debug::KEY] << "isText() is true, inserting." << endl;
247                         func = FuncRequest(LFUN_SELFINSERT);
248                 } else {
249                         lyxerr[Debug::KEY] << "Unknown, !isText() - giving up" << endl;
250                         owner->message(_("Unknown function."));
251                         return;
252                 }
253         }
254
255         if (func.action == LFUN_SELFINSERT) {
256                 if (encoded_last_key != 0) {
257                         string arg(1, encoded_last_key);
258                         dispatch(FuncRequest(LFUN_SELFINSERT, arg));
259                         lyxerr[Debug::KEY]
260                                 << "SelfInsert arg[`" << arg << "']" << endl;
261                 }
262         } else {
263                 dispatch(func);
264         }
265 }
266
267
268 FuncStatus LyXFunc::getStatus(FuncRequest const & cmd) const
269 {
270         //lyxerr << "LyXFunc::getStatus: cmd: " << cmd << endl;
271         FuncStatus flag;
272         Buffer * buf = owner->buffer();
273         LCursor & cur = view()->cursor();
274
275         if (cmd.action == LFUN_NOACTION) {
276                 setStatusMessage(N_("Nothing to do"));
277                 flag.enabled(false);
278                 return flag;
279         }
280
281         switch (cmd.action) {
282         case LFUN_UNKNOWN_ACTION:
283 #ifndef HAVE_LIBAIKSAURUS
284         case LFUN_THESAURUS_ENTRY:
285 #endif
286                 flag.unknown(true);
287                 flag.enabled(false);
288                 break;
289         default:
290                 flag |= lyx_gui::getStatus(cmd);
291         }
292
293         if (flag.unknown()) {
294                 setStatusMessage(N_("Unknown action"));
295                 return flag;
296         }
297
298         // the default error message if we disable the command
299         setStatusMessage(N_("Command disabled"));
300
301         // Check whether we need a buffer
302         if (!lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer) && !buf) {
303                 // no, exit directly
304                 setStatusMessage(N_("Command not allowed with"
305                                     "out any document open"));
306                 flag.enabled(false);
307                 return flag;
308         }
309
310         // I would really like to avoid having this switch and rather try to
311         // encode this in the function itself.
312         // -- And I'd rather let an inset decide which LFUNs it is willing
313         // to handle (Andre')
314         bool enable = true;
315         switch (cmd.action) {
316         case LFUN_TOOLTIPS_TOGGLE:
317                 flag.setOnOff(owner->getDialogs().tooltipsEnabled());
318                 break;
319
320         case LFUN_READ_ONLY_TOGGLE:
321                 flag.setOnOff(buf->isReadonly());
322                 break;
323
324         case LFUN_SWITCHBUFFER:
325                 // toggle on the current buffer, but do not toggle off
326                 // the other ones (is that a good idea?)
327                 if (cmd.argument == buf->fileName())
328                         flag.setOnOff(true);
329                 break;
330
331         case LFUN_TRACK_CHANGES:
332                 flag.setOnOff(buf->params().tracking_changes);
333                 break;
334
335         case LFUN_EXPORT:
336                 enable = cmd.argument == "custom"
337                         || Exporter::IsExportable(*buf, cmd.argument);
338                 break;
339         case LFUN_UNDO:
340                 enable = !buf->undostack().empty();
341                 break;
342         case LFUN_REDO:
343                 enable = !buf->redostack().empty();
344                 break;
345         case LFUN_CUT:
346         case LFUN_COPY:
347                 enable = cur.selection();
348                 break;
349
350         case LFUN_RUNCHKTEX:
351                 enable = buf->isLatex() && lyxrc.chktex_command != "none";
352                 break;
353
354         case LFUN_BUILDPROG:
355                 enable = Exporter::IsExportable(*buf, "program");
356                 break;
357
358         case LFUN_LAYOUT_TABULAR:
359                 enable = cur.innerInsetOfType(InsetBase::TABULAR_CODE);
360                 break;
361
362         case LFUN_LAYOUT:
363         case LFUN_LAYOUT_PARAGRAPH:
364                 enable = !cur.inset().forceDefaultParagraphs(&cur.inset());
365                 break;
366
367         case LFUN_VC_REGISTER:
368                 enable = !buf->lyxvc().inUse();
369                 break;
370         case LFUN_VC_CHECKIN:
371                 enable = buf->lyxvc().inUse() && !buf->isReadonly();
372                 break;
373         case LFUN_VC_CHECKOUT:
374                 enable = buf->lyxvc().inUse() && buf->isReadonly();
375                 break;
376         case LFUN_VC_REVERT:
377         case LFUN_VC_UNDO:
378                 enable = buf->lyxvc().inUse();
379                 break;
380         case LFUN_MENURELOAD:
381                 enable = !buf->isUnnamed() && !buf->isClean();
382                 break;
383         case LFUN_BOOKMARK_GOTO:
384                 enable = view()->isSavedPosition(strToUnsignedInt(cmd.argument));
385                 break;
386
387         case LFUN_MERGE_CHANGES:
388         case LFUN_ACCEPT_CHANGE:
389         case LFUN_REJECT_CHANGE:
390         case LFUN_ACCEPT_ALL_CHANGES:
391         case LFUN_REJECT_ALL_CHANGES:
392                 enable = buf && buf->params().tracking_changes;
393                 break;
394
395         case LFUN_INSET_SETTINGS: {
396                 enable = false;
397                 if (!cur.size())
398                         break;
399                 UpdatableInset * inset = cur.inset().asUpdatableInset();
400                 lyxerr << "inset: " << inset << endl;
401                 if (!inset)
402                         break;
403
404                 InsetOld::Code code = inset->lyxCode();
405                 switch (code) {
406                         case InsetOld::TABULAR_CODE:
407                                 enable = cmd.argument == "tabular";
408                                 break;
409                         case InsetOld::ERT_CODE:
410                                 enable = cmd.argument == "ert";
411                                 break;
412                         case InsetOld::FLOAT_CODE:
413                                 enable = cmd.argument == "float";
414                                 break;
415                         case InsetOld::WRAP_CODE:
416                                 enable = cmd.argument == "wrap";
417                                 break;
418                         case InsetOld::NOTE_CODE:
419                                 enable = cmd.argument == "note";
420                                 break;
421                         case InsetOld::BRANCH_CODE:
422                                 enable = cmd.argument == "branch";
423                                 break;
424                         case InsetOld::BOX_CODE:
425                                 enable = cmd.argument == "box";
426                                 break;
427                         default:
428                                 break;
429                 }
430                 break;
431         }
432
433         case LFUN_DIALOG_SHOW: {
434                 string const name = cmd.getArg(0);
435                 if (!buf)
436                         enable = name == "aboutlyx"
437                                 || name == "file"
438                                 || name == "forks"
439                                 || name == "prefs"
440                                 || name == "texinfo";
441                 else if (name == "print")
442                         enable = Exporter::IsExportable(*buf, "dvi")
443                                 && lyxrc.print_command != "none";
444                 else if (name == "character")
445                         enable = cur.inset().lyxCode() != InsetOld::ERT_CODE;
446                 else if (name == "vclog")
447                         enable = buf->lyxvc().inUse();
448                 else if (name == "latexlog")
449                         enable = IsFileReadable(buf->getLogName().second);
450                 break;
451         }
452
453         case LFUN_MENUNEW:
454         case LFUN_MENUNEWTMPLT:
455         case LFUN_WORDFINDFORWARD:
456         case LFUN_WORDFINDBACKWARD:
457         case LFUN_PREFIX:
458         case LFUN_EXEC_COMMAND:
459         case LFUN_CANCEL:
460         case LFUN_META_FAKE:
461         case LFUN_CLOSEBUFFER:
462         case LFUN_MENUWRITE:
463         case LFUN_WRITEAS:
464         case LFUN_UPDATE:
465         case LFUN_PREVIEW:
466         case LFUN_IMPORT:
467         case LFUN_QUIT:
468         case LFUN_TOCVIEW:
469         case LFUN_AUTOSAVE:
470         case LFUN_RECONFIGURE:
471         case LFUN_HELP_OPEN:
472         case LFUN_FILE_NEW:
473         case LFUN_FILE_OPEN:
474         case LFUN_DROP_LAYOUTS_CHOICE:
475         case LFUN_MENU_OPEN_BY_NAME:
476         case LFUN_GETNAME:
477         case LFUN_NOTIFY:
478         case LFUN_GOTOFILEROW:
479         case LFUN_GOTO_PARAGRAPH:
480         case LFUN_DIALOG_SHOW_NEW_INSET:
481         case LFUN_DIALOG_SHOW_NEXT_INSET:
482         case LFUN_DIALOG_UPDATE:
483         case LFUN_DIALOG_HIDE:
484         case LFUN_DIALOG_DISCONNECT_INSET:
485         case LFUN_CHILDOPEN:
486         case LFUN_TOGGLECURSORFOLLOW:
487         case LFUN_KMAP_OFF:
488         case LFUN_KMAP_PRIM:
489         case LFUN_KMAP_SEC:
490         case LFUN_KMAP_TOGGLE:
491         case LFUN_REPEAT:
492         case LFUN_EXPORT_CUSTOM:
493         case LFUN_PRINT:
494         case LFUN_SEQUENCE:
495         case LFUN_SAVEPREFERENCES:
496         case LFUN_SCREEN_FONT_UPDATE:
497         case LFUN_SET_COLOR:
498         case LFUN_MESSAGE:
499         case LFUN_EXTERNAL_EDIT:
500         case LFUN_FILE_INSERT:
501         case LFUN_FILE_INSERT_ASCII:
502         case LFUN_FILE_INSERT_ASCII_PARA:
503         case LFUN_ALL_INSETS_TOGGLE:
504         case LFUN_LANGUAGE_BUFFER:
505         case LFUN_TEXTCLASS_APPLY:
506         case LFUN_TEXTCLASS_LOAD:
507         case LFUN_SAVE_AS_DEFAULT:
508         case LFUN_BUFFERPARAMS_APPLY:
509         case LFUN_LYXRC_APPLY:
510         case LFUN_WORD_FIND:
511         case LFUN_WORD_REPLACE:
512                 // these are handled in our dispatch()
513                 break;
514
515         default:
516                 cur.getStatus(cmd, flag);
517         }
518
519         if (!enable)
520                 flag.enabled(false);
521
522         // Can we use a readonly buffer?
523         if (buf && buf->isReadonly()
524             && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
525             && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
526                 setStatusMessage(N_("Document is read-only"));
527                 flag.enabled(false);
528         }
529
530         return flag;
531 }
532
533
534 namespace {
535
536 bool ensureBufferClean(BufferView * bv)
537 {
538         Buffer & buf = *bv->buffer();
539         if (buf.isClean())
540                 return true;
541
542         string const file = MakeDisplayPath(buf.fileName(), 30);
543         string text = bformat(_("The document %1$s has unsaved "
544                                 "changes.\n\nDo you want to save "
545                                 "the document?"), file);
546         int const ret = Alert::prompt(_("Save changed document?"),
547                                       text, 0, 1, _("&Save"),
548                                       _("&Cancel"));
549
550         if (ret == 0)
551                 bv->owner()->dispatch(FuncRequest(LFUN_MENUWRITE));
552
553         return buf.isClean();
554 }
555
556
557 void showPrintError(string const & name)
558 {
559         string str = bformat(_("Could not print the document %1$s.\n"
560                                "Check that your printer is set up correctly."),
561                              MakeDisplayPath(name, 50));
562         Alert::error(_("Print document failed"), str);
563 }
564
565
566 void loadTextclass(string const & name)
567 {
568         std::pair<bool, lyx::textclass_type> const tc_pair =
569                 textclasslist.NumberOfClass(name);
570
571         if (!tc_pair.first) {
572                 lyxerr << "Document class \"" << name
573                        << "\" does not exist."
574                        << std::endl;
575                 return;
576         }
577
578         lyx::textclass_type const tc = tc_pair.second;
579
580         if (!textclasslist[tc].load()) {
581                 string s = bformat(_("The document could not be converted\n"
582                                      "into the document class %1$s."),
583                                    textclasslist[tc].name());
584                 Alert::error(_("Could not change class"), s);
585         }
586 }
587  
588 } //namespace anon
589
590
591 void LyXFunc::dispatch(FuncRequest const & cmd, bool verbose)
592 {
593         string const argument = cmd.argument;
594         kb_action const action = cmd.action;
595
596         lyxerr[Debug::ACTION] << "LyXFunc::dispatch: cmd: " << cmd << endl;
597         //lyxerr << "LyXFunc::dispatch: cmd: " << cmd << endl;
598
599         // we have not done anything wrong yet.
600         errorstat = false;
601         dispatch_buffer.erase();
602         selection_possible = false;
603
604         // We cannot use this function here
605         if (!getStatus(cmd).enabled()) {
606                 lyxerr[Debug::ACTION] << "LyXFunc::dispatch: "
607                        << lyxaction.getActionName(action)
608                        << " [" << action << "] is disabled at this location"
609                        << endl;
610                 setErrorMessage(getStatusMessage());
611
612         } else {
613
614                 if (view()->available())
615                         view()->hideCursor();
616
617                 switch (action) {
618
619                 case LFUN_WORDFINDFORWARD:
620                 case LFUN_WORDFINDBACKWARD: {
621                         static string last_search;
622                         string searched_string;
623
624                         if (!argument.empty()) {
625                                 last_search = argument;
626                                 searched_string = argument;
627                         } else {
628                                 searched_string = last_search;
629                         }
630
631                         if (searched_string.empty())
632                                 break;
633
634                         bool const fw = action == LFUN_WORDFINDFORWARD;
635                         string const data =
636                                 lyx::find::find2string(searched_string, true, false, fw);
637                         lyx::find::find(view(), FuncRequest(LFUN_WORD_FIND, data));
638                         break;
639                 }
640
641                 case LFUN_PREFIX:
642                         owner->message(keyseq.printOptions());
643                         break;
644
645                 case LFUN_EXEC_COMMAND:
646                         owner->focus_command_buffer();
647                         break;
648
649                 case LFUN_CANCEL:
650                         keyseq.reset();
651                         meta_fake_bit = key_modifier::none;
652                         if (view()->available())
653                                 // cancel any selection
654                                 dispatch(FuncRequest(LFUN_MARK_OFF));
655                         setMessage(N_("Cancel"));
656                         break;
657
658                 case LFUN_META_FAKE:
659                         meta_fake_bit = key_modifier::alt;
660                         setMessage(keyseq.print());
661                         break;
662
663                 case LFUN_READ_ONLY_TOGGLE:
664                         if (owner->buffer()->lyxvc().inUse())
665                                 owner->buffer()->lyxvc().toggleReadOnly();
666                         else
667                                 owner->buffer()->setReadonly(
668                                         !owner->buffer()->isReadonly());
669                         break;
670
671                 // --- Menus -----------------------------------------------
672                 case LFUN_MENUNEW:
673                         menuNew(argument, false);
674                         break;
675
676                 case LFUN_MENUNEWTMPLT:
677                         menuNew(argument, true);
678                         break;
679
680                 case LFUN_CLOSEBUFFER:
681                         closeBuffer();
682                         break;
683
684                 case LFUN_MENUWRITE:
685                         if (!owner->buffer()->isUnnamed()) {
686                                 string const str = bformat(_("Saving document %1$s..."),
687                                          MakeDisplayPath(owner->buffer()->fileName()));
688                                 owner->message(str);
689                                 MenuWrite(owner->buffer());
690                                 owner->message(str + _(" done."));
691                         } else
692                                 WriteAs(owner->buffer());
693                         break;
694
695                 case LFUN_WRITEAS:
696                         WriteAs(owner->buffer(), argument);
697                         break;
698
699                 case LFUN_MENURELOAD: {
700                         string const file = MakeDisplayPath(view()->buffer()->fileName(), 20);
701                         string text = bformat(_("Any changes will be lost. Are you sure "
702                                 "you want to revert to the saved version of the document %1$s?"), file);
703                         int const ret = Alert::prompt(_("Revert to saved document?"),
704                                 text, 0, 1, _("&Revert"), _("&Cancel"));
705
706                         if (ret == 0)
707                                 view()->reload();
708                         break;
709                 }
710
711                 case LFUN_UPDATE:
712                         Exporter::Export(owner->buffer(), argument, true);
713                         view()->showErrorList(BufferFormat(*owner->buffer()));
714                         break;
715
716                 case LFUN_PREVIEW:
717                         Exporter::Preview(owner->buffer(), argument);
718                         view()->showErrorList(BufferFormat(*owner->buffer()));
719                         break;
720
721                 case LFUN_BUILDPROG:
722                         Exporter::Export(owner->buffer(), "program", true);
723                         view()->showErrorList(_("Build"));
724                         break;
725
726                 case LFUN_RUNCHKTEX:
727                         owner->buffer()->runChktex();
728                         view()->showErrorList(_("ChkTeX"));
729                         break;
730
731                 case LFUN_EXPORT:
732                         if (argument == "custom")
733                                 owner->getDialogs().show("sendto");
734                         else {
735                                 Exporter::Export(owner->buffer(), argument, false);
736                                 view()->showErrorList(BufferFormat(*owner->buffer()));
737                         }
738                         break;
739
740                 case LFUN_EXPORT_CUSTOM: {
741                         string format_name;
742                         string command = split(argument, format_name, ' ');
743                         Format const * format = formats.getFormat(format_name);
744                         if (!format) {
745                                 lyxerr << "Format \"" << format_name
746                                        << "\" not recognized!"
747                                        << std::endl;
748                                 break;
749                         }
750
751                         Buffer * buffer = owner->buffer();
752
753                         // The name of the file created by the conversion process
754                         string filename;
755
756                         // Output to filename
757                         if (format->name() == "lyx") {
758                                 string const latexname =
759                                         buffer->getLatexName(false);
760                                 filename = ChangeExtension(latexname,
761                                                            format->extension());
762                                 filename = AddName(buffer->temppath(), filename);
763
764                                 if (!buffer->writeFile(filename))
765                                         break;
766
767                         } else {
768                                 Exporter::Export(buffer, format_name, true,
769                                                  filename);
770                         }
771
772                         // Substitute $$FName for filename
773                         if (!contains(command, "$$FName"))
774                                 command = "( " + command + " ) < $$FName";
775                         command = subst(command, "$$FName", filename);
776
777                         // Execute the command in the background
778                         Systemcall call;
779                         call.startscript(Systemcall::DontWait, command);
780                         break;
781                 }
782
783                 case LFUN_PRINT: {
784                         string target;
785                         string target_name;
786                         string command = split(split(argument, target, ' '),
787                                                target_name, ' ');
788
789                         if (target.empty()
790                             || target_name.empty()
791                             || command.empty()) {
792                                 lyxerr << "Unable to parse \""
793                                        << argument << '"' << std::endl;
794                                 break;
795                         }
796                         if (target != "printer" && target != "file") {
797                                 lyxerr << "Unrecognized target \""
798                                        << target << '"' << std::endl;
799                                 break;
800                         }
801
802                         Buffer * buffer = owner->buffer();
803
804                         if (!Exporter::Export(buffer, "dvi", true)) {
805                                 showPrintError(buffer->fileName());
806                                 break;
807                         }
808
809                         // Push directory path.
810                         string const path = buffer->temppath();
811                         Path p(path);
812
813                         // there are three cases here:
814                         // 1. we print to a file
815                         // 2. we print directly to a printer
816                         // 3. we print using a spool command (print to file first)
817                         Systemcall one;
818                         int res = 0;
819                         string const dviname =
820                                 ChangeExtension(buffer->getLatexName(true),
821                                                 "dvi");
822
823                         if (target == "printer") {
824                                 if (!lyxrc.print_spool_command.empty()) {
825                                         // case 3: print using a spool
826                                         string const psname =
827                                                 ChangeExtension(dviname,".ps");
828                                         command += lyxrc.print_to_file
829                                                 + QuoteName(psname)
830                                                 + ' '
831                                                 + QuoteName(dviname);
832
833                                         string command2 =
834                                                 lyxrc.print_spool_command +' ';
835                                         if (target_name != "default") {
836                                                 command2 += lyxrc.print_spool_printerprefix
837                                                         + target_name
838                                                         + ' ';
839                                         }
840                                         command2 += QuoteName(psname);
841                                         // First run dvips.
842                                         // If successful, then spool command
843                                         res = one.startscript(
844                                                 Systemcall::Wait,
845                                                 command);
846
847                                         if (res == 0)
848                                                 res = one.startscript(
849                                                         Systemcall::DontWait,
850                                                         command2);
851                                 } else {
852                                         // case 2: print directly to a printer
853                                         res = one.startscript(
854                                                 Systemcall::DontWait,
855                                                 command + QuoteName(dviname));
856                                 }
857
858                         } else {
859                                 // case 1: print to a file
860                                 command += lyxrc.print_to_file
861                                         + QuoteName(MakeAbsPath(target_name,
862                                                                 path))
863                                         + ' '
864                                         + QuoteName(dviname);
865                                 res = one.startscript(Systemcall::DontWait,
866                                                       command);
867                         }
868
869                         if (res != 0)
870                                 showPrintError(buffer->fileName());
871                         break;
872                 }
873
874                 case LFUN_IMPORT:
875                         doImport(argument);
876                         break;
877
878                 case LFUN_QUIT:
879                         QuitLyX();
880                         break;
881
882                 case LFUN_TOCVIEW: {
883                         InsetCommandParams p("tableofcontents");
884                         string const data = InsetCommandMailer::params2string("toc", p);
885                         owner->getDialogs().show("toc", data, 0);
886                         break;
887                 }
888
889                 case LFUN_AUTOSAVE:
890                         AutoSave(view());
891                         break;
892
893                 case LFUN_RECONFIGURE:
894                         Reconfigure(view());
895                         break;
896
897                 case LFUN_HELP_OPEN: {
898                         string const arg = argument;
899                         if (arg.empty()) {
900                                 setErrorMessage(N_("Missing argument"));
901                                 break;
902                         }
903                         string const fname = i18nLibFileSearch("doc", arg, "lyx");
904                         if (fname.empty()) {
905                                 lyxerr << "LyX: unable to find documentation file `"
906                                                          << arg << "'. Bad installation?" << endl;
907                                 break;
908                         }
909                         owner->message(bformat(_("Opening help file %1$s..."),
910                                 MakeDisplayPath(fname)));
911                         view()->loadLyXFile(fname, false);
912                         break;
913                 }
914
915                 // --- version control -------------------------------
916                 case LFUN_VC_REGISTER:
917                         if (!ensureBufferClean(view()))
918                                 break;
919                         if (!owner->buffer()->lyxvc().inUse()) {
920                                 owner->buffer()->lyxvc().registrer();
921                                 view()->reload();
922                         }
923                         break;
924
925                 case LFUN_VC_CHECKIN:
926                         if (!ensureBufferClean(view()))
927                                 break;
928                         if (owner->buffer()->lyxvc().inUse()
929                                         && !owner->buffer()->isReadonly()) {
930                                 owner->buffer()->lyxvc().checkIn();
931                                 view()->reload();
932                         }
933                         break;
934
935                 case LFUN_VC_CHECKOUT:
936                         if (!ensureBufferClean(view()))
937                                 break;
938                         if (owner->buffer()->lyxvc().inUse()
939                                         && owner->buffer()->isReadonly()) {
940                                 owner->buffer()->lyxvc().checkOut();
941                                 view()->reload();
942                         }
943                         break;
944
945                 case LFUN_VC_REVERT:
946                         owner->buffer()->lyxvc().revert();
947                         view()->reload();
948                         break;
949
950                 case LFUN_VC_UNDO:
951                         owner->buffer()->lyxvc().undoLast();
952                         view()->reload();
953                         break;
954
955                 // --- buffers ----------------------------------------
956                 case LFUN_SWITCHBUFFER:
957                         view()->setBuffer(bufferlist.getBuffer(argument));
958                         break;
959
960                 case LFUN_FILE_NEW:
961                         NewFile(view(), argument);
962                         break;
963
964                 case LFUN_FILE_OPEN:
965                         open(argument);
966                         break;
967
968                 case LFUN_DROP_LAYOUTS_CHOICE:
969                         owner->getToolbar().openLayoutList();
970                         break;
971
972                 case LFUN_MENU_OPEN_BY_NAME:
973                         owner->getMenubar().openByName(argument);
974                         break;
975
976                 // --- lyxserver commands ----------------------------
977                 case LFUN_GETNAME:
978                         setMessage(owner->buffer()->fileName());
979                         lyxerr[Debug::INFO] << "FNAME["
980                                                          << owner->buffer()->fileName()
981                                                          << "] " << endl;
982                         break;
983
984                 case LFUN_NOTIFY:
985                         dispatch_buffer = keyseq.print();
986                         lyxserver->notifyClient(dispatch_buffer);
987                         break;
988
989                 case LFUN_GOTOFILEROW: {
990                         string file_name;
991                         int row;
992                         istringstream is(argument);
993                         is >> file_name >> row;
994                         if (prefixIs(file_name, getTmpDir())) {
995                                 // Needed by inverse dvi search. If it is a file
996                                 // in tmpdir, call the apropriated function
997                                 view()->setBuffer(bufferlist.getBufferFromTmp(file_name));
998                         } else {
999                                 // Must replace extension of the file to be .lyx
1000                                 // and get full path
1001                                 string const s = ChangeExtension(file_name, ".lyx");
1002                                 // Either change buffer or load the file
1003                                 if (bufferlist.exists(s)) {
1004                                         view()->setBuffer(bufferlist.getBuffer(s));
1005                                 } else {
1006                                         view()->loadLyXFile(s);
1007                                 }
1008                         }
1009
1010                         view()->setCursorFromRow(row);
1011
1012                         view()->center();
1013                         // see BufferView_pimpl::center()
1014                         view()->updateScrollbar();
1015                         break;
1016                 }
1017
1018                 case LFUN_GOTO_PARAGRAPH: {
1019                         istringstream is(argument);
1020                         int id;
1021                         is >> id;
1022                         ParIterator par = owner->buffer()->getParFromID(id);
1023                         if (par == owner->buffer()->par_iterator_end()) {
1024                                 lyxerr[Debug::INFO] << "No matching paragraph found! ["
1025                                                                 << id << ']' << endl;
1026                                 break;
1027                         } else {
1028                                 lyxerr[Debug::INFO] << "Paragraph " << par->id()
1029                                                                 << " found." << endl;
1030                         }
1031
1032                         // Set the cursor
1033                         view()->setCursor(par, 0);
1034
1035                         view()->switchKeyMap();
1036                         owner->view_state_changed();
1037
1038                         view()->center();
1039                         // see BufferView_pimpl::center()
1040                         view()->updateScrollbar();
1041                         break;
1042                 }
1043
1044                 case LFUN_DIALOG_SHOW: {
1045                         string const name = cmd.getArg(0);
1046                         string data = trim(cmd.argument.substr(name.size()));
1047
1048                         if (name == "character") {
1049                                 data = freefont2string();
1050                                 if (!data.empty())
1051                                         owner->getDialogs().show("character", data);
1052                         }
1053
1054                         else if (name == "latexlog") {
1055                                 pair<Buffer::LogType, string> const logfile =
1056                                         owner->buffer()->getLogName();
1057                                 switch (logfile.first) {
1058                                 case Buffer::latexlog:
1059                                         data = "latex ";
1060                                         break;
1061                                 case Buffer::buildlog:
1062                                         data = "literate ";
1063                                         break;
1064                                 }
1065                                 data += logfile.second;
1066                                 owner->getDialogs().show("log", data);
1067                         }
1068                         else if (name == "vclog") {
1069                                 string const data = "vc " +
1070                                         owner->buffer()->lyxvc().getLogFile();
1071                                 owner->getDialogs().show("log", data);
1072                         }
1073                         else
1074                                 owner->getDialogs().show(name, data);
1075                         break;
1076                 }
1077
1078                 case LFUN_DIALOG_SHOW_NEW_INSET: {
1079                         string const name = cmd.getArg(0);
1080                         string data = trim(cmd.argument.substr(name.size()));
1081                         if (name == "bibitem" ||
1082                             name == "bibtex" ||
1083                             name == "include" ||
1084                             name == "index" ||
1085                             name == "label" ||
1086                             name == "ref" ||
1087                             name == "toc" ||
1088                             name == "url") {
1089                                 InsetCommandParams p(name);
1090                                 data = InsetCommandMailer::params2string(name, p);
1091                         } else if (name == "box") {
1092                                 // \c data == "Boxed" || "Frameless" etc
1093                                 InsetBoxParams p(data);
1094                                 data = InsetBoxMailer::params2string(p);
1095                         } else if (name == "branch") {
1096                                 InsetBranchParams p;
1097                                 data = InsetBranchMailer::params2string(p);
1098                         } else if (name == "citation") {
1099                                 InsetCommandParams p("cite");
1100                                 data = InsetCommandMailer::params2string(name, p);
1101                         } else if (name == "ert") {
1102                                 data = InsetERTMailer::params2string(InsetCollapsable::Open);
1103                         } else if (name == "external") {
1104                                 InsetExternalParams p;
1105                                 Buffer const & buffer = *owner->buffer();
1106                                 data = InsetExternalMailer::params2string(p, buffer);
1107                         } else if (name == "float") {
1108                                 InsetFloatParams p;
1109                                 data = InsetFloatMailer::params2string(p);
1110                         } else if (name == "graphics") {
1111                                 InsetGraphicsParams p;
1112                                 Buffer const & buffer = *owner->buffer();
1113                                 data = InsetGraphicsMailer::params2string(p, buffer);
1114                         } else if (name == "note") {
1115                                 InsetNoteParams p;
1116                                 data = InsetNoteMailer::params2string(p);
1117                         } else if (name == "vspace") {
1118                                 VSpace space;
1119                                 data = InsetVSpaceMailer::params2string(space);
1120                         } else if (name == "wrap") {
1121                                 InsetWrapParams p;
1122                                 data = InsetWrapMailer::params2string(p);
1123                         }
1124                         owner->getDialogs().show(name, data, 0);
1125                         break;
1126                 }
1127
1128                 case LFUN_DIALOG_SHOW_NEXT_INSET:
1129                         break;
1130
1131                 case LFUN_DIALOG_UPDATE: {
1132                         string const & name = argument;
1133                         // Can only update a dialog connected to an existing inset
1134                         InsetBase * inset = owner->getDialogs().getOpenInset(name);
1135                         if (inset) {
1136                                 FuncRequest fr(LFUN_INSET_DIALOG_UPDATE, cmd.argument);
1137                                 inset->dispatch(view()->cursor(), fr);
1138                         } else if (name == "paragraph") {
1139                                 dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
1140                         }
1141                         break;
1142                 }
1143
1144                 case LFUN_DIALOG_HIDE:
1145                         Dialogs::hide(argument, 0);
1146                         break;
1147
1148                 case LFUN_DIALOG_DISCONNECT_INSET:
1149                         owner->getDialogs().disconnect(argument);
1150                         break;
1151
1152                 case LFUN_CHILDOPEN: {
1153                         string const filename =
1154                                 MakeAbsPath(argument, owner->buffer()->filePath());
1155                         setMessage(N_("Opening child document ") +
1156                                          MakeDisplayPath(filename) + "...");
1157                         view()->savePosition(0);
1158                         string const parentfilename = owner->buffer()->fileName();
1159                         if (bufferlist.exists(filename))
1160                                 view()->setBuffer(bufferlist.getBuffer(filename));
1161                         else
1162                                 view()->loadLyXFile(filename);
1163                         // Set the parent name of the child document.
1164                         // This makes insertion of citations and references in the child work,
1165                         // when the target is in the parent or another child document.
1166                         owner->buffer()->setParentName(parentfilename);
1167                         break;
1168                 }
1169
1170                 case LFUN_TOGGLECURSORFOLLOW:
1171                         lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1172                         break;
1173
1174                 case LFUN_KMAP_OFF:
1175                         owner->getIntl().KeyMapOn(false);
1176                         break;
1177
1178                 case LFUN_KMAP_PRIM:
1179                         owner->getIntl().KeyMapPrim();
1180                         break;
1181
1182                 case LFUN_KMAP_SEC:
1183                         owner->getIntl().KeyMapSec();
1184                         break;
1185
1186                 case LFUN_KMAP_TOGGLE:
1187                         owner->getIntl().ToggleKeyMap();
1188                         break;
1189
1190                 case LFUN_REPEAT: {
1191                         // repeat command
1192                         string countstr;
1193                         string rest = split(argument, countstr, ' ');
1194                         istringstream is(countstr);
1195                         int count = 0;
1196                         is >> count;
1197                         lyxerr << "repeat: count: " << count << " cmd: " << rest << endl;
1198                         for (int i = 0; i < count; ++i)
1199                                 dispatch(lyxaction.lookupFunc(rest));
1200                         break;
1201                 }
1202
1203                 case LFUN_SEQUENCE:
1204                         // argument contains ';'-terminated commands
1205                         while (!argument.empty()) {
1206                                 string first;
1207                                 string rest = split(argument, first, ';');
1208                                 dispatch(lyxaction.lookupFunc(rest));
1209                         }
1210                         break;
1211
1212                 case LFUN_SAVEPREFERENCES: {
1213                         Path p(user_lyxdir());
1214                         lyxrc.write("preferences");
1215                         break;
1216                 }
1217
1218                 case LFUN_SCREEN_FONT_UPDATE:
1219                         // handle the screen font changes.
1220                         lyxrc.set_font_norm_type();
1221                         lyx_gui::update_fonts();
1222                         // All visible buffers will need resize
1223                         view()->resize();
1224                         break;
1225
1226                 case LFUN_SET_COLOR: {
1227                         string lyx_name;
1228                         string const x11_name = split(argument, lyx_name, ' ');
1229                         if (lyx_name.empty() || x11_name.empty()) {
1230                                 setErrorMessage(N_("Syntax: set-color <lyx_name>"
1231                                                         " <x11_name>"));
1232                                 break;
1233                         }
1234
1235                         bool const graphicsbg_changed =
1236                                 (lyx_name == lcolor.getLyXName(LColor::graphicsbg) &&
1237                                  x11_name != lcolor.getX11Name(LColor::graphicsbg));
1238
1239                         if (!lcolor.setColor(lyx_name, x11_name)) {
1240                                 setErrorMessage(
1241                                         bformat(_("Set-color \"%1$s\" failed "
1242                                                                 "- color is undefined or "
1243                                                                 "may not be redefined"), lyx_name));
1244                                 break;
1245                         }
1246
1247                         lyx_gui::update_color(lcolor.getFromLyXName(lyx_name));
1248
1249                         if (graphicsbg_changed) {
1250 #ifdef WITH_WARNINGS
1251 #warning FIXME!! The graphics cache no longer has a changeDisplay method.
1252 #endif
1253 #if 0
1254                                 lyx::graphics::GCache::get().changeDisplay(true);
1255 #endif
1256                         }
1257                         break;
1258                 }
1259
1260                 case LFUN_MESSAGE:
1261                         owner->message(argument);
1262                         break;
1263
1264                 case LFUN_TOOLTIPS_TOGGLE:
1265                         owner->getDialogs().toggleTooltips();
1266                         break;
1267
1268                 case LFUN_EXTERNAL_EDIT: {
1269                         FuncRequest fr(action, argument);
1270                         InsetExternal().dispatch(view()->cursor(), fr);
1271                         break;
1272                 }
1273
1274                 case LFUN_BREAKLINE: {
1275 #warning swallow 'Return' if the minibuffer is focused. But how?
1276                         break;
1277                 }
1278
1279                 case LFUN_ALL_INSETS_TOGGLE: {
1280                         string action;
1281                         string const name = split(argument, action, ' ');
1282                         InsetBase::Code const inset_code =
1283                                 InsetBase::translate(name);
1284
1285                         LCursor & cur = view()->cursor();
1286                         FuncRequest fr(LFUN_INSET_TOGGLE, action);
1287
1288                         InsetBase & inset = owner->buffer()->inset();
1289                         InsetIterator it  = inset_iterator_begin(inset);
1290                         InsetIterator const end = inset_iterator_end(inset);
1291                         for (; it != end; ++it) {
1292                                 if (inset_code == InsetBase::NO_CODE
1293                                     || inset_code == it->lyxCode())
1294                                         it->dispatch(cur, fr);
1295                         }
1296                         break;
1297                 }
1298
1299                 case LFUN_LANGUAGE_BUFFER: {
1300                         Buffer & buffer = *owner->buffer();
1301                         Language const * oldL = buffer.params().language;
1302                         Language const * newL = languages.getLanguage(argument);
1303                         if (!newL || oldL == newL)
1304                                 break;
1305
1306                         if (oldL->RightToLeft() == newL->RightToLeft()
1307                             && !buffer.isMultiLingual())
1308                                 buffer.changeLanguage(oldL, newL);
1309                         else
1310                                 buffer.updateDocLang(newL);
1311                         break;
1312                 }
1313
1314                 case LFUN_BUFFERPARAMS_APPLY: {
1315                         istringstream ss(argument);
1316                         LyXLex lex(0,0);
1317                         lex.setStream(ss);
1318                         int const unknown_tokens =
1319                                 owner->buffer()->readHeader(lex);
1320
1321                         if (unknown_tokens != 0) {
1322                                 lyxerr << "Warning in LFUN_BUFFERPARAMS_APPLY!\n"
1323                                        << unknown_tokens << " unknown token"
1324                                        << (unknown_tokens == 1 ? "" : "s")
1325                                        << endl;
1326                         }
1327                         break;
1328                 }
1329
1330                 case LFUN_TEXTCLASS_APPLY: {
1331                         Buffer * buffer = owner->buffer();
1332
1333                         lyx::textclass_type const old_class =
1334                                 buffer->params().textclass;
1335
1336                         loadTextclass(argument);
1337
1338                         std::pair<bool, lyx::textclass_type> const tc_pair =
1339                                 textclasslist.NumberOfClass(argument);
1340
1341                         if (!tc_pair.first)
1342                                 break;
1343
1344                         lyx::textclass_type const new_class = tc_pair.second;
1345                         if (old_class == new_class)
1346                                 // nothing to do
1347                                 break;
1348
1349                         owner->message(_("Converting document to new document class..."));
1350                         ErrorList el;
1351                         lyx::cap::SwitchLayoutsBetweenClasses(
1352                                 old_class, new_class,
1353                                 buffer->paragraphs(), el);
1354
1355                         bufferErrors(*buffer, el);
1356                         view()->showErrorList(_("Class switch"));
1357                         break;
1358                 }
1359
1360                 case LFUN_TEXTCLASS_LOAD:
1361                         loadTextclass(argument);
1362                         break;
1363
1364                 case LFUN_LYXRC_APPLY: {
1365                         istringstream ss(argument);
1366                         bool const success = lyxrc.read(ss) == 0;
1367                         
1368                         if (!success) {
1369                                 lyxerr << "Warning in LFUN_LYXRC_APPLY!\n"
1370                                        << "Unable to read lyxrc data"
1371                                        << endl;
1372                         }
1373                         break;
1374                 } 
1375
1376                 default: {
1377                         DispatchResult res = view()->cursor().dispatch(cmd);
1378                         if (!res.dispatched());
1379                                 view()->dispatch(cmd);
1380                         break;
1381                 }
1382                 }
1383
1384                 if (view()->available()) {
1385                         view()->fitCursor();
1386                         view()->update();
1387                         view()->cursor().updatePos();
1388                         // if we executed a mutating lfun, mark the buffer as dirty
1389                         if (getStatus(cmd).enabled()
1390                                         && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)
1391                                         && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly))
1392                                 view()->buffer()->markDirty();
1393                 }
1394
1395                 if (view()->cursor().inTexted()) {
1396                         view()->owner()->updateLayoutChoice();
1397                         sendDispatchMessage(getMessage(), cmd, verbose);
1398                 }
1399         }
1400 }
1401
1402
1403 void LyXFunc::sendDispatchMessage(string const & msg,
1404                                   FuncRequest const & cmd, bool verbose)
1405 {
1406         owner->updateMenubar();
1407         owner->updateToolbar();
1408
1409         if (cmd.action == LFUN_SELFINSERT || !verbose) {
1410                 lyxerr[Debug::ACTION] << "dispatch msg is " << msg << endl;
1411                 if (!msg.empty())
1412                         owner->message(msg);
1413                 return;
1414         }
1415
1416         string dispatch_msg = msg;
1417         if (!dispatch_msg.empty())
1418                 dispatch_msg += ' ';
1419
1420         string comname = lyxaction.getActionName(cmd.action);
1421
1422         bool argsadded = false;
1423
1424         if (!cmd.argument.empty()) {
1425                 if (cmd.action != LFUN_UNKNOWN_ACTION) {
1426                         comname += ' ' + cmd.argument;
1427                         argsadded = true;
1428                 }
1429         }
1430
1431         string const shortcuts = toplevel_keymap->findbinding(cmd);
1432
1433         if (!shortcuts.empty()) {
1434                 comname += ": " + shortcuts;
1435         } else if (!argsadded && !cmd.argument.empty()) {
1436                 comname += ' ' + cmd.argument;
1437         }
1438
1439         if (!comname.empty()) {
1440                 comname = rtrim(comname);
1441                 dispatch_msg += '(' + comname + ')';
1442         }
1443
1444         lyxerr[Debug::ACTION] << "verbose dispatch msg " << dispatch_msg << endl;
1445         if (!dispatch_msg.empty())
1446                 owner->message(dispatch_msg);
1447 }
1448
1449
1450 void LyXFunc::setupLocalKeymap()
1451 {
1452         keyseq.stdmap = toplevel_keymap.get();
1453         keyseq.curmap = toplevel_keymap.get();
1454         cancel_meta_seq.stdmap = toplevel_keymap.get();
1455         cancel_meta_seq.curmap = toplevel_keymap.get();
1456 }
1457
1458
1459 void LyXFunc::menuNew(string const & name, bool fromTemplate)
1460 {
1461         string initpath = lyxrc.document_path;
1462         string filename(name);
1463
1464         if (view()->available()) {
1465                 string const trypath = owner->buffer()->filePath();
1466                 // If directory is writeable, use this as default.
1467                 if (IsDirWriteable(trypath))
1468                         initpath = trypath;
1469         }
1470
1471         static int newfile_number;
1472
1473         if (filename.empty()) {
1474                 filename = AddName(lyxrc.document_path,
1475                             "newfile" + tostr(++newfile_number) + ".lyx");
1476                 FileInfo fi(filename);
1477                 while (bufferlist.exists(filename) || fi.readable()) {
1478                         ++newfile_number;
1479                         filename = AddName(lyxrc.document_path,
1480                                     "newfile" + tostr(newfile_number) +
1481                                     ".lyx");
1482                         fi.newFile(filename);
1483                 }
1484         }
1485
1486         // The template stuff
1487         string templname;
1488         if (fromTemplate) {
1489                 FileDialog fileDlg(_("Select template file"),
1490                         LFUN_SELECT_FILE_SYNC,
1491                         make_pair(string(_("Documents|#o#O")),
1492                                   string(lyxrc.document_path)),
1493                         make_pair(string(_("Templates|#T#t")),
1494                                   string(lyxrc.template_path)));
1495
1496                 FileDialog::Result result =
1497                         fileDlg.open(lyxrc.template_path,
1498                                      FileFilterList(_("LyX Documents (*.lyx)")),
1499                                      string());
1500
1501                 if (result.first == FileDialog::Later)
1502                         return;
1503                 if (result.second.empty())
1504                         return;
1505                 templname = result.second;
1506         }
1507
1508         view()->newFile(filename, templname, !name.empty());
1509 }
1510
1511
1512 void LyXFunc::open(string const & fname)
1513 {
1514         string initpath = lyxrc.document_path;
1515
1516         if (view()->available()) {
1517                 string const trypath = owner->buffer()->filePath();
1518                 // If directory is writeable, use this as default.
1519                 if (IsDirWriteable(trypath))
1520                         initpath = trypath;
1521         }
1522
1523         string filename;
1524
1525         if (fname.empty()) {
1526                 FileDialog fileDlg(_("Select document to open"),
1527                         LFUN_FILE_OPEN,
1528                         make_pair(string(_("Documents|#o#O")),
1529                                   string(lyxrc.document_path)),
1530                         make_pair(string(_("Examples|#E#e")),
1531                                   string(AddPath(system_lyxdir(), "examples"))));
1532
1533                 FileDialog::Result result =
1534                         fileDlg.open(initpath,
1535                                      FileFilterList(_("LyX Documents (*.lyx)")),
1536                                      string());
1537
1538                 if (result.first == FileDialog::Later)
1539                         return;
1540
1541                 filename = result.second;
1542
1543                 // check selected filename
1544                 if (filename.empty()) {
1545                         owner->message(_("Canceled."));
1546                         return;
1547                 }
1548         } else
1549                 filename = fname;
1550
1551         // get absolute path of file and add ".lyx" to the filename if
1552         // necessary
1553         string const fullpath = FileSearch(string(), filename, "lyx");
1554         if (!fullpath.empty()) {
1555                 filename = fullpath;
1556         }
1557
1558         string const disp_fn(MakeDisplayPath(filename));
1559
1560         // if the file doesn't exist, let the user create one
1561         FileInfo const f(filename, true);
1562         if (!f.exist()) {
1563                 // the user specifically chose this name. Believe them.
1564                 view()->newFile(filename, "", true);
1565                 return;
1566         }
1567
1568         owner->message(bformat(_("Opening document %1$s..."), disp_fn));
1569
1570         string str2;
1571         if (view()->loadLyXFile(filename)) {
1572                 str2 = bformat(_("Document %1$s opened."), disp_fn);
1573         } else {
1574                 str2 = bformat(_("Could not open document %1$s"), disp_fn);
1575         }
1576         owner->message(str2);
1577 }
1578
1579
1580 void LyXFunc::doImport(string const & argument)
1581 {
1582         string format;
1583         string filename = split(argument, format, ' ');
1584
1585         lyxerr[Debug::INFO] << "LyXFunc::doImport: " << format
1586                             << " file: " << filename << endl;
1587
1588         // need user interaction
1589         if (filename.empty()) {
1590                 string initpath = lyxrc.document_path;
1591
1592                 if (view()->available()) {
1593                         string const trypath = owner->buffer()->filePath();
1594                         // If directory is writeable, use this as default.
1595                         if (IsDirWriteable(trypath))
1596                                 initpath = trypath;
1597                 }
1598
1599                 string const text = bformat(_("Select %1$s file to import"),
1600                         formats.prettyName(format));
1601
1602                 FileDialog fileDlg(text,
1603                         LFUN_IMPORT,
1604                         make_pair(string(_("Documents|#o#O")),
1605                                   string(lyxrc.document_path)),
1606                         make_pair(string(_("Examples|#E#e")),
1607                                   string(AddPath(system_lyxdir(), "examples"))));
1608
1609                 string const filter = formats.prettyName(format)
1610                         + " (*." + formats.extension(format) + ')';
1611
1612                 FileDialog::Result result =
1613                         fileDlg.open(initpath,
1614                                      FileFilterList(filter),
1615                                      string());
1616
1617                 if (result.first == FileDialog::Later)
1618                         return;
1619
1620                 filename = result.second;
1621
1622                 // check selected filename
1623                 if (filename.empty())
1624                         owner->message(_("Canceled."));
1625         }
1626
1627         if (filename.empty())
1628                 return;
1629
1630         // get absolute path of file
1631         filename = MakeAbsPath(filename);
1632
1633         string const lyxfile = ChangeExtension(filename, ".lyx");
1634
1635         // Check if the document already is open
1636         if (lyx_gui::use_gui && bufferlist.exists(lyxfile)) {
1637                 if (!bufferlist.close(bufferlist.getBuffer(lyxfile), true)) {
1638                         owner->message(_("Canceled."));
1639                         return;
1640                 }
1641         }
1642
1643         // if the file exists already, and we didn't do
1644         // -i lyx thefile.lyx, warn
1645         if (FileInfo(lyxfile, true).exist() && filename != lyxfile) {
1646                 string const file = MakeDisplayPath(lyxfile, 30);
1647
1648                 string text = bformat(_("The document %1$s already exists.\n\n"
1649                         "Do you want to over-write that document?"), file);
1650                 int const ret = Alert::prompt(_("Over-write document?"),
1651                         text, 0, 1, _("&Over-write"), _("&Cancel"));
1652
1653                 if (ret == 1) {
1654                         owner->message(_("Canceled."));
1655                         return;
1656                 }
1657         }
1658
1659         Importer::Import(owner, filename, format);
1660 }
1661
1662
1663 void LyXFunc::closeBuffer()
1664 {
1665         if (bufferlist.close(owner->buffer(), true) && !quitting) {
1666                 if (bufferlist.empty()) {
1667                         // need this otherwise SEGV may occur while
1668                         // trying to set variables that don't exist
1669                         // since there's no current buffer
1670                         owner->getDialogs().hideBufferDependent();
1671                 } else {
1672                         view()->setBuffer(bufferlist.first());
1673                 }
1674         }
1675 }
1676
1677
1678 // Each "owner" should have it's own message method. lyxview and
1679 // the minibuffer would use the minibuffer, but lyxserver would
1680 // send an ERROR signal to its client.  Alejandro 970603
1681 // This function is bit problematic when it comes to NLS, to make the
1682 // lyx servers client be language indepenent we must not translate
1683 // strings sent to this func.
1684 void LyXFunc::setErrorMessage(string const & m) const
1685 {
1686         dispatch_buffer = m;
1687         errorstat = true;
1688 }
1689
1690
1691 void LyXFunc::setMessage(string const & m) const
1692 {
1693         dispatch_buffer = m;
1694 }
1695
1696
1697 void LyXFunc::setStatusMessage(string const & m) const
1698 {
1699         status_buffer = m;
1700 }
1701
1702
1703 string const LyXFunc::viewStatusMessage()
1704 {
1705         // When meta-fake key is pressed, show the key sequence so far + "M-".
1706         if (wasMetaKey())
1707                 return keyseq.print() + "M-";
1708
1709         // Else, when a non-complete key sequence is pressed,
1710         // show the available options.
1711         if (keyseq.length() > 0 && !keyseq.deleted())
1712                 return keyseq.printOptions();
1713
1714         if (!view()->available())
1715                 return _("Welcome to LyX!");
1716
1717         return view()->cursor().currentState();
1718 }
1719
1720
1721 BufferView * LyXFunc::view() const
1722 {
1723         BOOST_ASSERT(owner);
1724         return owner->view().get();
1725 }
1726
1727
1728 bool LyXFunc::wasMetaKey() const
1729 {
1730         return (meta_fake_bit != key_modifier::none);
1731 }