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