]> git.lyx.org Git - lyx.git/blob - src/LyXFunc.cpp
Improve fullscreen capabilities ( http://bugzilla.lyx.org/show_bug.cgi?id=4146 ).
[lyx.git] / src / LyXFunc.cpp
1 /**
2  * \file LyXFunc.cpp
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 #include <vector>
22
23 #include "LyXFunc.h"
24
25 #include "BranchList.h"
26 #include "buffer_funcs.h"
27 #include "Buffer.h"
28 #include "BufferList.h"
29 #include "BufferParams.h"
30 #include "BufferView.h"
31 #include "CmdDef.h"
32 #include "Color.h"
33 #include "Converter.h"
34 #include "Cursor.h"
35 #include "CutAndPaste.h"
36 #include "support/debug.h"
37 #include "DispatchResult.h"
38 #include "Encoding.h"
39 #include "ErrorList.h"
40 #include "Format.h"
41 #include "FuncRequest.h"
42 #include "FuncStatus.h"
43 #include "support/gettext.h"
44 #include "InsetIterator.h"
45 #include "Intl.h"
46 #include "KeyMap.h"
47 #include "Language.h"
48 #include "Lexer.h"
49 #include "LyXAction.h"
50 #include "lyxfind.h"
51 #include "LyX.h"
52 #include "LyXRC.h"
53 #include "LyXVC.h"
54 #include "Paragraph.h"
55 #include "ParagraphParameters.h"
56 #include "ParIterator.h"
57 #include "Row.h"
58 #include "Server.h"
59 #include "Session.h"
60 #include "TextClassList.h"
61 #include "ToolbarBackend.h"
62
63 #include "insets/InsetBox.h"
64 #include "insets/InsetBranch.h"
65 #include "insets/InsetCommand.h"
66 #include "insets/InsetERT.h"
67 #include "insets/InsetExternal.h"
68 #include "insets/InsetFloat.h"
69 #include "insets/InsetListings.h"
70 #include "insets/InsetGraphics.h"
71 #include "insets/InsetInclude.h"
72 #include "insets/InsetNote.h"
73 #include "insets/InsetTabular.h"
74 #include "insets/InsetVSpace.h"
75 #include "insets/InsetWrap.h"
76
77 #include "frontends/alert.h"
78 #include "frontends/Application.h"
79 #include "frontends/KeySymbol.h"
80 #include "frontends/LyXView.h"
81 #include "frontends/Selection.h"
82
83 #include "support/environment.h"
84 #include "support/FileName.h"
85 #include "support/filetools.h"
86 #include "support/lstrings.h"
87 #include "support/Path.h"
88 #include "support/Package.h"
89 #include "support/Systemcall.h"
90 #include "support/convert.h"
91 #include "support/os.h"
92
93 #include <sstream>
94
95 using namespace std;
96 using namespace lyx::support;
97
98 namespace lyx {
99
100 using frontend::LyXView;
101
102 namespace Alert = frontend::Alert;
103
104 extern bool quitting;
105 extern bool use_gui;
106
107 namespace {
108
109
110 // This function runs "configure" and then rereads lyx.defaults to
111 // reconfigure the automatic settings.
112 void reconfigure(LyXView & lv, string const & option)
113 {
114         // emit message signal.
115         lv.message(_("Running configure..."));
116
117         // Run configure in user lyx directory
118         PathChanger p(package().user_support());
119         string configure_command = package().configure_command();
120         configure_command += option;
121         Systemcall one;
122         int ret = one.startscript(Systemcall::Wait, configure_command);
123         p.pop();
124         // emit message signal.
125         lv.message(_("Reloading configuration..."));
126         lyxrc.read(libFileSearch(string(), "lyxrc.defaults"));
127         // Re-read packages.lst
128         LaTeXFeatures::getAvailable();
129
130         if (ret)
131                 Alert::information(_("System reconfiguration failed"),
132                            _("The system reconfiguration has failed.\n"
133                                   "Default textclass is used but LyX may "
134                                   "not be able to work properly.\n"
135                                   "Please reconfigure again if needed."));
136         else
137
138                 Alert::information(_("System reconfigured"),
139                            _("The system has been reconfigured.\n"
140                              "You need to restart LyX to make use of any\n"
141                              "updated document class specifications."));
142 }
143
144
145 bool getLocalStatus(Cursor cursor, FuncRequest const & cmd, FuncStatus & status)
146 {
147         // Try to fix cursor in case it is broken.
148         cursor.fixIfBroken();
149
150         // This is, of course, a mess. Better create a new doc iterator and use
151         // this in Inset::getStatus. This might require an additional
152         // BufferView * arg, though (which should be avoided)
153         //Cursor safe = *this;
154         bool res = false;
155         for ( ; cursor.depth(); cursor.pop()) {
156                 //lyxerr << "\nCursor::getStatus: cmd: " << cmd << endl << *this << endl;
157                 BOOST_ASSERT(cursor.idx() <= cursor.lastidx());
158                 BOOST_ASSERT(cursor.pit() <= cursor.lastpit());
159                 BOOST_ASSERT(cursor.pos() <= cursor.lastpos());
160
161                 // The inset's getStatus() will return 'true' if it made
162                 // a definitive decision on whether it want to handle the
163                 // request or not. The result of this decision is put into
164                 // the 'status' parameter.
165                 if (cursor.inset().getStatus(cursor, cmd, status)) {
166                         res = true;
167                         break;
168                 }
169         }
170         return res;
171 }
172
173
174 /** Return the change status at cursor position, taking in account the
175  * status at each level of the document iterator (a table in a deleted
176  * footnote is deleted).
177  * When \param outer is true, the top slice is not looked at.
178  */
179 Change::Type lookupChangeType(DocIterator const & dit, bool outer = false)
180 {
181         size_t const depth = dit.depth() - (outer ? 1 : 0);
182
183         for (size_t i = 0 ; i < depth ; ++i) {
184                 CursorSlice const & slice = dit[i];
185                 if (!slice.inset().inMathed()
186                     && slice.pos() < slice.paragraph().size()) {
187                         Change::Type const ch = slice.paragraph().lookupChange(slice.pos()).type;
188                         if (ch != Change::UNCHANGED)
189                                 return ch;
190                 }
191         }
192         return Change::UNCHANGED;
193 }
194
195 }
196
197
198 LyXFunc::LyXFunc()
199         : lyx_view_(0), encoded_last_key(0), meta_fake_bit(NoModifier)
200 {
201 }
202
203
204 void LyXFunc::initKeySequences(KeyMap * kb)
205 {
206         keyseq = KeySequence(kb, kb);
207         cancel_meta_seq = KeySequence(kb, kb);
208 }
209
210
211 void LyXFunc::setLyXView(LyXView * lv)
212 {
213         if (!quitting && lyx_view_ && lyx_view_->view() && lyx_view_ != lv)
214                 // save current selection to the selection buffer to allow
215                 // middle-button paste in another window
216                 cap::saveSelection(lyx_view_->view()->cursor());
217         lyx_view_ = lv;
218 }
219
220
221 void LyXFunc::handleKeyFunc(kb_action action)
222 {
223         char_type c = encoded_last_key;
224
225         if (keyseq.length())
226                 c = 0;
227
228         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
229         lyx_view_->view()->getIntl().getTransManager().deadkey(
230                 c, get_accent(action).accent, view()->cursor().innerText(), view()->cursor());
231         // Need to clear, in case the minibuffer calls these
232         // actions
233         keyseq.clear();
234         // copied verbatim from do_accent_char
235         view()->cursor().resetAnchor();
236         view()->processUpdateFlags(Update::FitCursor);
237 }
238
239
240 void LyXFunc::gotoBookmark(unsigned int idx, bool openFile, bool switchToBuffer)
241 {
242         BOOST_ASSERT(lyx_view_);
243         if (!LyX::ref().session().bookmarks().isValid(idx))
244                 return;
245         BookmarksSection::Bookmark const & bm = LyX::ref().session().bookmarks().bookmark(idx);
246         BOOST_ASSERT(!bm.filename.empty());
247         string const file = bm.filename.absFilename();
248         // if the file is not opened, open it.
249         if (!theBufferList().exists(file)) {
250                 if (openFile)
251                         dispatch(FuncRequest(LFUN_FILE_OPEN, file));
252                 else
253                         return;
254         }
255         // open may fail, so we need to test it again
256         if (!theBufferList().exists(file))
257                 return;
258
259         // if the current buffer is not that one, switch to it.
260         if (lyx_view_->buffer()->absFileName() != file) {
261                 if (!switchToBuffer)
262                         return;
263                 dispatch(FuncRequest(LFUN_BUFFER_SWITCH, file));
264         }
265         // moveToPosition try paragraph id first and then paragraph (pit, pos).
266         if (!view()->moveToPosition(bm.bottom_pit, bm.bottom_pos,
267                 bm.top_id, bm.top_pos))
268                 return;
269
270         // Cursor jump succeeded!
271         Cursor const & cur = view()->cursor();
272         pit_type new_pit = cur.pit();
273         pos_type new_pos = cur.pos();
274         int new_id = cur.paragraph().id();
275
276         // if bottom_pit, bottom_pos or top_id has been changed, update bookmark
277         // see http://bugzilla.lyx.org/show_bug.cgi?id=3092
278         if (bm.bottom_pit != new_pit || bm.bottom_pos != new_pos 
279                 || bm.top_id != new_id) {
280                 const_cast<BookmarksSection::Bookmark &>(bm).updatePos(
281                         new_pit, new_pos, new_id);
282         }
283 }
284
285
286 void LyXFunc::processKeySym(KeySymbol const & keysym, KeyModifier state)
287 {
288         LYXERR(Debug::KEY, "KeySym is " << keysym.getSymbolName());
289
290         // Do nothing if we have nothing (JMarc)
291         if (!keysym.isOK()) {
292                 LYXERR(Debug::KEY, "Empty kbd action (probably composing)");
293                 lyx_view_->restartCursor();
294                 return;
295         }
296
297         if (keysym.isModifier()) {
298                 LYXERR(Debug::KEY, "isModifier true");
299                 lyx_view_->restartCursor();
300                 return;
301         }
302
303         //Encoding const * encoding = view()->cursor().getEncoding();
304         //encoded_last_key = keysym.getISOEncoded(encoding ? encoding->name() : "");
305         // FIXME: encoded_last_key shadows the member variable of the same
306         // name. Is that intended?
307         char_type encoded_last_key = keysym.getUCSEncoded();
308
309         // Do a one-deep top-level lookup for
310         // cancel and meta-fake keys. RVDK_PATCH_5
311         cancel_meta_seq.reset();
312
313         FuncRequest func = cancel_meta_seq.addkey(keysym, state);
314         LYXERR(Debug::KEY, "action first set to [" << func.action << ']');
315
316         // When not cancel or meta-fake, do the normal lookup.
317         // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
318         // Mostly, meta_fake_bit = NoModifier. RVDK_PATCH_5.
319         if ((func.action != LFUN_CANCEL) && (func.action != LFUN_META_PREFIX)) {
320                 // remove Caps Lock and Mod2 as a modifiers
321                 func = keyseq.addkey(keysym, (state | meta_fake_bit));
322                 LYXERR(Debug::KEY, "action now set to [" << func.action << ']');
323         }
324
325         // Dont remove this unless you know what you are doing.
326         meta_fake_bit = NoModifier;
327
328         // Can this happen now ?
329         if (func.action == LFUN_NOACTION)
330                 func = FuncRequest(LFUN_COMMAND_PREFIX);
331
332         LYXERR(Debug::KEY, " Key [action=" << func.action << "]["
333                 << keyseq.print(KeySequence::Portable) << ']');
334
335         // already here we know if it any point in going further
336         // why not return already here if action == -1 and
337         // num_bytes == 0? (Lgb)
338
339         if (keyseq.length() > 1)
340                 lyx_view_->message(keyseq.print(KeySequence::ForGui));
341
342
343         // Maybe user can only reach the key via holding down shift.
344         // Let's see. But only if shift is the only modifier
345         if (func.action == LFUN_UNKNOWN_ACTION && state == ShiftModifier) {
346                 LYXERR(Debug::KEY, "Trying without shift");
347                 func = keyseq.addkey(keysym, NoModifier);
348                 LYXERR(Debug::KEY, "Action now " << func.action);
349         }
350
351         if (func.action == LFUN_UNKNOWN_ACTION) {
352                 // Hmm, we didn't match any of the keysequences. See
353                 // if it's normal insertable text not already covered
354                 // by a binding
355                 if (keysym.isText() && keyseq.length() == 1) {
356                         LYXERR(Debug::KEY, "isText() is true, inserting.");
357                         func = FuncRequest(LFUN_SELF_INSERT,
358                                            FuncRequest::KEYBOARD);
359                 } else {
360                         LYXERR(Debug::KEY, "Unknown, !isText() - giving up");
361                         lyx_view_->message(_("Unknown function."));
362                         lyx_view_->restartCursor();
363                         return;
364                 }
365         }
366
367         if (func.action == LFUN_SELF_INSERT) {
368                 if (encoded_last_key != 0) {
369                         docstring const arg(1, encoded_last_key);
370                         dispatch(FuncRequest(LFUN_SELF_INSERT, arg,
371                                              FuncRequest::KEYBOARD));
372                         LYXERR(Debug::KEY, "SelfInsert arg[`" << to_utf8(arg) << "']");
373                 }
374         } else {
375                 dispatch(func);
376         }
377
378         lyx_view_->restartCursor();
379 }
380
381
382 FuncStatus LyXFunc::getStatus(FuncRequest const & cmd) const
383 {
384         //lyxerr << "LyXFunc::getStatus: cmd: " << cmd << endl;
385         FuncStatus flag;
386
387         Buffer * buf = lyx_view_? lyx_view_->buffer() : 0;
388
389         if (cmd.action == LFUN_NOACTION) {
390                 flag.message(from_utf8(N_("Nothing to do")));
391                 flag.enabled(false);
392                 return flag;
393         }
394
395         switch (cmd.action) {
396         case LFUN_UNKNOWN_ACTION:
397 #ifndef HAVE_LIBAIKSAURUS
398         case LFUN_THESAURUS_ENTRY:
399 #endif
400                 flag.unknown(true);
401                 flag.enabled(false);
402                 break;
403
404         default:
405                 break;
406         }
407
408         if (flag.unknown()) {
409                 flag.message(from_utf8(N_("Unknown action")));
410                 return flag;
411         }
412
413         if (!flag.enabled()) {
414                 if (flag.message().empty())
415                         flag.message(from_utf8(N_("Command disabled")));
416                 return flag;
417         }
418
419         // Check whether we need a buffer
420         if (!lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer) && !buf) {
421                 // no, exit directly
422                 flag.message(from_utf8(N_("Command not allowed with"
423                                     "out any document open")));
424                 flag.enabled(false);
425                 return flag;
426         }
427
428         // I would really like to avoid having this switch and rather try to
429         // encode this in the function itself.
430         // -- And I'd rather let an inset decide which LFUNs it is willing
431         // to handle (Andre')
432         bool enable = true;
433         switch (cmd.action) {
434
435         // FIXME: these cases should be hidden in GuiApplication::getStatus().
436         case LFUN_WINDOW_CLOSE:
437                 if (theApp())
438                         return theApp()->getStatus(cmd);
439                 enable = false;
440                 break;
441
442         // FIXME: these cases should be hidden in GuiView::getStatus().
443         case LFUN_DIALOG_TOGGLE:
444         case LFUN_DIALOG_SHOW:
445         case LFUN_DIALOG_UPDATE:
446                 if (cmd.argument() == "prefs"
447                     || cmd.argument() == "aboutlyx")
448                         enable = true;
449                 else if (lyx_view_)
450                         return lyx_view_->getStatus(cmd);
451                 else
452                         enable = false;
453                 break;
454
455         case LFUN_TOOLBAR_TOGGLE:
456         case LFUN_UI_TOGGLE:
457         case LFUN_INSET_APPLY:
458         case LFUN_BUFFER_WRITE:
459         case LFUN_BUFFER_WRITE_AS:
460                 if (lyx_view_)
461                         return lyx_view_->getStatus(cmd);
462                 enable = false;
463                 break;
464
465         case LFUN_BUFFER_TOGGLE_READ_ONLY:
466                 flag.setOnOff(buf->isReadonly());
467                 break;
468
469         case LFUN_BUFFER_SWITCH:
470                 // toggle on the current buffer, but do not toggle off
471                 // the other ones (is that a good idea?)
472                 if (buf && to_utf8(cmd.argument()) == buf->absFileName())
473                         flag.setOnOff(true);
474                 break;
475
476         case LFUN_BUFFER_EXPORT:
477                 enable = cmd.argument() == "custom"
478                         || buf->isExportable(to_utf8(cmd.argument()));
479                 break;
480
481         case LFUN_BUFFER_CHKTEX:
482                 enable = buf->isLatex() && !lyxrc.chktex_command.empty();
483                 break;
484
485         case LFUN_BUILD_PROGRAM:
486                 enable = buf->isExportable("program");
487                 break;
488
489         case LFUN_VC_REGISTER:
490                 enable = !buf->lyxvc().inUse();
491                 break;
492         case LFUN_VC_CHECK_IN:
493                 enable = buf->lyxvc().inUse() && !buf->isReadonly();
494                 break;
495         case LFUN_VC_CHECK_OUT:
496                 enable = buf->lyxvc().inUse() && buf->isReadonly();
497                 break;
498         case LFUN_VC_REVERT:
499         case LFUN_VC_UNDO_LAST:
500                 enable = buf->lyxvc().inUse();
501                 break;
502         case LFUN_BUFFER_RELOAD:
503                 enable = !buf->isUnnamed() && buf->fileName().exists()
504                         && (!buf->isClean() || buf->isExternallyModified(Buffer::timestamp_method));
505                 break;
506
507         case LFUN_CITATION_INSERT: {
508                 FuncRequest fr(LFUN_INSET_INSERT, "citation");
509                 enable = getStatus(fr).enabled();
510                 break;
511         }
512         
513         // This could be used for the no-GUI version. The GUI version is handled in
514         // LyXView::getStatus(). See above.
515         /*
516         case LFUN_BUFFER_WRITE:
517         case LFUN_BUFFER_WRITE_AS: {
518                 Buffer * b = theBufferList().getBuffer(cmd.getArg(0));
519                 enable = b && (b->isUnnamed() || !b->isClean());
520                 break;
521         }
522         */
523
524         case LFUN_BUFFER_WRITE_ALL: {
525                 // We enable the command only if there are some modified buffers
526                 Buffer * first = theBufferList().first();
527                 enable = false;
528                 if (!first)
529                         break;
530                 Buffer * b = first;
531                 // We cannot use a for loop as the buffer list is a cycle.
532                 do {
533                         if (!b->isClean()) {
534                                 enable = true;
535                                 break;
536                         }
537                         b = theBufferList().next(b);
538                 } while (b != first); 
539                 break;
540         }
541
542         case LFUN_BOOKMARK_GOTO: {
543                 const unsigned int num = convert<unsigned int>(to_utf8(cmd.argument()));
544                 enable = LyX::ref().session().bookmarks().isValid(num);
545                 break;
546         }
547
548         case LFUN_BOOKMARK_CLEAR:
549                 enable = LyX::ref().session().bookmarks().size() > 0;
550                 break;
551
552         // this one is difficult to get right. As a half-baked
553         // solution, we consider only the first action of the sequence
554         case LFUN_COMMAND_SEQUENCE: {
555                 // argument contains ';'-terminated commands
556                 string const firstcmd = token(to_utf8(cmd.argument()), ';', 0);
557                 FuncRequest func(lyxaction.lookupFunc(firstcmd));
558                 func.origin = cmd.origin;
559                 flag = getStatus(func);
560                 break;
561         }
562
563         case LFUN_CALL: {
564                 FuncRequest func;
565                 string name = to_utf8(cmd.argument());
566                 if (LyX::ref().topLevelCmdDef().lock(name, func)) {
567                         func.origin = cmd.origin;
568                         flag = getStatus(func);
569                         LyX::ref().topLevelCmdDef().release(name);
570                 } else {
571                         // catch recursion or unknown command definiton
572                         // all operations until the recursion or unknown command 
573                         // definiton occures are performed, so set the state to enabled
574                         enable = true;
575                 }
576                 break;
577         }
578
579         case LFUN_BUFFER_NEW:
580         case LFUN_BUFFER_NEW_TEMPLATE:
581         case LFUN_WORD_FIND_FORWARD:
582         case LFUN_WORD_FIND_BACKWARD:
583         case LFUN_COMMAND_PREFIX:
584         case LFUN_COMMAND_EXECUTE:
585         case LFUN_CANCEL:
586         case LFUN_META_PREFIX:
587         case LFUN_BUFFER_CLOSE:
588         case LFUN_BUFFER_UPDATE:
589         case LFUN_BUFFER_VIEW:
590         case LFUN_MASTER_BUFFER_UPDATE:
591         case LFUN_MASTER_BUFFER_VIEW:
592         case LFUN_BUFFER_IMPORT:
593         case LFUN_BUFFER_AUTO_SAVE:
594         case LFUN_RECONFIGURE:
595         case LFUN_HELP_OPEN:
596         case LFUN_FILE_NEW:
597         case LFUN_FILE_OPEN:
598         case LFUN_DROP_LAYOUTS_CHOICE:
599         case LFUN_MENU_OPEN:
600         case LFUN_SERVER_GET_NAME:
601         case LFUN_SERVER_NOTIFY:
602         case LFUN_SERVER_GOTO_FILE_ROW:
603         case LFUN_DIALOG_HIDE:
604         case LFUN_DIALOG_DISCONNECT_INSET:
605         case LFUN_BUFFER_CHILD_OPEN:
606         case LFUN_TOGGLE_CURSOR_FOLLOWS_SCROLLBAR:
607         case LFUN_KEYMAP_OFF:
608         case LFUN_KEYMAP_PRIMARY:
609         case LFUN_KEYMAP_SECONDARY:
610         case LFUN_KEYMAP_TOGGLE:
611         case LFUN_REPEAT:
612         case LFUN_BUFFER_EXPORT_CUSTOM:
613         case LFUN_BUFFER_PRINT:
614         case LFUN_PREFERENCES_SAVE:
615         case LFUN_SCREEN_FONT_UPDATE:
616         case LFUN_SET_COLOR:
617         case LFUN_MESSAGE:
618         case LFUN_EXTERNAL_EDIT:
619         case LFUN_GRAPHICS_EDIT:
620         case LFUN_ALL_INSETS_TOGGLE:
621         case LFUN_BUFFER_LANGUAGE:
622         case LFUN_TEXTCLASS_APPLY:
623         case LFUN_TEXTCLASS_LOAD:
624         case LFUN_BUFFER_SAVE_AS_DEFAULT:
625         case LFUN_BUFFER_PARAMS_APPLY:
626         case LFUN_LAYOUT_MODULES_CLEAR:
627         case LFUN_LAYOUT_MODULE_ADD:
628         case LFUN_LAYOUT_RELOAD:
629         case LFUN_LYXRC_APPLY:
630         case LFUN_BUFFER_NEXT:
631         case LFUN_BUFFER_PREVIOUS:
632         case LFUN_WINDOW_NEW:
633         case LFUN_LYX_QUIT:
634                 // these are handled in our dispatch()
635                 break;
636
637         default:
638                 if (!view()) {
639                         enable = false;
640                         break;
641                 }
642                 if (!getLocalStatus(view()->cursor(), cmd, flag))
643                         flag = view()->getStatus(cmd);
644         }
645
646         if (!enable)
647                 flag.enabled(false);
648
649         // Can we use a readonly buffer?
650         if (buf && buf->isReadonly()
651             && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
652             && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
653                 flag.message(from_utf8(N_("Document is read-only")));
654                 flag.enabled(false);
655         }
656
657         // Are we in a DELETED change-tracking region?
658         if (buf && view() 
659                 && lookupChangeType(view()->cursor(), true) == Change::DELETED
660             && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
661             && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
662                 flag.message(from_utf8(N_("This portion of the document is deleted.")));
663                 flag.enabled(false);
664         }
665
666         // the default error message if we disable the command
667         if (!flag.enabled() && flag.message().empty())
668                 flag.message(from_utf8(N_("Command disabled")));
669
670         return flag;
671 }
672
673
674 bool LyXFunc::ensureBufferClean(BufferView * bv)
675 {
676         Buffer & buf = bv->buffer();
677         if (buf.isClean())
678                 return true;
679
680         docstring const file = buf.fileName().displayName(30);
681         docstring text = bformat(_("The document %1$s has unsaved "
682                                              "changes.\n\nDo you want to save "
683                                              "the document?"), file);
684         int const ret = Alert::prompt(_("Save changed document?"),
685                                       text, 0, 1, _("&Save"),
686                                       _("&Cancel"));
687
688         if (ret == 0)
689                 dispatch(FuncRequest(LFUN_BUFFER_WRITE));
690
691         return buf.isClean();
692 }
693
694
695 namespace {
696
697 void showPrintError(string const & name)
698 {
699         docstring str = bformat(_("Could not print the document %1$s.\n"
700                                             "Check that your printer is set up correctly."),
701                              makeDisplayPath(name, 50));
702         Alert::error(_("Print document failed"), str);
703 }
704
705
706 void loadTextClass(string const & name)
707 {
708         pair<bool, textclass_type> const tc_pair =
709                 textclasslist.numberOfClass(name);
710
711         if (!tc_pair.first) {
712                 lyxerr << "Document class \"" << name
713                        << "\" does not exist."
714                        << endl;
715                 return;
716         }
717
718         textclass_type const tc = tc_pair.second;
719
720         if (!textclasslist[tc].load()) {
721                 docstring s = bformat(_("The document class %1$s."
722                                    "could not be loaded."),
723                                    from_utf8(textclasslist[tc].name()));
724                 Alert::error(_("Could not load class"), s);
725         }
726 }
727
728
729 void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new);
730
731 } //namespace anon
732
733
734 void LyXFunc::dispatch(FuncRequest const & cmd)
735 {
736         string const argument = to_utf8(cmd.argument());
737         kb_action const action = cmd.action;
738
739         LYXERR(Debug::ACTION, "\nLyXFunc::dispatch: cmd: " << cmd);
740         //lyxerr << "LyXFunc::dispatch: cmd: " << cmd << endl;
741
742         // we have not done anything wrong yet.
743         errorstat = false;
744         dispatch_buffer.erase();
745
746         // redraw the screen at the end (first of the two drawing steps).
747         //This is done unless explicitely requested otherwise
748         Update::flags updateFlags = Update::FitCursor;
749
750         FuncStatus const flag = getStatus(cmd);
751         if (!flag.enabled()) {
752                 // We cannot use this function here
753                 LYXERR(Debug::ACTION, "LyXFunc::dispatch: "
754                        << lyxaction.getActionName(action)
755                        << " [" << action << "] is disabled at this location");
756                 setErrorMessage(flag.message());
757         } else {
758                 switch (action) {
759
760                 case LFUN_WORD_FIND_FORWARD:
761                 case LFUN_WORD_FIND_BACKWARD: {
762                         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
763                         static docstring last_search;
764                         docstring searched_string;
765
766                         if (!cmd.argument().empty()) {
767                                 last_search = cmd.argument();
768                                 searched_string = cmd.argument();
769                         } else {
770                                 searched_string = last_search;
771                         }
772
773                         if (searched_string.empty())
774                                 break;
775
776                         bool const fw = action == LFUN_WORD_FIND_FORWARD;
777                         docstring const data =
778                                 find2string(searched_string, true, false, fw);
779                         find(view(), FuncRequest(LFUN_WORD_FIND, data));
780                         break;
781                 }
782
783                 case LFUN_COMMAND_PREFIX:
784                         BOOST_ASSERT(lyx_view_);
785                         lyx_view_->message(keyseq.printOptions(true));
786                         break;
787
788                 case LFUN_CANCEL:
789                         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
790                         keyseq.reset();
791                         meta_fake_bit = NoModifier;
792                         if (lyx_view_->buffer())
793                                 // cancel any selection
794                                 dispatch(FuncRequest(LFUN_MARK_OFF));
795                         setMessage(from_ascii(N_("Cancel")));
796                         break;
797
798                 case LFUN_META_PREFIX:
799                         meta_fake_bit = AltModifier;
800                         setMessage(keyseq.print(KeySequence::ForGui));
801                         break;
802
803                 case LFUN_BUFFER_TOGGLE_READ_ONLY: {
804                         BOOST_ASSERT(lyx_view_ && lyx_view_->view() && lyx_view_->buffer());
805                         Buffer * buf = lyx_view_->buffer();
806                         if (buf->lyxvc().inUse())
807                                 buf->lyxvc().toggleReadOnly();
808                         else
809                                 buf->setReadonly(!lyx_view_->buffer()->isReadonly());
810                         break;
811                 }
812
813                 // --- Menus -----------------------------------------------
814                 case LFUN_BUFFER_NEW:
815                         lyx_view_->newDocument(argument, false);
816                         updateFlags = Update::None;
817                         break;
818
819                 case LFUN_BUFFER_NEW_TEMPLATE:
820                         lyx_view_->newDocument(argument, true);
821                         updateFlags = Update::None;
822                         break;
823
824                 case LFUN_BUFFER_CLOSE:
825                         closeBuffer();
826                         updateFlags = Update::None;
827                         break;
828
829                 case LFUN_BUFFER_RELOAD: {
830                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
831                         docstring const file = makeDisplayPath(lyx_view_->buffer()->absFileName(), 20);
832                         docstring text = bformat(_("Any changes will be lost. Are you sure "
833                                                              "you want to revert to the saved version of the document %1$s?"), file);
834                         int const ret = Alert::prompt(_("Revert to saved document?"),
835                                 text, 1, 1, _("&Revert"), _("&Cancel"));
836
837                         if (ret == 0)
838                                 reloadBuffer();
839                         break;
840                 }
841
842                 case LFUN_BUFFER_UPDATE:
843                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
844                         lyx_view_->buffer()->doExport(argument, true);
845                         break;
846
847                 case LFUN_BUFFER_VIEW:
848                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
849                         lyx_view_->buffer()->preview(argument);
850                         break;
851
852                 case LFUN_MASTER_BUFFER_UPDATE:
853                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer() && lyx_view_->buffer()->masterBuffer());
854                         lyx_view_->buffer()->masterBuffer()->doExport(argument, true);
855                         break;
856
857                 case LFUN_MASTER_BUFFER_VIEW:
858                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer() && lyx_view_->buffer()->masterBuffer());
859                         lyx_view_->buffer()->masterBuffer()->preview(argument);
860                         break;
861
862                 case LFUN_BUILD_PROGRAM:
863                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
864                         lyx_view_->buffer()->doExport("program", true);
865                         break;
866
867                 case LFUN_BUFFER_CHKTEX:
868                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
869                         lyx_view_->buffer()->runChktex();
870                         break;
871
872                 case LFUN_BUFFER_EXPORT:
873                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
874                         if (argument == "custom")
875                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, "sendto"));
876                         else
877                                 lyx_view_->buffer()->doExport(argument, false);
878                         break;
879
880                 case LFUN_BUFFER_EXPORT_CUSTOM: {
881                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
882                         string format_name;
883                         string command = split(argument, format_name, ' ');
884                         Format const * format = formats.getFormat(format_name);
885                         if (!format) {
886                                 lyxerr << "Format \"" << format_name
887                                        << "\" not recognized!"
888                                        << endl;
889                                 break;
890                         }
891
892                         Buffer * buffer = lyx_view_->buffer();
893
894                         // The name of the file created by the conversion process
895                         string filename;
896
897                         // Output to filename
898                         if (format->name() == "lyx") {
899                                 string const latexname = buffer->latexName(false);
900                                 filename = changeExtension(latexname,
901                                                            format->extension());
902                                 filename = addName(buffer->temppath(), filename);
903
904                                 if (!buffer->writeFile(FileName(filename)))
905                                         break;
906
907                         } else {
908                                 buffer->doExport(format_name, true, filename);
909                         }
910
911                         // Substitute $$FName for filename
912                         if (!contains(command, "$$FName"))
913                                 command = "( " + command + " ) < $$FName";
914                         command = subst(command, "$$FName", filename);
915
916                         // Execute the command in the background
917                         Systemcall call;
918                         call.startscript(Systemcall::DontWait, command);
919                         break;
920                 }
921
922                 case LFUN_BUFFER_PRINT: {
923                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
924                         // FIXME: cmd.getArg() might fail if one of the arguments
925                         // contains double quotes
926                         string target = cmd.getArg(0);
927                         string target_name = cmd.getArg(1);
928                         string command = cmd.getArg(2);
929
930                         if (target.empty()
931                             || target_name.empty()
932                             || command.empty()) {
933                                 lyxerr << "Unable to parse \""
934                                        << argument << '"' << endl;
935                                 break;
936                         }
937                         if (target != "printer" && target != "file") {
938                                 lyxerr << "Unrecognized target \""
939                                        << target << '"' << endl;
940                                 break;
941                         }
942
943                         Buffer * buffer = lyx_view_->buffer();
944
945                         if (!buffer->doExport("dvi", true)) {
946                                 showPrintError(buffer->absFileName());
947                                 break;
948                         }
949
950                         // Push directory path.
951                         string const path = buffer->temppath();
952                         // Prevent the compiler from optimizing away p
953                         FileName pp(path);
954                         PathChanger p(pp);
955
956                         // there are three cases here:
957                         // 1. we print to a file
958                         // 2. we print directly to a printer
959                         // 3. we print using a spool command (print to file first)
960                         Systemcall one;
961                         int res = 0;
962                         string const dviname =
963                                 changeExtension(buffer->latexName(true), "dvi");
964
965                         if (target == "printer") {
966                                 if (!lyxrc.print_spool_command.empty()) {
967                                         // case 3: print using a spool
968                                         string const psname =
969                                                 changeExtension(dviname,".ps");
970                                         command += ' ' + lyxrc.print_to_file
971                                                 + quoteName(psname)
972                                                 + ' '
973                                                 + quoteName(dviname);
974
975                                         string command2 =
976                                                 lyxrc.print_spool_command + ' ';
977                                         if (target_name != "default") {
978                                                 command2 += lyxrc.print_spool_printerprefix
979                                                         + target_name
980                                                         + ' ';
981                                         }
982                                         command2 += quoteName(psname);
983                                         // First run dvips.
984                                         // If successful, then spool command
985                                         res = one.startscript(
986                                                 Systemcall::Wait,
987                                                 command);
988
989                                         if (res == 0)
990                                                 res = one.startscript(
991                                                         Systemcall::DontWait,
992                                                         command2);
993                                 } else {
994                                         // case 2: print directly to a printer
995                                         if (target_name != "default")
996                                                 command += ' ' + lyxrc.print_to_printer + target_name + ' ';
997                                         res = one.startscript(
998                                                 Systemcall::DontWait,
999                                                 command + quoteName(dviname));
1000                                 }
1001
1002                         } else {
1003                                 // case 1: print to a file
1004                                 FileName const filename(makeAbsPath(target_name,
1005                                                         lyx_view_->buffer()->filePath()));
1006                                 FileName const dvifile(makeAbsPath(dviname, path));
1007                                 if (filename.exists()) {
1008                                         docstring text = bformat(
1009                                                 _("The file %1$s already exists.\n\n"
1010                                                   "Do you want to overwrite that file?"),
1011                                                 makeDisplayPath(filename.absFilename()));
1012                                         if (Alert::prompt(_("Overwrite file?"),
1013                                             text, 0, 1, _("&Overwrite"), _("&Cancel")) != 0)
1014                                                 break;
1015                                 }
1016                                 command += ' ' + lyxrc.print_to_file
1017                                         + quoteName(filename.toFilesystemEncoding())
1018                                         + ' '
1019                                         + quoteName(dvifile.toFilesystemEncoding());
1020                                 res = one.startscript(Systemcall::DontWait,
1021                                                       command);
1022                         }
1023
1024                         if (res != 0)
1025                                 showPrintError(buffer->absFileName());
1026                         break;
1027                 }
1028
1029                 // FIXME: There is need for a command-line import.
1030                 /*
1031                 case LFUN_BUFFER_IMPORT:
1032                         doImport(argument);
1033                         break;
1034                 */
1035
1036                 case LFUN_BUFFER_AUTO_SAVE:
1037                         lyx_view_->buffer()->autoSave();
1038                         break;
1039
1040                 case LFUN_RECONFIGURE:
1041                         BOOST_ASSERT(lyx_view_);
1042                         // argument is any additional parameter to the configure.py command
1043                         reconfigure(*lyx_view_, argument);
1044                         break;
1045
1046                 case LFUN_HELP_OPEN: {
1047                         BOOST_ASSERT(lyx_view_);
1048                         string const arg = argument;
1049                         if (arg.empty()) {
1050                                 setErrorMessage(from_ascii(N_("Missing argument")));
1051                                 break;
1052                         }
1053                         FileName const fname = i18nLibFileSearch("doc", arg, "lyx");
1054                         if (fname.empty()) {
1055                                 lyxerr << "LyX: unable to find documentation file `"
1056                                                          << arg << "'. Bad installation?" << endl;
1057                                 break;
1058                         }
1059                         lyx_view_->message(bformat(_("Opening help file %1$s..."),
1060                                 makeDisplayPath(fname.absFilename())));
1061                         Buffer * buf = lyx_view_->loadDocument(fname, false);
1062                         if (buf) {
1063                                 updateLabels(*buf);
1064                                 lyx_view_->setBuffer(buf);
1065                                 buf->errors("Parse");
1066                         }
1067                         updateFlags = Update::None;
1068                         break;
1069                 }
1070
1071                 // --- version control -------------------------------
1072                 case LFUN_VC_REGISTER:
1073                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1074                         if (!ensureBufferClean(view()))
1075                                 break;
1076                         if (!lyx_view_->buffer()->lyxvc().inUse()) {
1077                                 lyx_view_->buffer()->lyxvc().registrer();
1078                                 reloadBuffer();
1079                         }
1080                         updateFlags = Update::Force;
1081                         break;
1082
1083                 case LFUN_VC_CHECK_IN:
1084                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1085                         if (!ensureBufferClean(view()))
1086                                 break;
1087                         if (lyx_view_->buffer()->lyxvc().inUse()
1088                                         && !lyx_view_->buffer()->isReadonly()) {
1089                                 lyx_view_->buffer()->lyxvc().checkIn();
1090                                 reloadBuffer();
1091                         }
1092                         break;
1093
1094                 case LFUN_VC_CHECK_OUT:
1095                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1096                         if (!ensureBufferClean(view()))
1097                                 break;
1098                         if (lyx_view_->buffer()->lyxvc().inUse()
1099                                         && lyx_view_->buffer()->isReadonly()) {
1100                                 lyx_view_->buffer()->lyxvc().checkOut();
1101                                 reloadBuffer();
1102                         }
1103                         break;
1104
1105                 case LFUN_VC_REVERT:
1106                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1107                         lyx_view_->buffer()->lyxvc().revert();
1108                         reloadBuffer();
1109                         break;
1110
1111                 case LFUN_VC_UNDO_LAST:
1112                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1113                         lyx_view_->buffer()->lyxvc().undoLast();
1114                         reloadBuffer();
1115                         break;
1116
1117                 // --- buffers ----------------------------------------
1118
1119                 case LFUN_FILE_NEW: {
1120                         BOOST_ASSERT(lyx_view_);
1121                         string name;
1122                         string tmpname = split(argument, name, ':'); // Split filename
1123                         Buffer * const b = newFile(name, tmpname);
1124                         if (b)
1125                                 lyx_view_->setBuffer(b);
1126                         updateFlags = Update::None;
1127                         break;
1128                 }
1129
1130                 // --- lyxserver commands ----------------------------
1131                 case LFUN_SERVER_GET_NAME:
1132                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1133                         setMessage(from_utf8(lyx_view_->buffer()->absFileName()));
1134                         LYXERR(Debug::INFO, "FNAME["
1135                                 << lyx_view_->buffer()->absFileName() << ']');
1136                         break;
1137
1138                 case LFUN_SERVER_NOTIFY:
1139                         dispatch_buffer = keyseq.print(KeySequence::Portable);
1140                         theServer().notifyClient(to_utf8(dispatch_buffer));
1141                         break;
1142
1143                 case LFUN_SERVER_GOTO_FILE_ROW: {
1144                         BOOST_ASSERT(lyx_view_);
1145                         string file_name;
1146                         int row;
1147                         istringstream is(argument);
1148                         is >> file_name >> row;
1149                         Buffer * buf = 0;
1150                         bool loaded = false;
1151                         if (prefixIs(file_name, package().temp_dir().absFilename()))
1152                                 // Needed by inverse dvi search. If it is a file
1153                                 // in tmpdir, call the apropriated function
1154                                 buf = theBufferList().getBufferFromTmp(file_name);
1155                         else {
1156                                 // Must replace extension of the file to be .lyx
1157                                 // and get full path
1158                                 FileName const s = fileSearch(string(), changeExtension(file_name, ".lyx"), "lyx");
1159                                 // Either change buffer or load the file
1160                                 if (theBufferList().exists(s.absFilename()))
1161                                         buf = theBufferList().getBuffer(s.absFilename());
1162                                 else {
1163                                         buf = lyx_view_->loadDocument(s);
1164                                         loaded = true;
1165                                 }
1166                         }
1167
1168                         if (!buf) {
1169                                 updateFlags = Update::None;
1170                                 break;
1171                         }
1172
1173                         updateLabels(*buf);
1174                         lyx_view_->setBuffer(buf);
1175                         view()->setCursorFromRow(row);
1176                         if (loaded)
1177                                 buf->errors("Parse");
1178                         updateFlags = Update::FitCursor;
1179                         break;
1180                 }
1181
1182
1183                 case LFUN_DIALOG_SHOW_NEW_INSET: {
1184                         BOOST_ASSERT(lyx_view_);
1185                         string const name = cmd.getArg(0);
1186                         InsetCode code = insetCode(name);
1187                         string data = trim(to_utf8(cmd.argument()).substr(name.size()));
1188                         bool insetCodeOK = true;
1189                         switch (code) {
1190                         case BIBITEM_CODE:
1191                         case BIBTEX_CODE:
1192                         case INDEX_CODE:
1193                         case LABEL_CODE:
1194                         case NOMENCL_CODE:
1195                         case REF_CODE:
1196                         case TOC_CODE:
1197                         case HYPERLINK_CODE: {
1198                                 InsetCommandParams p(code);
1199                                 data = InsetCommandMailer::params2string(name, p);
1200                                 break;
1201                         } 
1202                         case INCLUDE_CODE: {
1203                                 // data is the include type: one of "include",
1204                                 // "input", "verbatiminput" or "verbatiminput*"
1205                                 if (data.empty())
1206                                         // default type is requested
1207                                         data = "include";
1208                                 InsetCommandParams p(INCLUDE_CODE, data);
1209                                 data = InsetCommandMailer::params2string("include", p);
1210                                 break;
1211                         } 
1212                         case BOX_CODE: {
1213                                 // \c data == "Boxed" || "Frameless" etc
1214                                 InsetBoxParams p(data);
1215                                 data = InsetBoxMailer::params2string(p);
1216                                 break;
1217                         } 
1218                         case BRANCH_CODE: {
1219                                 InsetBranchParams p;
1220                                 data = InsetBranchMailer::params2string(p);
1221                                 break;
1222                         } 
1223                         case CITE_CODE: {
1224                                 InsetCommandParams p(CITE_CODE);
1225                                 data = InsetCommandMailer::params2string(name, p);
1226                                 break;
1227                         } 
1228                         case ERT_CODE: {
1229                                 data = InsetERTMailer::params2string(InsetCollapsable::Open);
1230                                 break;
1231                         } 
1232                         case EXTERNAL_CODE: {
1233                                 InsetExternalParams p;
1234                                 Buffer const & buffer = *lyx_view_->buffer();
1235                                 data = InsetExternalMailer::params2string(p, buffer);
1236                                 break;
1237                         } 
1238                         case FLOAT_CODE:  {
1239                                 InsetFloatParams p;
1240                                 data = InsetFloatMailer::params2string(p);
1241                                 break;
1242                         } 
1243                         case LISTINGS_CODE: {
1244                                 InsetListingsParams p;
1245                                 data = InsetListingsMailer::params2string(p);
1246                                 break;
1247                         } 
1248                         case GRAPHICS_CODE: {
1249                                 InsetGraphicsParams p;
1250                                 Buffer const & buffer = *lyx_view_->buffer();
1251                                 data = InsetGraphicsMailer::params2string(p, buffer);
1252                                 break;
1253                         } 
1254                         case NOTE_CODE: {
1255                                 InsetNoteParams p;
1256                                 data = InsetNoteMailer::params2string(p);
1257                                 break;
1258                         } 
1259                         case VSPACE_CODE: {
1260                                 VSpace space;
1261                                 data = InsetVSpaceMailer::params2string(space);
1262                                 break;
1263                         } 
1264                         case WRAP_CODE: {
1265                                 InsetWrapParams p;
1266                                 data = InsetWrapMailer::params2string(p);
1267                                 break;
1268                         }
1269                         default:
1270                                 lyxerr << "Inset type '" << name << 
1271                                         "' not recognized in LFUN_DIALOG_SHOW_NEW_INSET" <<  endl;
1272                                 insetCodeOK = false;
1273                                 break;
1274                         } // end switch(code)
1275                         if (insetCodeOK)
1276                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, name + " " + data));
1277                         break;
1278                 }
1279
1280                 case LFUN_CITATION_INSERT: {
1281                         BOOST_ASSERT(lyx_view_);
1282                         if (!argument.empty()) {
1283                                 // we can have one optional argument, delimited by '|'
1284                                 // citation-insert <key>|<text_before>
1285                                 // this should be enhanced to also support text_after
1286                                 // and citation style
1287                                 string arg = argument;
1288                                 string opt1;
1289                                 if (contains(argument, "|")) {
1290                                         arg = token(argument, '|', 0);
1291                                         opt1 = token(argument, '|', 1);
1292                                 }
1293                                 InsetCommandParams icp(CITE_CODE);
1294                                 icp["key"] = from_utf8(arg);
1295                                 if (!opt1.empty())
1296                                         icp["before"] = from_utf8(opt1);
1297                                 string icstr = InsetCommandMailer::params2string("citation", icp);
1298                                 FuncRequest fr(LFUN_INSET_INSERT, icstr);
1299                                 dispatch(fr);
1300                         } else
1301                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW_NEW_INSET, "citation"));
1302                         break;
1303                 }
1304
1305                 case LFUN_BUFFER_CHILD_OPEN: {
1306                         BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
1307                         Buffer * parent = lyx_view_->buffer();
1308                         FileName filename = makeAbsPath(argument, parent->filePath());
1309                         view()->saveBookmark(false);
1310                         Buffer * child = 0;
1311                         bool parsed = false;
1312                         if (theBufferList().exists(filename.absFilename())) {
1313                                 child = theBufferList().getBuffer(filename.absFilename());
1314                         } else {
1315                                 setMessage(bformat(_("Opening child document %1$s..."),
1316                                         makeDisplayPath(filename.absFilename())));
1317                                 child = lyx_view_->loadDocument(filename, false);
1318                                 parsed = true;
1319                         }
1320                         if (child) {
1321                                 // Set the parent name of the child document.
1322                                 // This makes insertion of citations and references in the child work,
1323                                 // when the target is in the parent or another child document.
1324                                 child->setParent(parent);
1325                                 updateLabels(*child->masterBuffer());
1326                                 lyx_view_->setBuffer(child);
1327                                 if (parsed)
1328                                         child->errors("Parse");
1329                         }
1330
1331                         // If a screen update is required (in case where auto_open is false), 
1332                         // setBuffer() would have taken care of it already. Otherwise we shall 
1333                         // reset the update flag because it can cause a circular problem.
1334                         // See bug 3970.
1335                         updateFlags = Update::None;
1336                         break;
1337                 }
1338
1339                 case LFUN_TOGGLE_CURSOR_FOLLOWS_SCROLLBAR:
1340                         BOOST_ASSERT(lyx_view_);
1341                         lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1342                         break;
1343
1344                 case LFUN_KEYMAP_OFF:
1345                         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
1346                         lyx_view_->view()->getIntl().keyMapOn(false);
1347                         break;
1348
1349                 case LFUN_KEYMAP_PRIMARY:
1350                         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
1351                         lyx_view_->view()->getIntl().keyMapPrim();
1352                         break;
1353
1354                 case LFUN_KEYMAP_SECONDARY:
1355                         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
1356                         lyx_view_->view()->getIntl().keyMapSec();
1357                         break;
1358
1359                 case LFUN_KEYMAP_TOGGLE:
1360                         BOOST_ASSERT(lyx_view_ && lyx_view_->view());
1361                         lyx_view_->view()->getIntl().toggleKeyMap();
1362                         break;
1363
1364                 case LFUN_REPEAT: {
1365                         // repeat command
1366                         string countstr;
1367                         string rest = split(argument, countstr, ' ');
1368                         istringstream is(countstr);
1369                         int count = 0;
1370                         is >> count;
1371                         lyxerr << "repeat: count: " << count << " cmd: " << rest << endl;
1372                         for (int i = 0; i < count; ++i)
1373                                 dispatch(lyxaction.lookupFunc(rest));
1374                         break;
1375                 }
1376
1377                 case LFUN_COMMAND_SEQUENCE: {
1378                         // argument contains ';'-terminated commands
1379                         string arg = argument;
1380                         while (!arg.empty()) {
1381                                 string first;
1382                                 arg = split(arg, first, ';');
1383                                 FuncRequest func(lyxaction.lookupFunc(first));
1384                                 func.origin = cmd.origin;
1385                                 dispatch(func);
1386                         }
1387                         break;
1388                 }
1389
1390                 case LFUN_CALL: {
1391                         FuncRequest func;
1392                         if (LyX::ref().topLevelCmdDef().lock(argument, func)) {
1393                                 func.origin = cmd.origin;
1394                                 dispatch(func);
1395                                 LyX::ref().topLevelCmdDef().release(argument);
1396                         } else {
1397                                 if (func.action == LFUN_UNKNOWN_ACTION) {
1398                                         // unknown command definition
1399                                         lyxerr << "Warning: unknown command definition `"
1400                                                    << argument << "'"
1401                                                    << endl;
1402                                 } else {
1403                                         // recursion detected
1404                                         lyxerr << "Warning: Recursion in the command definition `"
1405                                                    << argument << "' detected"
1406                                                    << endl;
1407                                 }
1408                         }
1409                         break;
1410                 }
1411
1412                 case LFUN_PREFERENCES_SAVE: {
1413                         lyxrc.write(makeAbsPath("preferences",
1414                                                 package().user_support().absFilename()),
1415                                     false);
1416                         break;
1417                 }
1418
1419                 case LFUN_SET_COLOR: {
1420                         string lyx_name;
1421                         string const x11_name = split(argument, lyx_name, ' ');
1422                         if (lyx_name.empty() || x11_name.empty()) {
1423                                 setErrorMessage(from_ascii(N_(
1424                                                 "Syntax: set-color <lyx_name>"
1425                                                 " <x11_name>")));
1426                                 break;
1427                         }
1428
1429                         bool const graphicsbg_changed =
1430                                 (lyx_name == lcolor.getLyXName(Color_graphicsbg) &&
1431                                  x11_name != lcolor.getX11Name(Color_graphicsbg));
1432
1433                         if (!lcolor.setColor(lyx_name, x11_name)) {
1434                                 setErrorMessage(
1435                                                 bformat(_("Set-color \"%1$s\" failed "
1436                                                                        "- color is undefined or "
1437                                                                        "may not be redefined"),
1438                                                                            from_utf8(lyx_name)));
1439                                 break;
1440                         }
1441
1442                         theApp()->updateColor(lcolor.getFromLyXName(lyx_name));
1443
1444                         if (graphicsbg_changed) {
1445                                 // FIXME: The graphics cache no longer has a changeDisplay method.
1446 #if 0
1447                                 graphics::GCache::get().changeDisplay(true);
1448 #endif
1449                         }
1450                         break;
1451                 }
1452
1453                 case LFUN_MESSAGE:
1454                         BOOST_ASSERT(lyx_view_);
1455                         lyx_view_->message(from_utf8(argument));
1456                         break;
1457
1458                 case LFUN_EXTERNAL_EDIT: {
1459                         BOOST_ASSERT(lyx_view_);
1460                         FuncRequest fr(action, argument);
1461                         InsetExternal().dispatch(view()->cursor(), fr);
1462                         break;
1463                 }
1464
1465                 case LFUN_GRAPHICS_EDIT: {
1466                         FuncRequest fr(action, argument);
1467                         InsetGraphics().dispatch(view()->cursor(), fr);
1468                         break;
1469                 }
1470
1471                 case LFUN_ALL_INSETS_TOGGLE: {
1472                         BOOST_ASSERT(lyx_view_);
1473                         string action;
1474                         string const name = split(argument, action, ' ');
1475                         InsetCode const inset_code = insetCode(name);
1476
1477                         Cursor & cur = view()->cursor();
1478                         FuncRequest fr(LFUN_INSET_TOGGLE, action);
1479
1480                         Inset & inset = lyx_view_->buffer()->inset();
1481                         InsetIterator it  = inset_iterator_begin(inset);
1482                         InsetIterator const end = inset_iterator_end(inset);
1483                         for (; it != end; ++it) {
1484                                 if (!it->asInsetMath()
1485                                     && (inset_code == NO_CODE
1486                                     || inset_code == it->lyxCode())) {
1487                                         Cursor tmpcur = cur;
1488                                         tmpcur.pushBackward(*it);
1489                                         it->dispatch(tmpcur, fr);
1490                                 }
1491                         }
1492                         updateFlags = Update::Force | Update::FitCursor;
1493                         break;
1494                 }
1495
1496                 case LFUN_BUFFER_LANGUAGE: {
1497                         BOOST_ASSERT(lyx_view_);
1498                         Buffer & buffer = *lyx_view_->buffer();
1499                         Language const * oldL = buffer.params().language;
1500                         Language const * newL = languages.getLanguage(argument);
1501                         if (!newL || oldL == newL)
1502                                 break;
1503
1504                         if (oldL->rightToLeft() == newL->rightToLeft()
1505                             && !buffer.isMultiLingual())
1506                                 buffer.changeLanguage(oldL, newL);
1507                         break;
1508                 }
1509
1510                 case LFUN_BUFFER_SAVE_AS_DEFAULT: {
1511                         string const fname =
1512                                 addName(addPath(package().user_support().absFilename(), "templates/"),
1513                                         "defaults.lyx");
1514                         Buffer defaults(fname);
1515
1516                         istringstream ss(argument);
1517                         Lexer lex(0,0);
1518                         lex.setStream(ss);
1519                         int const unknown_tokens = defaults.readHeader(lex);
1520
1521                         if (unknown_tokens != 0) {
1522                                 lyxerr << "Warning in LFUN_BUFFER_SAVE_AS_DEFAULT!\n"
1523                                        << unknown_tokens << " unknown token"
1524                                        << (unknown_tokens == 1 ? "" : "s")
1525                                        << endl;
1526                         }
1527
1528                         if (defaults.writeFile(FileName(defaults.absFileName())))
1529                                 setMessage(bformat(_("Document defaults saved in %1$s"),
1530                                                    makeDisplayPath(fname)));
1531                         else
1532                                 setErrorMessage(from_ascii(N_("Unable to save document defaults")));
1533                         break;
1534                 }
1535
1536                 case LFUN_BUFFER_PARAMS_APPLY: {
1537                         BOOST_ASSERT(lyx_view_);
1538                         biblio::CiteEngine const oldEngine =
1539                                         lyx_view_->buffer()->params().getEngine();
1540                         
1541                         Buffer * buffer = lyx_view_->buffer();
1542
1543                         TextClassPtr oldClass = buffer->params().getTextClassPtr();
1544
1545                         Cursor & cur = view()->cursor();
1546                         cur.recordUndoFullDocument();
1547                         
1548                         istringstream ss(argument);
1549                         Lexer lex(0,0);
1550                         lex.setStream(ss);
1551                         int const unknown_tokens = buffer->readHeader(lex);
1552
1553                         if (unknown_tokens != 0) {
1554                                 lyxerr << "Warning in LFUN_BUFFER_PARAMS_APPLY!\n"
1555                                                 << unknown_tokens << " unknown token"
1556                                                 << (unknown_tokens == 1 ? "" : "s")
1557                                                 << endl;
1558                         }
1559                         
1560                         updateLayout(oldClass, buffer);
1561                         
1562                         biblio::CiteEngine const newEngine =
1563                                         lyx_view_->buffer()->params().getEngine();
1564                         
1565                         if (oldEngine != newEngine) {
1566                                 FuncRequest fr(LFUN_INSET_REFRESH);
1567         
1568                                 Inset & inset = lyx_view_->buffer()->inset();
1569                                 InsetIterator it  = inset_iterator_begin(inset);
1570                                 InsetIterator const end = inset_iterator_end(inset);
1571                                 for (; it != end; ++it)
1572                                         if (it->lyxCode() == CITE_CODE)
1573                                                 it->dispatch(cur, fr);
1574                         }
1575                         
1576                         updateFlags = Update::Force | Update::FitCursor;
1577                         // We are here most certainaly because of a change in the document
1578                         // It is then better to make sure that all dialogs are in sync
1579                         // with current document settings. LyXView::restartCursor() achieve this.
1580                         lyx_view_->restartCursor();
1581                         break;
1582                 }
1583                 
1584                 case LFUN_LAYOUT_MODULES_CLEAR: {
1585                         BOOST_ASSERT(lyx_view_);
1586                         Buffer * buffer = lyx_view_->buffer();
1587                         TextClassPtr oldClass = buffer->params().getTextClassPtr();
1588                         view()->cursor().recordUndoFullDocument();
1589                         buffer->params().clearLayoutModules();
1590                         buffer->params().makeTextClass();
1591                         updateLayout(oldClass, buffer);
1592                         updateFlags = Update::Force | Update::FitCursor;
1593                         break;
1594                 }
1595                 
1596                 case LFUN_LAYOUT_MODULE_ADD: {
1597                         BOOST_ASSERT(lyx_view_);
1598                         Buffer * buffer = lyx_view_->buffer();
1599                         TextClassPtr oldClass = buffer->params().getTextClassPtr();
1600                         view()->cursor().recordUndoFullDocument();
1601                         buffer->params().addLayoutModule(argument);
1602                         buffer->params().makeTextClass();
1603                         updateLayout(oldClass, buffer);
1604                         updateFlags = Update::Force | Update::FitCursor;
1605                         break;
1606                 }
1607
1608                 case LFUN_TEXTCLASS_APPLY: {
1609                         BOOST_ASSERT(lyx_view_);
1610                         Buffer * buffer = lyx_view_->buffer();
1611
1612                         loadTextClass(argument);
1613
1614                         pair<bool, textclass_type> const tc_pair =
1615                                 textclasslist.numberOfClass(argument);
1616
1617                         if (!tc_pair.first)
1618                                 break;
1619
1620                         textclass_type const old_class = buffer->params().getBaseClass();
1621                         textclass_type const new_class = tc_pair.second;
1622
1623                         if (old_class == new_class)
1624                                 // nothing to do
1625                                 break;
1626
1627                         //Save the old, possibly modular, layout for use in conversion.
1628                         TextClassPtr oldClass = buffer->params().getTextClassPtr();
1629                         view()->cursor().recordUndoFullDocument();
1630                         buffer->params().setBaseClass(new_class);
1631                         buffer->params().makeTextClass();
1632                         updateLayout(oldClass, buffer);
1633                         updateFlags = Update::Force | Update::FitCursor;
1634                         break;
1635                 }
1636                 
1637                 case LFUN_LAYOUT_RELOAD: {
1638                         BOOST_ASSERT(lyx_view_);
1639                         Buffer * buffer = lyx_view_->buffer();
1640                         TextClassPtr oldClass = buffer->params().getTextClassPtr();
1641                         textclass_type const tc = buffer->params().getBaseClass();
1642                         textclasslist.reset(tc);
1643                         buffer->params().setBaseClass(tc);
1644                         buffer->params().makeTextClass();
1645                         updateLayout(oldClass, buffer);
1646                         updateFlags = Update::Force | Update::FitCursor;
1647                         break;
1648                 }
1649
1650                 case LFUN_TEXTCLASS_LOAD:
1651                         loadTextClass(argument);
1652                         break;
1653
1654                 case LFUN_LYXRC_APPLY: {
1655                         LyXRC const lyxrc_orig = lyxrc;
1656
1657                         istringstream ss(argument);
1658                         bool const success = lyxrc.read(ss) == 0;
1659
1660                         if (!success) {
1661                                 lyxerr << "Warning in LFUN_LYXRC_APPLY!\n"
1662                                        << "Unable to read lyxrc data"
1663                                        << endl;
1664                                 break;
1665                         }
1666
1667                         actOnUpdatedPrefs(lyxrc_orig, lyxrc);
1668
1669                         theApp()->resetGui();
1670
1671                         /// We force the redraw in any case because there might be
1672                         /// some screen font changes.
1673                         /// FIXME: only the current view will be updated. the Gui
1674                         /// class is able to furnish the list of views.
1675                         updateFlags = Update::Force;
1676                         break;
1677                 }
1678
1679                 case LFUN_BOOKMARK_GOTO:
1680                         // go to bookmark, open unopened file and switch to buffer if necessary
1681                         gotoBookmark(convert<unsigned int>(to_utf8(cmd.argument())), true, true);
1682                         updateFlags = Update::FitCursor;
1683                         break;
1684
1685                 case LFUN_BOOKMARK_CLEAR:
1686                         LyX::ref().session().bookmarks().clear();
1687                         break;
1688
1689                 default:
1690                         BOOST_ASSERT(theApp());
1691                         // Let the frontend dispatch its own actions.
1692                         if (theApp()->dispatch(cmd))
1693                                 // Nothing more to do.
1694                                 return;
1695
1696                         // Let the current LyXView dispatch its own actions.
1697                         BOOST_ASSERT(lyx_view_);
1698                         if (lyx_view_->dispatch(cmd)) {
1699                                 if (lyx_view_->view())
1700                                         updateFlags = lyx_view_->view()->cursor().result().update();
1701                                 break;
1702                         }
1703
1704                         BOOST_ASSERT(lyx_view_->view());
1705                         // Let the current BufferView dispatch its own actions.
1706                         if (view()->dispatch(cmd)) {
1707                                 // The BufferView took care of its own updates if needed.
1708                                 updateFlags = Update::None;
1709                                 break;
1710                         }
1711
1712                         // Let the current Cursor dispatch its own actions.
1713                         view()->cursor().getPos(cursorPosBeforeDispatchX_,
1714                                                 cursorPosBeforeDispatchY_);
1715                         view()->cursor().dispatch(cmd);
1716                         updateFlags = view()->cursor().result().update();
1717                         if (!view()->cursor().result().dispatched()) {
1718                                 // No update needed in this case (e.g. when reaching
1719                                 // top of document.
1720                                 updateFlags = Update::None;
1721                         }
1722                 }
1723
1724                 if (lyx_view_ && lyx_view_->buffer()) {
1725                         // BufferView::update() updates the ViewMetricsInfo and
1726                         // also initializes the position cache for all insets in
1727                         // (at least partially) visible top-level paragraphs.
1728                         // We will redraw the screen only if needed.
1729                         view()->processUpdateFlags(updateFlags);
1730
1731                         // if we executed a mutating lfun, mark the buffer as dirty
1732                         if (flag.enabled()
1733                             && !lyxaction.funcHasFlag(action, LyXAction::NoBuffer)
1734                             && !lyxaction.funcHasFlag(action, LyXAction::ReadOnly))
1735                                 lyx_view_->buffer()->markDirty();                       
1736
1737                         //Do we have a selection?
1738                         theSelection().haveSelection(view()->cursor().selection());
1739                 }
1740         }
1741         if (!quitting && lyx_view_) {
1742                 // Some messages may already be translated, so we cannot use _()
1743                 sendDispatchMessage(translateIfPossible(getMessage()), cmd);
1744         }
1745 }
1746
1747
1748 void LyXFunc::sendDispatchMessage(docstring const & msg, FuncRequest const & cmd)
1749 {
1750         const bool verbose = (cmd.origin == FuncRequest::MENU
1751                               || cmd.origin == FuncRequest::TOOLBAR
1752                               || cmd.origin == FuncRequest::COMMANDBUFFER);
1753
1754         if (cmd.action == LFUN_SELF_INSERT || !verbose) {
1755                 LYXERR(Debug::ACTION, "dispatch msg is " << to_utf8(msg));
1756                 if (!msg.empty())
1757                         lyx_view_->message(msg);
1758                 return;
1759         }
1760
1761         docstring dispatch_msg = msg;
1762         if (!dispatch_msg.empty())
1763                 dispatch_msg += ' ';
1764
1765         docstring comname = from_utf8(lyxaction.getActionName(cmd.action));
1766
1767         bool argsadded = false;
1768
1769         if (!cmd.argument().empty()) {
1770                 if (cmd.action != LFUN_UNKNOWN_ACTION) {
1771                         comname += ' ' + cmd.argument();
1772                         argsadded = true;
1773                 }
1774         }
1775
1776         docstring const shortcuts = theTopLevelKeymap().printBindings(cmd);
1777
1778         if (!shortcuts.empty())
1779                 comname += ": " + shortcuts;
1780         else if (!argsadded && !cmd.argument().empty())
1781                 comname += ' ' + cmd.argument();
1782
1783         if (!comname.empty()) {
1784                 comname = rtrim(comname);
1785                 dispatch_msg += '(' + rtrim(comname) + ')';
1786         }
1787
1788         LYXERR(Debug::ACTION, "verbose dispatch msg " << to_utf8(dispatch_msg));
1789         if (!dispatch_msg.empty())
1790                 lyx_view_->message(dispatch_msg);
1791 }
1792
1793
1794 void LyXFunc::closeBuffer()
1795 {
1796         // goto bookmark to update bookmark pit.
1797         for (size_t i = 0; i < LyX::ref().session().bookmarks().size(); ++i)
1798                 gotoBookmark(i+1, false, false);
1799         
1800         lyx_view_->closeBuffer();
1801 }
1802
1803
1804 void LyXFunc::reloadBuffer()
1805 {
1806         FileName filename = lyx_view_->buffer()->fileName();
1807         // The user has already confirmed that the changes, if any, should
1808         // be discarded. So we just release the Buffer and don't call closeBuffer();
1809         theBufferList().release(lyx_view_->buffer());
1810         Buffer * buf = lyx_view_->loadDocument(filename);
1811         docstring const disp_fn = makeDisplayPath(filename.absFilename());
1812         docstring str;
1813         if (buf) {
1814                 updateLabels(*buf);
1815                 lyx_view_->setBuffer(buf);
1816                 buf->errors("Parse");
1817                 str = bformat(_("Document %1$s reloaded."), disp_fn);
1818         } else {
1819                 str = bformat(_("Could not reload document %1$s"), disp_fn);
1820         }
1821         lyx_view_->message(str);
1822 }
1823
1824 // Each "lyx_view_" should have it's own message method. lyxview and
1825 // the minibuffer would use the minibuffer, but lyxserver would
1826 // send an ERROR signal to its client.  Alejandro 970603
1827 // This function is bit problematic when it comes to NLS, to make the
1828 // lyx servers client be language indepenent we must not translate
1829 // strings sent to this func.
1830 void LyXFunc::setErrorMessage(docstring const & m) const
1831 {
1832         dispatch_buffer = m;
1833         errorstat = true;
1834 }
1835
1836
1837 void LyXFunc::setMessage(docstring const & m) const
1838 {
1839         dispatch_buffer = m;
1840 }
1841
1842
1843 docstring const LyXFunc::viewStatusMessage()
1844 {
1845         // When meta-fake key is pressed, show the key sequence so far + "M-".
1846         if (wasMetaKey())
1847                 return keyseq.print(KeySequence::ForGui) + "M-";
1848
1849         // Else, when a non-complete key sequence is pressed,
1850         // show the available options.
1851         if (keyseq.length() > 0 && !keyseq.deleted())
1852                 return keyseq.printOptions(true);
1853
1854         BOOST_ASSERT(lyx_view_);
1855         if (!lyx_view_->buffer())
1856                 return _("Welcome to LyX!");
1857
1858         return view()->cursor().currentState();
1859 }
1860
1861
1862 BufferView * LyXFunc::view() const
1863 {
1864         BOOST_ASSERT(lyx_view_);
1865         return lyx_view_->view();
1866 }
1867
1868
1869 bool LyXFunc::wasMetaKey() const
1870 {
1871         return (meta_fake_bit != NoModifier);
1872 }
1873
1874
1875 void LyXFunc::updateLayout(TextClassPtr const & oldlayout,
1876                            Buffer * buffer)
1877 {
1878         lyx_view_->message(_("Converting document to new document class..."));
1879         
1880         StableDocIterator backcur(view()->cursor());
1881         ErrorList & el = buffer->errorList("Class Switch");
1882         cap::switchBetweenClasses(
1883                         oldlayout, buffer->params().getTextClassPtr(),
1884                         static_cast<InsetText &>(buffer->inset()), el);
1885
1886         view()->setCursor(backcur.asDocIterator(&(buffer->inset())));
1887
1888         buffer->errors("Class Switch");
1889         updateLabels(*buffer);
1890 }
1891
1892
1893 namespace {
1894
1895 void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new)
1896 {
1897         // Why the switch you might ask. It is a trick to ensure that all
1898         // the elements in the LyXRCTags enum is handled. As you can see
1899         // there are no breaks at all. So it is just a huge fall-through.
1900         // The nice thing is that we will get a warning from the compiler
1901         // if we forget an element.
1902         LyXRC::LyXRCTags tag = LyXRC::RC_LAST;
1903         switch (tag) {
1904         case LyXRC::RC_ACCEPT_COMPOUND:
1905         case LyXRC::RC_ALT_LANG:
1906         case LyXRC::RC_PLAINTEXT_ROFF_COMMAND:
1907         case LyXRC::RC_PLAINTEXT_LINELEN:
1908         case LyXRC::RC_AUTOREGIONDELETE:
1909         case LyXRC::RC_AUTORESET_OPTIONS:
1910         case LyXRC::RC_AUTOSAVE:
1911         case LyXRC::RC_AUTO_NUMBER:
1912         case LyXRC::RC_BACKUPDIR_PATH:
1913         case LyXRC::RC_BIBTEX_COMMAND:
1914         case LyXRC::RC_BINDFILE:
1915         case LyXRC::RC_CHECKLASTFILES:
1916         case LyXRC::RC_USELASTFILEPOS:
1917         case LyXRC::RC_LOADSESSION:
1918         case LyXRC::RC_CHKTEX_COMMAND:
1919         case LyXRC::RC_CONVERTER:
1920         case LyXRC::RC_CONVERTER_CACHE_MAXAGE:
1921         case LyXRC::RC_COPIER:
1922         case LyXRC::RC_CURSOR_FOLLOWS_SCROLLBAR:
1923         case LyXRC::RC_CUSTOM_EXPORT_COMMAND:
1924         case LyXRC::RC_CUSTOM_EXPORT_FORMAT:
1925         case LyXRC::RC_DATE_INSERT_FORMAT:
1926         case LyXRC::RC_DEFAULT_LANGUAGE:
1927         case LyXRC::RC_DEFAULT_PAPERSIZE:
1928         case LyXRC::RC_DEFFILE:
1929         case LyXRC::RC_DIALOGS_ICONIFY_WITH_MAIN:
1930         case LyXRC::RC_DISPLAY_GRAPHICS:
1931         case LyXRC::RC_DOCUMENTPATH:
1932                 if (lyxrc_orig.document_path != lyxrc_new.document_path) {
1933                         FileName path(lyxrc_new.document_path);
1934                         if (path.exists() && path.isDirectory())
1935                                 package().document_dir() = FileName(lyxrc.document_path);
1936                 }
1937         case LyXRC::RC_ESC_CHARS:
1938         case LyXRC::RC_EXAMPLEPATH:
1939         case LyXRC::RC_FONT_ENCODING:
1940         case LyXRC::RC_FORMAT:
1941         case LyXRC::RC_INDEX_COMMAND:
1942         case LyXRC::RC_INPUT:
1943         case LyXRC::RC_KBMAP:
1944         case LyXRC::RC_KBMAP_PRIMARY:
1945         case LyXRC::RC_KBMAP_SECONDARY:
1946         case LyXRC::RC_LABEL_INIT_LENGTH:
1947         case LyXRC::RC_LANGUAGE_AUTO_BEGIN:
1948         case LyXRC::RC_LANGUAGE_AUTO_END:
1949         case LyXRC::RC_LANGUAGE_COMMAND_BEGIN:
1950         case LyXRC::RC_LANGUAGE_COMMAND_END:
1951         case LyXRC::RC_LANGUAGE_COMMAND_LOCAL:
1952         case LyXRC::RC_LANGUAGE_GLOBAL_OPTIONS:
1953         case LyXRC::RC_LANGUAGE_PACKAGE:
1954         case LyXRC::RC_LANGUAGE_USE_BABEL:
1955         case LyXRC::RC_MACRO_EDIT_STYLE:
1956         case LyXRC::RC_MAKE_BACKUP:
1957         case LyXRC::RC_MARK_FOREIGN_LANGUAGE:
1958         case LyXRC::RC_MOUSE_WHEEL_SPEED:
1959         case LyXRC::RC_NUMLASTFILES:
1960         case LyXRC::RC_PATH_PREFIX:
1961                 if (lyxrc_orig.path_prefix != lyxrc_new.path_prefix) {
1962                         prependEnvPath("PATH", lyxrc.path_prefix);
1963                 }
1964         case LyXRC::RC_PERS_DICT:
1965         case LyXRC::RC_PREVIEW:
1966         case LyXRC::RC_PREVIEW_HASHED_LABELS:
1967         case LyXRC::RC_PREVIEW_SCALE_FACTOR:
1968         case LyXRC::RC_PRINTCOLLCOPIESFLAG:
1969         case LyXRC::RC_PRINTCOPIESFLAG:
1970         case LyXRC::RC_PRINTER:
1971         case LyXRC::RC_PRINTEVENPAGEFLAG:
1972         case LyXRC::RC_PRINTEXSTRAOPTIONS:
1973         case LyXRC::RC_PRINTFILEEXTENSION:
1974         case LyXRC::RC_PRINTLANDSCAPEFLAG:
1975         case LyXRC::RC_PRINTODDPAGEFLAG:
1976         case LyXRC::RC_PRINTPAGERANGEFLAG:
1977         case LyXRC::RC_PRINTPAPERDIMENSIONFLAG:
1978         case LyXRC::RC_PRINTPAPERFLAG:
1979         case LyXRC::RC_PRINTREVERSEFLAG:
1980         case LyXRC::RC_PRINTSPOOL_COMMAND:
1981         case LyXRC::RC_PRINTSPOOL_PRINTERPREFIX:
1982         case LyXRC::RC_PRINTTOFILE:
1983         case LyXRC::RC_PRINTTOPRINTER:
1984         case LyXRC::RC_PRINT_ADAPTOUTPUT:
1985         case LyXRC::RC_PRINT_COMMAND:
1986         case LyXRC::RC_RTL_SUPPORT:
1987         case LyXRC::RC_SCREEN_DPI:
1988         case LyXRC::RC_SCREEN_FONT_ROMAN:
1989         case LyXRC::RC_SCREEN_FONT_ROMAN_FOUNDRY:
1990         case LyXRC::RC_SCREEN_FONT_SANS:
1991         case LyXRC::RC_SCREEN_FONT_SANS_FOUNDRY:
1992         case LyXRC::RC_SCREEN_FONT_SCALABLE:
1993         case LyXRC::RC_SCREEN_FONT_SIZES:
1994         case LyXRC::RC_SCREEN_FONT_TYPEWRITER:
1995         case LyXRC::RC_SCREEN_FONT_TYPEWRITER_FOUNDRY:
1996         case LyXRC::RC_GEOMETRY_SESSION:
1997         case LyXRC::RC_SCREEN_ZOOM:
1998         case LyXRC::RC_SERVERPIPE:
1999         case LyXRC::RC_SET_COLOR:
2000         case LyXRC::RC_SHOW_BANNER:
2001         case LyXRC::RC_SPELL_COMMAND:
2002         case LyXRC::RC_TEMPDIRPATH:
2003         case LyXRC::RC_TEMPLATEPATH:
2004         case LyXRC::RC_TEX_ALLOWS_SPACES:
2005         case LyXRC::RC_TEX_EXPECTS_WINDOWS_PATHS:
2006                 if (lyxrc_orig.windows_style_tex_paths != lyxrc_new.windows_style_tex_paths) {
2007                         os::windows_style_tex_paths(lyxrc_new.windows_style_tex_paths);
2008                 }
2009         case LyXRC::RC_UIFILE:
2010         case LyXRC::RC_USER_EMAIL:
2011         case LyXRC::RC_USER_NAME:
2012         case LyXRC::RC_USETEMPDIR:
2013         case LyXRC::RC_USE_ALT_LANG:
2014         case LyXRC::RC_USE_CONVERTER_CACHE:
2015         case LyXRC::RC_USE_ESC_CHARS:
2016         case LyXRC::RC_USE_INP_ENC:
2017         case LyXRC::RC_USE_PERS_DICT:
2018         case LyXRC::RC_USE_TOOLTIP:
2019         case LyXRC::RC_USE_PIXMAP_CACHE:
2020         case LyXRC::RC_USE_SPELL_LIB:
2021         case LyXRC::RC_VIEWDVI_PAPEROPTION:
2022         case LyXRC::RC_SORT_LAYOUTS:
2023         case LyXRC::RC_VIEWER:
2024         case LyXRC::RC_LAST:
2025                 break;
2026         }
2027 }
2028
2029 } // namespace anon
2030
2031
2032 } // namespace lyx