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