]> git.lyx.org Git - lyx.git/blob - src/LyXFunc.cpp
Paragraph:
[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_LIBAIKSAURUS
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_COMMAND_PREFIX:
572         case LFUN_COMMAND_EXECUTE:
573         case LFUN_CANCEL:
574         case LFUN_META_PREFIX:
575         case LFUN_BUFFER_CLOSE:
576         case LFUN_BUFFER_UPDATE:
577         case LFUN_BUFFER_VIEW:
578         case LFUN_MASTER_BUFFER_UPDATE:
579         case LFUN_MASTER_BUFFER_VIEW:
580         case LFUN_BUFFER_IMPORT:
581         case LFUN_BUFFER_AUTO_SAVE:
582         case LFUN_RECONFIGURE:
583         case LFUN_HELP_OPEN:
584         case LFUN_DROP_LAYOUTS_CHOICE:
585         case LFUN_MENU_OPEN:
586         case LFUN_SERVER_GET_FILENAME:
587         case LFUN_SERVER_NOTIFY:
588         case LFUN_SERVER_GOTO_FILE_ROW:
589         case LFUN_DIALOG_HIDE:
590         case LFUN_DIALOG_DISCONNECT_INSET:
591         case LFUN_BUFFER_CHILD_OPEN:
592         case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
593         case LFUN_KEYMAP_OFF:
594         case LFUN_KEYMAP_PRIMARY:
595         case LFUN_KEYMAP_SECONDARY:
596         case LFUN_KEYMAP_TOGGLE:
597         case LFUN_REPEAT:
598         case LFUN_BUFFER_EXPORT_CUSTOM:
599         case LFUN_BUFFER_PRINT:
600         case LFUN_PREFERENCES_SAVE:
601         case LFUN_MESSAGE:
602         case LFUN_INSET_EDIT:
603         case LFUN_BUFFER_LANGUAGE:
604         case LFUN_TEXTCLASS_APPLY:
605         case LFUN_TEXTCLASS_LOAD:
606         case LFUN_BUFFER_SAVE_AS_DEFAULT:
607         case LFUN_BUFFER_PARAMS_APPLY:
608         case LFUN_LAYOUT_MODULES_CLEAR:
609         case LFUN_LAYOUT_MODULE_ADD:
610         case LFUN_LAYOUT_RELOAD:
611         case LFUN_LYXRC_APPLY:
612         case LFUN_BUFFER_NEXT:
613         case LFUN_BUFFER_PREVIOUS:
614                 // these are handled in our dispatch()
615                 break;
616
617         default:
618                 if (!theApp()) {
619                         enable = false;
620                         break;
621                 }
622                 if (theApp()->getStatus(cmd, flag))
623                         break;
624
625                 // Does the view know something?
626                 if (!lyx_view_) {
627                         enable = false;
628                         break;
629                 }
630                 if (lyx_view_->getStatus(cmd, flag))
631                         break;
632
633                 // If we have a BufferView, try cursor position and
634                 // then the BufferView.
635                 if (!view()) {
636                         enable = false;
637                         break;
638                 }
639                 if (!getLocalStatus(view()->cursor(), cmd, flag))
640                         flag = view()->getStatus(cmd);
641         }
642
643         if (!enable)
644                 flag.setEnabled(false);
645
646         // Can we use a readonly buffer?
647         if (buf && buf->isReadonly()
648             && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
649             && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
650                 flag.message(from_utf8(N_("Document is read-only")));
651                 flag.setEnabled(false);
652         }
653
654         // Are we in a DELETED change-tracking region?
655         if (buf && view() 
656                 && lookupChangeType(view()->cursor(), true) == Change::DELETED
657             && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
658             && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
659                 flag.message(from_utf8(N_("This portion of the document is deleted.")));
660                 flag.setEnabled(false);
661         }
662
663         // the default error message if we disable the command
664         if (!flag.enabled() && flag.message().empty())
665                 flag.message(from_utf8(N_("Command disabled")));
666
667         return flag;
668 }
669
670
671 bool LyXFunc::ensureBufferClean(BufferView * bv)
672 {
673         Buffer & buf = bv->buffer();
674         if (buf.isClean())
675                 return true;
676
677         docstring const file = buf.fileName().displayName(30);
678         docstring text = bformat(_("The document %1$s has unsaved "
679                                              "changes.\n\nDo you want to save "
680                                              "the document?"), file);
681         int const ret = Alert::prompt(_("Save changed document?"),
682                                       text, 0, 1, _("&Save"),
683                                       _("&Cancel"));
684
685         if (ret == 0)
686                 dispatch(FuncRequest(LFUN_BUFFER_WRITE));
687
688         return buf.isClean();
689 }
690
691
692 namespace {
693
694 void showPrintError(string const & name)
695 {
696         docstring str = bformat(_("Could not print the document %1$s.\n"
697                                             "Check that your printer is set up correctly."),
698                              makeDisplayPath(name, 50));
699         Alert::error(_("Print document failed"), str);
700 }
701
702
703 bool loadLayoutFile(string const & name, string const & buf_path)
704 {
705         if (!LayoutFileList::get().haveClass(name)) {
706                 lyxerr << "Document class \"" << name
707                        << "\" does not exist."
708                        << endl;
709                 return false;
710         }
711
712         LayoutFile & tc = LayoutFileList::get()[name];
713         if (!tc.load(buf_path)) {
714                 docstring s = bformat(_("The document class %1$s "
715                                    "could not be loaded."), from_utf8(name));
716                 Alert::error(_("Could not load class"), s);
717                 return false;
718         }
719         return true;
720 }
721
722
723 void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new);
724
725 } //namespace anon
726
727
728 void LyXFunc::dispatch(FuncRequest const & cmd)
729 {
730         string const argument = to_utf8(cmd.argument());
731         FuncCode const action = cmd.action;
732
733         LYXERR(Debug::ACTION, "\nLyXFunc::dispatch: cmd: " << cmd);
734         //lyxerr << "LyXFunc::dispatch: cmd: " << cmd << endl;
735
736         // we have not done anything wrong yet.
737         errorstat = false;
738         dispatch_buffer.erase();
739
740         // redraw the screen at the end (first of the two drawing steps).
741         //This is done unless explicitely requested otherwise
742         Update::flags updateFlags = Update::FitCursor;
743
744         FuncStatus const flag = getStatus(cmd);
745         if (!flag.enabled()) {
746                 // We cannot use this function here
747                 LYXERR(Debug::ACTION, "LyXFunc::dispatch: "
748                        << lyxaction.getActionName(action)
749                        << " [" << action << "] is disabled at this location");
750                 setErrorMessage(flag.message());
751                 if (lyx_view_)
752                         lyx_view_->restartCursor();
753         } else {
754                 switch (action) {
755
756                 case LFUN_WORD_FIND_FORWARD:
757                 case LFUN_WORD_FIND_BACKWARD: {
758                         LASSERT(lyx_view_ && lyx_view_->view(), /**/);
759                         static docstring last_search;
760                         docstring searched_string;
761
762                         if (!cmd.argument().empty()) {
763                                 last_search = cmd.argument();
764                                 searched_string = cmd.argument();
765                         } else {
766                                 searched_string = last_search;
767                         }
768
769                         if (searched_string.empty())
770                                 break;
771
772                         bool const fw = action == LFUN_WORD_FIND_FORWARD;
773                         docstring const data =
774                                 find2string(searched_string, true, false, fw);
775                         find(view(), FuncRequest(LFUN_WORD_FIND, data));
776                         break;
777                 }
778
779                 case LFUN_COMMAND_PREFIX:
780                         LASSERT(lyx_view_, /**/);
781                         lyx_view_->message(keyseq.printOptions(true));
782                         break;
783
784                 case LFUN_CANCEL:
785                         LASSERT(lyx_view_ && lyx_view_->view(), /**/);
786                         keyseq.reset();
787                         meta_fake_bit = NoModifier;
788                         if (lyx_view_->buffer())
789                                 // cancel any selection
790                                 dispatch(FuncRequest(LFUN_MARK_OFF));
791                         setMessage(from_ascii(N_("Cancel")));
792                         break;
793
794                 case LFUN_META_PREFIX:
795                         meta_fake_bit = AltModifier;
796                         setMessage(keyseq.print(KeySequence::ForGui));
797                         break;
798
799                 case LFUN_BUFFER_TOGGLE_READ_ONLY: {
800                         LASSERT(lyx_view_ && lyx_view_->view() && lyx_view_->buffer(), /**/);
801                         Buffer * buf = lyx_view_->buffer();
802                         if (buf->lyxvc().inUse())
803                                 buf->lyxvc().toggleReadOnly();
804                         else
805                                 buf->setReadonly(!lyx_view_->buffer()->isReadonly());
806                         break;
807                 }
808
809                 // --- Menus -----------------------------------------------
810                 case LFUN_BUFFER_CLOSE:
811                         lyx_view_->closeBuffer();
812                         updateFlags = Update::None;
813                         break;
814
815                 case LFUN_BUFFER_RELOAD: {
816                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
817                         docstring const file = makeDisplayPath(lyx_view_->buffer()->absFileName(), 20);
818                         docstring text = bformat(_("Any changes will be lost. Are you sure "
819                                                              "you want to revert to the saved version of the document %1$s?"), file);
820                         int const ret = Alert::prompt(_("Revert to saved document?"),
821                                 text, 1, 1, _("&Revert"), _("&Cancel"));
822
823                         if (ret == 0)
824                                 reloadBuffer();
825                         break;
826                 }
827
828                 case LFUN_BUFFER_UPDATE:
829                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
830                         lyx_view_->buffer()->doExport(argument, true);
831                         break;
832
833                 case LFUN_BUFFER_VIEW:
834                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
835                         lyx_view_->buffer()->preview(argument);
836                         break;
837
838                 case LFUN_MASTER_BUFFER_UPDATE:
839                         LASSERT(lyx_view_ && lyx_view_->buffer() && lyx_view_->buffer()->masterBuffer(), /**/);
840                         lyx_view_->buffer()->masterBuffer()->doExport(argument, true);
841                         break;
842
843                 case LFUN_MASTER_BUFFER_VIEW:
844                         LASSERT(lyx_view_ && lyx_view_->buffer() && lyx_view_->buffer()->masterBuffer(), /**/);
845                         lyx_view_->buffer()->masterBuffer()->preview(argument);
846                         break;
847
848                 case LFUN_BUILD_PROGRAM:
849                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
850                         lyx_view_->buffer()->doExport("program", true);
851                         break;
852
853                 case LFUN_BUFFER_CHKTEX:
854                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
855                         lyx_view_->buffer()->runChktex();
856                         break;
857
858                 case LFUN_BUFFER_EXPORT:
859                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
860                         if (argument == "custom")
861                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, "sendto"));
862                         else
863                                 lyx_view_->buffer()->doExport(argument, false);
864                         break;
865
866                 case LFUN_BUFFER_EXPORT_CUSTOM: {
867                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
868                         string format_name;
869                         string command = split(argument, format_name, ' ');
870                         Format const * format = formats.getFormat(format_name);
871                         if (!format) {
872                                 lyxerr << "Format \"" << format_name
873                                        << "\" not recognized!"
874                                        << endl;
875                                 break;
876                         }
877
878                         Buffer * buffer = lyx_view_->buffer();
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_ && 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                         Buffer * buffer = lyx_view_->buffer();
930
931                         if (!buffer->doExport("dvi", true)) {
932                                 showPrintError(buffer->absFileName());
933                                 break;
934                         }
935
936                         // Push directory path.
937                         string const path = buffer->temppath();
938                         // Prevent the compiler from optimizing away p
939                         FileName pp(path);
940                         PathChanger p(pp);
941
942                         // there are three cases here:
943                         // 1. we print to a file
944                         // 2. we print directly to a printer
945                         // 3. we print using a spool command (print to file first)
946                         Systemcall one;
947                         int res = 0;
948                         string const dviname =
949                                 changeExtension(buffer->latexName(true), "dvi");
950
951                         if (target == "printer") {
952                                 if (!lyxrc.print_spool_command.empty()) {
953                                         // case 3: print using a spool
954                                         string const psname =
955                                                 changeExtension(dviname,".ps");
956                                         command += ' ' + lyxrc.print_to_file
957                                                 + quoteName(psname)
958                                                 + ' '
959                                                 + quoteName(dviname);
960
961                                         string command2 =
962                                                 lyxrc.print_spool_command + ' ';
963                                         if (target_name != "default") {
964                                                 command2 += lyxrc.print_spool_printerprefix
965                                                         + target_name
966                                                         + ' ';
967                                         }
968                                         command2 += quoteName(psname);
969                                         // First run dvips.
970                                         // If successful, then spool command
971                                         res = one.startscript(
972                                                 Systemcall::Wait,
973                                                 command);
974
975                                         if (res == 0)
976                                                 res = one.startscript(
977                                                         Systemcall::DontWait,
978                                                         command2);
979                                 } else {
980                                         // case 2: print directly to a printer
981                                         if (target_name != "default")
982                                                 command += ' ' + lyxrc.print_to_printer + target_name + ' ';
983                                         res = one.startscript(
984                                                 Systemcall::DontWait,
985                                                 command + quoteName(dviname));
986                                 }
987
988                         } else {
989                                 // case 1: print to a file
990                                 FileName const filename(makeAbsPath(target_name,
991                                                         lyx_view_->buffer()->filePath()));
992                                 FileName const dvifile(makeAbsPath(dviname, path));
993                                 if (filename.exists()) {
994                                         docstring text = bformat(
995                                                 _("The file %1$s already exists.\n\n"
996                                                   "Do you want to overwrite that file?"),
997                                                 makeDisplayPath(filename.absFilename()));
998                                         if (Alert::prompt(_("Overwrite file?"),
999                                             text, 0, 1, _("&Overwrite"), _("&Cancel")) != 0)
1000                                                 break;
1001                                 }
1002                                 command += ' ' + lyxrc.print_to_file
1003                                         + quoteName(filename.toFilesystemEncoding())
1004                                         + ' '
1005                                         + quoteName(dvifile.toFilesystemEncoding());
1006                                 res = one.startscript(Systemcall::DontWait,
1007                                                       command);
1008                         }
1009
1010                         if (res != 0)
1011                                 showPrintError(buffer->absFileName());
1012                         break;
1013                 }
1014
1015                 // FIXME: There is need for a command-line import.
1016                 /*
1017                 case LFUN_BUFFER_IMPORT:
1018                         doImport(argument);
1019                         break;
1020                 */
1021
1022                 case LFUN_BUFFER_AUTO_SAVE:
1023                         lyx_view_->buffer()->autoSave();
1024                         break;
1025
1026                 case LFUN_RECONFIGURE:
1027                         // argument is any additional parameter to the configure.py command
1028                         reconfigure(lyx_view_, argument);
1029                         break;
1030
1031                 case LFUN_HELP_OPEN: {
1032                         LASSERT(lyx_view_, /**/);
1033                         string const arg = argument;
1034                         if (arg.empty()) {
1035                                 setErrorMessage(from_ascii(N_("Missing argument")));
1036                                 break;
1037                         }
1038                         FileName const fname = i18nLibFileSearch("doc", arg, "lyx");
1039                         if (fname.empty()) {
1040                                 lyxerr << "LyX: unable to find documentation file `"
1041                                                          << arg << "'. Bad installation?" << endl;
1042                                 break;
1043                         }
1044                         lyx_view_->message(bformat(_("Opening help file %1$s..."),
1045                                 makeDisplayPath(fname.absFilename())));
1046                         Buffer * buf = lyx_view_->loadDocument(fname, false);
1047                         if (buf) {
1048                                 updateLabels(*buf);
1049                                 lyx_view_->setBuffer(buf);
1050                                 buf->errors("Parse");
1051                         }
1052                         updateFlags = Update::None;
1053                         break;
1054                 }
1055
1056                 // --- version control -------------------------------
1057                 case LFUN_VC_REGISTER:
1058                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1059                         if (!ensureBufferClean(view()) || lyx_view_->buffer()->isUnnamed())
1060                                 break;
1061                         if (!lyx_view_->buffer()->lyxvc().inUse()) {
1062                                 lyx_view_->buffer()->lyxvc().registrer();
1063                                 reloadBuffer();
1064                         }
1065                         updateFlags = Update::Force;
1066                         break;
1067
1068                 case LFUN_VC_CHECK_IN:
1069                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1070                         if (!ensureBufferClean(view()))
1071                                 break;
1072                         if (lyx_view_->buffer()->lyxvc().inUse()
1073                                         && !lyx_view_->buffer()->isReadonly()) {
1074                                 setMessage(from_utf8(lyx_view_->buffer()->lyxvc().checkIn()));
1075                                 reloadBuffer();
1076                         }
1077                         break;
1078
1079                 case LFUN_VC_CHECK_OUT:
1080                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1081                         if (!ensureBufferClean(view()))
1082                                 break;
1083                         if (lyx_view_->buffer()->lyxvc().inUse()) {
1084                                 setMessage(from_utf8(lyx_view_->buffer()->lyxvc().checkOut()));
1085                                 reloadBuffer();
1086                         }
1087                         break;
1088
1089                 case LFUN_VC_REVERT:
1090                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1091                         lyx_view_->buffer()->lyxvc().revert();
1092                         reloadBuffer();
1093                         break;
1094
1095                 case LFUN_VC_UNDO_LAST:
1096                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1097                         lyx_view_->buffer()->lyxvc().undoLast();
1098                         reloadBuffer();
1099                         break;
1100
1101                 // --- lyxserver commands ----------------------------
1102                 case LFUN_SERVER_GET_FILENAME:
1103                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1104                         setMessage(from_utf8(lyx_view_->buffer()->absFileName()));
1105                         LYXERR(Debug::INFO, "FNAME["
1106                                 << lyx_view_->buffer()->absFileName() << ']');
1107                         break;
1108
1109                 case LFUN_SERVER_NOTIFY:
1110                         dispatch_buffer = keyseq.print(KeySequence::Portable);
1111                         theServer().notifyClient(to_utf8(dispatch_buffer));
1112                         break;
1113
1114                 case LFUN_SERVER_GOTO_FILE_ROW: {
1115                         LASSERT(lyx_view_, /**/);
1116                         string file_name;
1117                         int row;
1118                         istringstream is(argument);
1119                         is >> file_name >> row;
1120                         Buffer * buf = 0;
1121                         bool loaded = false;
1122                         if (prefixIs(file_name, package().temp_dir().absFilename()))
1123                                 // Needed by inverse dvi search. If it is a file
1124                                 // in tmpdir, call the apropriated function
1125                                 buf = theBufferList().getBufferFromTmp(file_name);
1126                         else {
1127                                 // Must replace extension of the file to be .lyx
1128                                 // and get full path
1129                                 FileName const s = fileSearch(string(), changeExtension(file_name, ".lyx"), "lyx");
1130                                 // Either change buffer or load the file
1131                                 if (theBufferList().exists(s))
1132                                         buf = theBufferList().getBuffer(s);
1133                                 else {
1134                                         buf = lyx_view_->loadDocument(s);
1135                                         loaded = true;
1136                                 }
1137                         }
1138
1139                         if (!buf) {
1140                                 updateFlags = Update::None;
1141                                 break;
1142                         }
1143
1144                         updateLabels(*buf);
1145                         lyx_view_->setBuffer(buf);
1146                         view()->setCursorFromRow(row);
1147                         if (loaded)
1148                                 buf->errors("Parse");
1149                         updateFlags = Update::FitCursor;
1150                         break;
1151                 }
1152
1153
1154                 case LFUN_DIALOG_SHOW_NEW_INSET: {
1155                         LASSERT(lyx_view_, /**/);
1156                         string const name = cmd.getArg(0);
1157                         InsetCode code = insetCode(name);
1158                         string data = trim(to_utf8(cmd.argument()).substr(name.size()));
1159                         bool insetCodeOK = true;
1160                         switch (code) {
1161                         case BIBITEM_CODE:
1162                         case BIBTEX_CODE:
1163                         case INDEX_CODE:
1164                         case LABEL_CODE:
1165                         case NOMENCL_CODE:
1166                         case REF_CODE:
1167                         case TOC_CODE:
1168                         case HYPERLINK_CODE: {
1169                                 InsetCommandParams p(code);
1170                                 data = InsetCommand::params2string(name, p);
1171                                 break;
1172                         } 
1173                         case INCLUDE_CODE: {
1174                                 // data is the include type: one of "include",
1175                                 // "input", "verbatiminput" or "verbatiminput*"
1176                                 if (data.empty())
1177                                         // default type is requested
1178                                         data = "include";
1179                                 InsetCommandParams p(INCLUDE_CODE, data);
1180                                 data = InsetCommand::params2string("include", p);
1181                                 break;
1182                         } 
1183                         case BOX_CODE: {
1184                                 // \c data == "Boxed" || "Frameless" etc
1185                                 InsetBoxParams p(data);
1186                                 data = InsetBox::params2string(p);
1187                                 break;
1188                         } 
1189                         case BRANCH_CODE: {
1190                                 InsetBranchParams p;
1191                                 data = InsetBranch::params2string(p);
1192                                 break;
1193                         } 
1194                         case CITE_CODE: {
1195                                 InsetCommandParams p(CITE_CODE);
1196                                 data = InsetCommand::params2string(name, p);
1197                                 break;
1198                         } 
1199                         case ERT_CODE: {
1200                                 data = InsetERT::params2string(InsetCollapsable::Open);
1201                                 break;
1202                         } 
1203                         case EXTERNAL_CODE: {
1204                                 InsetExternalParams p;
1205                                 Buffer const & buffer = *lyx_view_->buffer();
1206                                 data = InsetExternal::params2string(p, buffer);
1207                                 break;
1208                         } 
1209                         case FLOAT_CODE:  {
1210                                 InsetFloatParams p;
1211                                 data = InsetFloat::params2string(p);
1212                                 break;
1213                         } 
1214                         case LISTINGS_CODE: {
1215                                 InsetListingsParams p;
1216                                 data = InsetListings::params2string(p);
1217                                 break;
1218                         } 
1219                         case GRAPHICS_CODE: {
1220                                 InsetGraphicsParams p;
1221                                 Buffer const & buffer = *lyx_view_->buffer();
1222                                 data = InsetGraphics::params2string(p, buffer);
1223                                 break;
1224                         } 
1225                         case NOTE_CODE: {
1226                                 InsetNoteParams p;
1227                                 data = InsetNote::params2string(p);
1228                                 break;
1229                         } 
1230                         case SPACE_CODE: {
1231                                 InsetSpaceParams p;
1232                                 data = InsetSpace::params2string(p);
1233                                 break;
1234                         } 
1235                         case VSPACE_CODE: {
1236                                 VSpace space;
1237                                 data = InsetVSpace::params2string(space);
1238                                 break;
1239                         } 
1240                         case WRAP_CODE: {
1241                                 InsetWrapParams p;
1242                                 data = InsetWrap::params2string(p);
1243                                 break;
1244                         }
1245                         default:
1246                                 lyxerr << "Inset type '" << name << 
1247                                         "' not recognized in LFUN_DIALOG_SHOW_NEW_INSET" <<  endl;
1248                                 insetCodeOK = false;
1249                                 break;
1250                         } // end switch(code)
1251                         if (insetCodeOK)
1252                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, name + " " + data));
1253                         break;
1254                 }
1255
1256                 case LFUN_CITATION_INSERT: {
1257                         LASSERT(lyx_view_, /**/);
1258                         if (!argument.empty()) {
1259                                 // we can have one optional argument, delimited by '|'
1260                                 // citation-insert <key>|<text_before>
1261                                 // this should be enhanced to also support text_after
1262                                 // and citation style
1263                                 string arg = argument;
1264                                 string opt1;
1265                                 if (contains(argument, "|")) {
1266                                         arg = token(argument, '|', 0);
1267                                         opt1 = token(argument, '|', 1);
1268                                 }
1269                                 InsetCommandParams icp(CITE_CODE);
1270                                 icp["key"] = from_utf8(arg);
1271                                 if (!opt1.empty())
1272                                         icp["before"] = from_utf8(opt1);
1273                                 string icstr = InsetCommand::params2string("citation", icp);
1274                                 FuncRequest fr(LFUN_INSET_INSERT, icstr);
1275                                 dispatch(fr);
1276                         } else
1277                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW_NEW_INSET, "citation"));
1278                         break;
1279                 }
1280
1281                 case LFUN_BUFFER_CHILD_OPEN: {
1282                         LASSERT(lyx_view_ && lyx_view_->buffer(), /**/);
1283                         Buffer * parent = lyx_view_->buffer();
1284                         FileName filename = makeAbsPath(argument, parent->filePath());
1285                         view()->saveBookmark(false);
1286                         Buffer * child = 0;
1287                         bool parsed = false;
1288                         if (theBufferList().exists(filename)) {
1289                                 child = theBufferList().getBuffer(filename);
1290                         } else {
1291                                 setMessage(bformat(_("Opening child document %1$s..."),
1292                                         makeDisplayPath(filename.absFilename())));
1293                                 child = lyx_view_->loadDocument(filename, false);
1294                                 parsed = true;
1295                         }
1296                         if (child) {
1297                                 // Set the parent name of the child document.
1298                                 // This makes insertion of citations and references in the child work,
1299                                 // when the target is in the parent or another child document.
1300                                 child->setParent(parent);
1301                                 updateLabels(*child->masterBuffer());
1302                                 lyx_view_->setBuffer(child);
1303                                 if (parsed)
1304                                         child->errors("Parse");
1305                         }
1306
1307                         // If a screen update is required (in case where auto_open is false), 
1308                         // setBuffer() would have taken care of it already. Otherwise we shall 
1309                         // reset the update flag because it can cause a circular problem.
1310                         // See bug 3970.
1311                         updateFlags = Update::None;
1312                         break;
1313                 }
1314
1315                 case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
1316                         LASSERT(lyx_view_, /**/);
1317                         lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1318                         break;
1319
1320                 case LFUN_KEYMAP_OFF:
1321                         LASSERT(lyx_view_ && lyx_view_->view(), /**/);
1322                         lyx_view_->view()->getIntl().keyMapOn(false);
1323                         break;
1324
1325                 case LFUN_KEYMAP_PRIMARY:
1326                         LASSERT(lyx_view_ && lyx_view_->view(), /**/);
1327                         lyx_view_->view()->getIntl().keyMapPrim();
1328                         break;
1329
1330                 case LFUN_KEYMAP_SECONDARY:
1331                         LASSERT(lyx_view_ && lyx_view_->view(), /**/);
1332                         lyx_view_->view()->getIntl().keyMapSec();
1333                         break;
1334
1335                 case LFUN_KEYMAP_TOGGLE:
1336                         LASSERT(lyx_view_ && lyx_view_->view(), /**/);
1337                         lyx_view_->view()->getIntl().toggleKeyMap();
1338                         break;
1339
1340                 case LFUN_REPEAT: {
1341                         // repeat command
1342                         string countstr;
1343                         string rest = split(argument, countstr, ' ');
1344                         istringstream is(countstr);
1345                         int count = 0;
1346                         is >> count;
1347                         lyxerr << "repeat: count: " << count << " cmd: " << rest << endl;
1348                         for (int i = 0; i < count; ++i)
1349                                 dispatch(lyxaction.lookupFunc(rest));
1350                         break;
1351                 }
1352
1353                 case LFUN_COMMAND_SEQUENCE: {
1354                         // argument contains ';'-terminated commands
1355                         string arg = argument;
1356                         while (!arg.empty()) {
1357                                 string first;
1358                                 arg = split(arg, first, ';');
1359                                 FuncRequest func(lyxaction.lookupFunc(first));
1360                                 func.origin = cmd.origin;
1361                                 dispatch(func);
1362                         }
1363                         break;
1364                 }
1365
1366                 case LFUN_COMMAND_ALTERNATIVES: {
1367                         // argument contains ';'-terminated commands
1368                         string arg = argument;
1369                         while (!arg.empty()) {
1370                                 string first;
1371                                 arg = split(arg, first, ';');
1372                                 FuncRequest func(lyxaction.lookupFunc(first));
1373                                 func.origin = cmd.origin;
1374                                 FuncStatus stat = getStatus(func);
1375                                 if (stat.enabled()) {
1376                                         dispatch(func);
1377                                         break;
1378                                 }
1379                         }
1380                         break;
1381                 }
1382
1383                 case LFUN_CALL: {
1384                         FuncRequest func;
1385                         if (theTopLevelCmdDef().lock(argument, func)) {
1386                                 func.origin = cmd.origin;
1387                                 dispatch(func);
1388                                 theTopLevelCmdDef().release(argument);
1389                         } else {
1390                                 if (func.action == LFUN_UNKNOWN_ACTION) {
1391                                         // unknown command definition
1392                                         lyxerr << "Warning: unknown command definition `"
1393                                                    << argument << "'"
1394                                                    << endl;
1395                                 } else {
1396                                         // recursion detected
1397                                         lyxerr << "Warning: Recursion in the command definition `"
1398                                                    << argument << "' detected"
1399                                                    << endl;
1400                                 }
1401                         }
1402                         break;
1403                 }
1404
1405                 case LFUN_PREFERENCES_SAVE: {
1406                         lyxrc.write(makeAbsPath("preferences",
1407                                                 package().user_support().absFilename()),
1408                                     false);
1409                         break;
1410                 }
1411
1412                 case LFUN_MESSAGE:
1413                         LASSERT(lyx_view_, /**/);
1414                         lyx_view_->message(from_utf8(argument));
1415                         break;
1416
1417                 case LFUN_BUFFER_LANGUAGE: {
1418                         LASSERT(lyx_view_, /**/);
1419                         Buffer & buffer = *lyx_view_->buffer();
1420                         Language const * oldL = buffer.params().language;
1421                         Language const * newL = languages.getLanguage(argument);
1422                         if (!newL || oldL == newL)
1423                                 break;
1424
1425                         if (oldL->rightToLeft() == newL->rightToLeft()
1426                             && !buffer.isMultiLingual())
1427                                 buffer.changeLanguage(oldL, newL);
1428                         break;
1429                 }
1430
1431                 case LFUN_BUFFER_SAVE_AS_DEFAULT: {
1432                         string const fname =
1433                                 addName(addPath(package().user_support().absFilename(), "templates/"),
1434                                         "defaults.lyx");
1435                         Buffer defaults(fname);
1436
1437                         istringstream ss(argument);
1438                         Lexer lex;
1439                         lex.setStream(ss);
1440                         int const unknown_tokens = defaults.readHeader(lex);
1441
1442                         if (unknown_tokens != 0) {
1443                                 lyxerr << "Warning in LFUN_BUFFER_SAVE_AS_DEFAULT!\n"
1444                                        << unknown_tokens << " unknown token"
1445                                        << (unknown_tokens == 1 ? "" : "s")
1446                                        << endl;
1447                         }
1448
1449                         if (defaults.writeFile(FileName(defaults.absFileName())))
1450                                 setMessage(bformat(_("Document defaults saved in %1$s"),
1451                                                    makeDisplayPath(fname)));
1452                         else
1453                                 setErrorMessage(from_ascii(N_("Unable to save document defaults")));
1454                         break;
1455                 }
1456
1457                 case LFUN_BUFFER_PARAMS_APPLY: {
1458                         LASSERT(lyx_view_, /**/);
1459                         
1460                         Buffer * buffer = lyx_view_->buffer();
1461                         DocumentClass const * const oldClass = buffer->params().documentClassPtr();
1462                         Cursor & cur = view()->cursor();
1463                         cur.recordUndoFullDocument();
1464                         
1465                         istringstream ss(argument);
1466                         Lexer lex;
1467                         lex.setStream(ss);
1468                         int const unknown_tokens = buffer->readHeader(lex);
1469
1470                         if (unknown_tokens != 0) {
1471                                 lyxerr << "Warning in LFUN_BUFFER_PARAMS_APPLY!\n"
1472                                                 << unknown_tokens << " unknown token"
1473                                                 << (unknown_tokens == 1 ? "" : "s")
1474                                                 << endl;
1475                         }
1476                         
1477                         updateLayout(oldClass, buffer);
1478                         
1479                         updateFlags = Update::Force | Update::FitCursor;
1480                         // We are most certainly here because of a change in the document
1481                         // It is then better to make sure that all dialogs are in sync with
1482                         // current document settings. LyXView::restartCursor() achieve this.
1483                         lyx_view_->restartCursor();
1484                         break;
1485                 }
1486                 
1487                 case LFUN_LAYOUT_MODULES_CLEAR: {
1488                         LASSERT(lyx_view_, /**/);
1489                         Buffer * buffer = lyx_view_->buffer();
1490                         DocumentClass const * const oldClass = buffer->params().documentClassPtr();
1491                         view()->cursor().recordUndoFullDocument();
1492                         buffer->params().clearLayoutModules();
1493                         buffer->params().makeDocumentClass();
1494                         updateLayout(oldClass, buffer);
1495                         updateFlags = Update::Force | Update::FitCursor;
1496                         break;
1497                 }
1498                 
1499                 case LFUN_LAYOUT_MODULE_ADD: {
1500                         LASSERT(lyx_view_, /**/);
1501                         Buffer * buffer = lyx_view_->buffer();
1502                         DocumentClass const * const oldClass = buffer->params().documentClassPtr();
1503                         view()->cursor().recordUndoFullDocument();
1504                         buffer->params().addLayoutModule(argument);
1505                         buffer->params().makeDocumentClass();
1506                         updateLayout(oldClass, buffer);
1507                         updateFlags = Update::Force | Update::FitCursor;
1508                         break;
1509                 }
1510
1511                 case LFUN_TEXTCLASS_APPLY: {
1512                         LASSERT(lyx_view_, /**/);
1513                         Buffer * buffer = lyx_view_->buffer();
1514
1515                         if (!loadLayoutFile(argument, buffer->temppath()) &&
1516                                 !loadLayoutFile(argument, buffer->filePath()))
1517                                 break;
1518
1519                         LayoutFile const * old_layout = buffer->params().baseClass();
1520                         LayoutFile const * new_layout = &(LayoutFileList::get()[argument]);
1521
1522                         if (old_layout == new_layout)
1523                                 // nothing to do
1524                                 break;
1525
1526                         //Save the old, possibly modular, layout for use in conversion.
1527                         DocumentClass const * const oldDocClass = buffer->params().documentClassPtr();
1528                         view()->cursor().recordUndoFullDocument();
1529                         buffer->params().setBaseClass(argument);
1530                         buffer->params().makeDocumentClass();
1531                         updateLayout(oldDocClass, buffer);
1532                         updateFlags = Update::Force | Update::FitCursor;
1533                         break;
1534                 }
1535                 
1536                 case LFUN_LAYOUT_RELOAD: {
1537                         LASSERT(lyx_view_, /**/);
1538                         Buffer * buffer = lyx_view_->buffer();
1539                         DocumentClass const * const oldClass = buffer->params().documentClassPtr();
1540                         LayoutFileIndex bc = buffer->params().baseClassID();
1541                         LayoutFileList::get().reset(bc);
1542                         buffer->params().setBaseClass(bc);
1543                         buffer->params().makeDocumentClass();
1544                         updateLayout(oldClass, buffer);
1545                         updateFlags = Update::Force | Update::FitCursor;
1546                         break;
1547                 }
1548
1549                 case LFUN_TEXTCLASS_LOAD:
1550                         loadLayoutFile(argument, lyx_view_->buffer()->temppath()) ||
1551                         loadLayoutFile(argument, lyx_view_->buffer()->filePath());
1552                         break;
1553
1554                 case LFUN_LYXRC_APPLY: {
1555                         LyXRC const lyxrc_orig = lyxrc;
1556
1557                         istringstream ss(argument);
1558                         bool const success = lyxrc.read(ss) == 0;
1559
1560                         if (!success) {
1561                                 lyxerr << "Warning in LFUN_LYXRC_APPLY!\n"
1562                                        << "Unable to read lyxrc data"
1563                                        << endl;
1564                                 break;
1565                         }
1566
1567                         actOnUpdatedPrefs(lyxrc_orig, lyxrc);
1568
1569                         theApp()->resetGui();
1570
1571                         /// We force the redraw in any case because there might be
1572                         /// some screen font changes.
1573                         /// FIXME: only the current view will be updated. the Gui
1574                         /// class is able to furnish the list of views.
1575                         updateFlags = Update::Force;
1576                         break;
1577                 }
1578
1579                 case LFUN_BOOKMARK_GOTO:
1580                         // go to bookmark, open unopened file and switch to buffer if necessary
1581                         gotoBookmark(convert<unsigned int>(to_utf8(cmd.argument())), true, true);
1582                         updateFlags = Update::FitCursor;
1583                         break;
1584
1585                 case LFUN_BOOKMARK_CLEAR:
1586                         theSession().bookmarks().clear();
1587                         break;
1588
1589                 default:
1590                         LASSERT(theApp(), /**/);
1591                         // Let the frontend dispatch its own actions.
1592                         if (theApp()->dispatch(cmd))
1593                                 // Nothing more to do.
1594                                 return;
1595
1596                         // Everything below is only for active lyx_view_
1597                         if (lyx_view_ == 0)
1598                                 break;
1599
1600                         // Start an undo group. This may be needed for
1601                         // some stuff like inset-apply on labels.
1602                         if (lyx_view_->view())
1603                                 view()->cursor().beginUndoGroup();
1604                                 
1605                         // Let the current LyXView dispatch its own actions.
1606                         if (lyx_view_->dispatch(cmd)) {
1607                                 if (lyx_view_->view()) {
1608                                         updateFlags = lyx_view_->view()->cursor().result().update();
1609                                         view()->cursor().endUndoGroup();
1610                                 }
1611                                 break;
1612                         }
1613
1614                         LASSERT(lyx_view_->view(), /**/);
1615
1616                         // Let the current BufferView dispatch its own actions.
1617                         if (view()->dispatch(cmd)) {
1618                                 // The BufferView took care of its own updates if needed.
1619                                 updateFlags = Update::None;
1620                                 view()->cursor().endUndoGroup();
1621                                 break;
1622                         }
1623
1624                         // Let the current Cursor dispatch its own actions.
1625                         Cursor old = view()->cursor();
1626                         view()->cursor().getPos(cursorPosBeforeDispatchX_,
1627                                                 cursorPosBeforeDispatchY_);
1628                         view()->cursor().dispatch(cmd);
1629
1630                         // notify insets we just left
1631                         if (view()->cursor() != old) {
1632                                 old.fixIfBroken();
1633                                 bool badcursor = notifyCursorLeaves(old, view()->cursor());
1634                                 if (badcursor)
1635                                         view()->cursor().fixIfBroken();
1636                         }
1637
1638                         // we assume here that the buffer view has not
1639                         // changed since the beginUndoGroup.
1640                         view()->cursor().endUndoGroup();
1641
1642                         // update completion. We do it here and not in
1643                         // processKeySym to avoid another redraw just for a
1644                         // changed inline completion
1645                         if (cmd.origin == FuncRequest::KEYBOARD) {
1646                                 if (cmd.action == LFUN_SELF_INSERT)
1647                                         lyx_view_->updateCompletion(view()->cursor(), true, true);
1648                                 else if (cmd.action == LFUN_CHAR_DELETE_BACKWARD)
1649                                         lyx_view_->updateCompletion(view()->cursor(), false, true);
1650                                 else
1651                                         lyx_view_->updateCompletion(view()->cursor(), false, false);
1652                         }
1653
1654                         updateFlags = view()->cursor().result().update();
1655                 }
1656
1657                 if (lyx_view_ && lyx_view_->buffer()) {
1658                         // BufferView::update() updates the ViewMetricsInfo and
1659                         // also initializes the position cache for all insets in
1660                         // (at least partially) visible top-level paragraphs.
1661                         // We will redraw the screen only if needed.
1662                         view()->processUpdateFlags(updateFlags);
1663
1664                         // if we executed a mutating lfun, mark the buffer as dirty
1665                         if (flag.enabled()
1666                             && !lyxaction.funcHasFlag(action, LyXAction::NoBuffer)
1667                             && !lyxaction.funcHasFlag(action, LyXAction::ReadOnly))
1668                                 lyx_view_->buffer()->markDirty();                       
1669
1670                         // Do we have a selection?
1671                         theSelection().haveSelection(view()->cursor().selection());
1672                         
1673                         // update gui
1674                         lyx_view_->restartCursor();
1675                 }
1676         }
1677         if (lyx_view_) {
1678                 // Some messages may already be translated, so we cannot use _()
1679                 sendDispatchMessage(translateIfPossible(getMessage()), cmd);
1680         }
1681 }
1682
1683
1684 void LyXFunc::sendDispatchMessage(docstring const & msg, FuncRequest const & cmd)
1685 {
1686         const bool verbose = (cmd.origin == FuncRequest::MENU
1687                               || cmd.origin == FuncRequest::TOOLBAR
1688                               || cmd.origin == FuncRequest::COMMANDBUFFER);
1689
1690         if (cmd.action == LFUN_SELF_INSERT || !verbose) {
1691                 LYXERR(Debug::ACTION, "dispatch msg is " << to_utf8(msg));
1692                 if (!msg.empty())
1693                         lyx_view_->message(msg);
1694                 return;
1695         }
1696
1697         docstring dispatch_msg = msg;
1698         if (!dispatch_msg.empty())
1699                 dispatch_msg += ' ';
1700
1701         docstring comname = from_utf8(lyxaction.getActionName(cmd.action));
1702
1703         bool argsadded = false;
1704
1705         if (!cmd.argument().empty()) {
1706                 if (cmd.action != LFUN_UNKNOWN_ACTION) {
1707                         comname += ' ' + cmd.argument();
1708                         argsadded = true;
1709                 }
1710         }
1711
1712         docstring const shortcuts = theTopLevelKeymap().printBindings(cmd);
1713
1714         if (!shortcuts.empty())
1715                 comname += ": " + shortcuts;
1716         else if (!argsadded && !cmd.argument().empty())
1717                 comname += ' ' + cmd.argument();
1718
1719         if (!comname.empty()) {
1720                 comname = rtrim(comname);
1721                 dispatch_msg += '(' + rtrim(comname) + ')';
1722         }
1723
1724         LYXERR(Debug::ACTION, "verbose dispatch msg " << to_utf8(dispatch_msg));
1725         if (!dispatch_msg.empty())
1726                 lyx_view_->message(dispatch_msg);
1727 }
1728
1729
1730 void LyXFunc::reloadBuffer()
1731 {
1732         FileName filename = lyx_view_->buffer()->fileName();
1733         // The user has already confirmed that the changes, if any, should
1734         // be discarded. So we just release the Buffer and don't call closeBuffer();
1735         theBufferList().release(lyx_view_->buffer());
1736         Buffer * buf = lyx_view_->loadDocument(filename);
1737         docstring const disp_fn = makeDisplayPath(filename.absFilename());
1738         docstring str;
1739         if (buf) {
1740                 updateLabels(*buf);
1741                 lyx_view_->setBuffer(buf);
1742                 buf->errors("Parse");
1743                 str = bformat(_("Document %1$s reloaded."), disp_fn);
1744         } else {
1745                 str = bformat(_("Could not reload document %1$s"), disp_fn);
1746         }
1747         lyx_view_->message(str);
1748 }
1749
1750 // Each "lyx_view_" should have it's own message method. lyxview and
1751 // the minibuffer would use the minibuffer, but lyxserver would
1752 // send an ERROR signal to its client.  Alejandro 970603
1753 // This function is bit problematic when it comes to NLS, to make the
1754 // lyx servers client be language indepenent we must not translate
1755 // strings sent to this func.
1756 void LyXFunc::setErrorMessage(docstring const & m) const
1757 {
1758         dispatch_buffer = m;
1759         errorstat = true;
1760 }
1761
1762
1763 void LyXFunc::setMessage(docstring const & m) const
1764 {
1765         dispatch_buffer = m;
1766 }
1767
1768
1769 docstring LyXFunc::viewStatusMessage()
1770 {
1771         // When meta-fake key is pressed, show the key sequence so far + "M-".
1772         if (wasMetaKey())
1773                 return keyseq.print(KeySequence::ForGui) + "M-";
1774
1775         // Else, when a non-complete key sequence is pressed,
1776         // show the available options.
1777         if (keyseq.length() > 0 && !keyseq.deleted())
1778                 return keyseq.printOptions(true);
1779
1780         LASSERT(lyx_view_, /**/);
1781         if (!lyx_view_->buffer())
1782                 return _("Welcome to LyX!");
1783
1784         return view()->cursor().currentState();
1785 }
1786
1787
1788 BufferView * LyXFunc::view() const
1789 {
1790         LASSERT(lyx_view_, /**/);
1791         return lyx_view_->view();
1792 }
1793
1794
1795 bool LyXFunc::wasMetaKey() const
1796 {
1797         return (meta_fake_bit != NoModifier);
1798 }
1799
1800
1801 void LyXFunc::updateLayout(DocumentClass const * const oldlayout, Buffer * buffer)
1802 {
1803         lyx_view_->message(_("Converting document to new document class..."));
1804         
1805         StableDocIterator backcur(view()->cursor());
1806         ErrorList & el = buffer->errorList("Class Switch");
1807         cap::switchBetweenClasses(
1808                         oldlayout, buffer->params().documentClassPtr(),
1809                         static_cast<InsetText &>(buffer->inset()), el);
1810
1811         view()->setCursor(backcur.asDocIterator(&(buffer->inset())));
1812
1813         buffer->errors("Class Switch");
1814         updateLabels(*buffer);
1815 }
1816
1817
1818 namespace {
1819
1820 void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new)
1821 {
1822         // Why the switch you might ask. It is a trick to ensure that all
1823         // the elements in the LyXRCTags enum is handled. As you can see
1824         // there are no breaks at all. So it is just a huge fall-through.
1825         // The nice thing is that we will get a warning from the compiler
1826         // if we forget an element.
1827         LyXRC::LyXRCTags tag = LyXRC::RC_LAST;
1828         switch (tag) {
1829         case LyXRC::RC_ACCEPT_COMPOUND:
1830         case LyXRC::RC_ALT_LANG:
1831         case LyXRC::RC_PLAINTEXT_ROFF_COMMAND:
1832         case LyXRC::RC_PLAINTEXT_LINELEN:
1833         case LyXRC::RC_AUTOREGIONDELETE:
1834         case LyXRC::RC_AUTORESET_OPTIONS:
1835         case LyXRC::RC_AUTOSAVE:
1836         case LyXRC::RC_AUTO_NUMBER:
1837         case LyXRC::RC_BACKUPDIR_PATH:
1838         case LyXRC::RC_BIBTEX_COMMAND:
1839         case LyXRC::RC_BINDFILE:
1840         case LyXRC::RC_CHECKLASTFILES:
1841         case LyXRC::RC_COMPLETION_CURSOR_TEXT:
1842         case LyXRC::RC_COMPLETION_INLINE_DELAY:
1843         case LyXRC::RC_COMPLETION_INLINE_DOTS:
1844         case LyXRC::RC_COMPLETION_INLINE_MATH:
1845         case LyXRC::RC_COMPLETION_INLINE_TEXT:
1846         case LyXRC::RC_COMPLETION_POPUP_AFTER_COMPLETE:
1847         case LyXRC::RC_COMPLETION_POPUP_DELAY:
1848         case LyXRC::RC_COMPLETION_POPUP_MATH:
1849         case LyXRC::RC_COMPLETION_POPUP_TEXT:
1850         case LyXRC::RC_USELASTFILEPOS:
1851         case LyXRC::RC_LOADSESSION:
1852         case LyXRC::RC_CHKTEX_COMMAND:
1853         case LyXRC::RC_CONVERTER:
1854         case LyXRC::RC_CONVERTER_CACHE_MAXAGE:
1855         case LyXRC::RC_COPIER:
1856         case LyXRC::RC_CURSOR_FOLLOWS_SCROLLBAR:
1857         case LyXRC::RC_CUSTOM_EXPORT_COMMAND:
1858         case LyXRC::RC_CUSTOM_EXPORT_FORMAT:
1859         case LyXRC::RC_DATE_INSERT_FORMAT:
1860         case LyXRC::RC_DEFAULT_LANGUAGE:
1861         case LyXRC::RC_GUI_LANGUAGE:
1862         case LyXRC::RC_DEFAULT_PAPERSIZE:
1863         case LyXRC::RC_DEFFILE:
1864         case LyXRC::RC_DIALOGS_ICONIFY_WITH_MAIN:
1865         case LyXRC::RC_DISPLAY_GRAPHICS:
1866         case LyXRC::RC_DOCUMENTPATH:
1867                 if (lyxrc_orig.document_path != lyxrc_new.document_path) {
1868                         FileName path(lyxrc_new.document_path);
1869                         if (path.exists() && path.isDirectory())
1870                                 package().document_dir() = FileName(lyxrc.document_path);
1871                 }
1872         case LyXRC::RC_ESC_CHARS:
1873         case LyXRC::RC_EXAMPLEPATH:
1874         case LyXRC::RC_FONT_ENCODING:
1875         case LyXRC::RC_FORMAT:
1876         case LyXRC::RC_GROUP_LAYOUTS:
1877         case LyXRC::RC_INDEX_COMMAND:
1878         case LyXRC::RC_NOMENCL_COMMAND:
1879         case LyXRC::RC_INPUT:
1880         case LyXRC::RC_KBMAP:
1881         case LyXRC::RC_KBMAP_PRIMARY:
1882         case LyXRC::RC_KBMAP_SECONDARY:
1883         case LyXRC::RC_LABEL_INIT_LENGTH:
1884         case LyXRC::RC_LANGUAGE_AUTO_BEGIN:
1885         case LyXRC::RC_LANGUAGE_AUTO_END:
1886         case LyXRC::RC_LANGUAGE_COMMAND_BEGIN:
1887         case LyXRC::RC_LANGUAGE_COMMAND_END:
1888         case LyXRC::RC_LANGUAGE_COMMAND_LOCAL:
1889         case LyXRC::RC_LANGUAGE_GLOBAL_OPTIONS:
1890         case LyXRC::RC_LANGUAGE_PACKAGE:
1891         case LyXRC::RC_LANGUAGE_USE_BABEL:
1892         case LyXRC::RC_MAC_LIKE_WORD_MOVEMENT:
1893         case LyXRC::RC_MACRO_EDIT_STYLE:
1894         case LyXRC::RC_MAKE_BACKUP:
1895         case LyXRC::RC_MARK_FOREIGN_LANGUAGE:
1896         case LyXRC::RC_MOUSE_WHEEL_SPEED:
1897         case LyXRC::RC_NUMLASTFILES:
1898         case LyXRC::RC_PATH_PREFIX:
1899                 if (lyxrc_orig.path_prefix != lyxrc_new.path_prefix) {
1900                         prependEnvPath("PATH", lyxrc.path_prefix);
1901                 }
1902         case LyXRC::RC_PERS_DICT:
1903         case LyXRC::RC_PREVIEW:
1904         case LyXRC::RC_PREVIEW_HASHED_LABELS:
1905         case LyXRC::RC_PREVIEW_SCALE_FACTOR:
1906         case LyXRC::RC_PRINTCOLLCOPIESFLAG:
1907         case LyXRC::RC_PRINTCOPIESFLAG:
1908         case LyXRC::RC_PRINTER:
1909         case LyXRC::RC_PRINTEVENPAGEFLAG:
1910         case LyXRC::RC_PRINTEXSTRAOPTIONS:
1911         case LyXRC::RC_PRINTFILEEXTENSION:
1912         case LyXRC::RC_PRINTLANDSCAPEFLAG:
1913         case LyXRC::RC_PRINTODDPAGEFLAG:
1914         case LyXRC::RC_PRINTPAGERANGEFLAG:
1915         case LyXRC::RC_PRINTPAPERDIMENSIONFLAG:
1916         case LyXRC::RC_PRINTPAPERFLAG:
1917         case LyXRC::RC_PRINTREVERSEFLAG:
1918         case LyXRC::RC_PRINTSPOOL_COMMAND:
1919         case LyXRC::RC_PRINTSPOOL_PRINTERPREFIX:
1920         case LyXRC::RC_PRINTTOFILE:
1921         case LyXRC::RC_PRINTTOPRINTER:
1922         case LyXRC::RC_PRINT_ADAPTOUTPUT:
1923         case LyXRC::RC_PRINT_COMMAND:
1924         case LyXRC::RC_RTL_SUPPORT:
1925         case LyXRC::RC_SCREEN_DPI:
1926         case LyXRC::RC_SCREEN_FONT_ROMAN:
1927         case LyXRC::RC_SCREEN_FONT_ROMAN_FOUNDRY:
1928         case LyXRC::RC_SCREEN_FONT_SANS:
1929         case LyXRC::RC_SCREEN_FONT_SANS_FOUNDRY:
1930         case LyXRC::RC_SCREEN_FONT_SCALABLE:
1931         case LyXRC::RC_SCREEN_FONT_SIZES:
1932         case LyXRC::RC_SCREEN_FONT_TYPEWRITER:
1933         case LyXRC::RC_SCREEN_FONT_TYPEWRITER_FOUNDRY:
1934         case LyXRC::RC_GEOMETRY_SESSION:
1935         case LyXRC::RC_SCREEN_ZOOM:
1936         case LyXRC::RC_SERVERPIPE:
1937         case LyXRC::RC_SET_COLOR:
1938         case LyXRC::RC_SHOW_BANNER:
1939         case LyXRC::RC_OPEN_BUFFERS_IN_TABS:
1940         case LyXRC::RC_SPELL_COMMAND:
1941         case LyXRC::RC_TEMPDIRPATH:
1942         case LyXRC::RC_TEMPLATEPATH:
1943         case LyXRC::RC_TEX_ALLOWS_SPACES:
1944         case LyXRC::RC_TEX_EXPECTS_WINDOWS_PATHS:
1945                 if (lyxrc_orig.windows_style_tex_paths != lyxrc_new.windows_style_tex_paths) {
1946                         os::windows_style_tex_paths(lyxrc_new.windows_style_tex_paths);
1947                 }
1948         case LyXRC::RC_UIFILE:
1949         case LyXRC::RC_USER_EMAIL:
1950         case LyXRC::RC_USER_NAME:
1951         case LyXRC::RC_USETEMPDIR:
1952         case LyXRC::RC_USE_ALT_LANG:
1953         case LyXRC::RC_USE_CONVERTER_CACHE:
1954         case LyXRC::RC_USE_ESC_CHARS:
1955         case LyXRC::RC_USE_INP_ENC:
1956         case LyXRC::RC_USE_PERS_DICT:
1957         case LyXRC::RC_USE_TOOLTIP:
1958         case LyXRC::RC_USE_PIXMAP_CACHE:
1959         case LyXRC::RC_USE_SPELL_LIB:
1960         case LyXRC::RC_VIEWDVI_PAPEROPTION:
1961         case LyXRC::RC_SORT_LAYOUTS:
1962         case LyXRC::RC_FULL_SCREEN_LIMIT:
1963         case LyXRC::RC_FULL_SCREEN_SCROLLBAR:
1964         case LyXRC::RC_FULL_SCREEN_TABBAR:
1965         case LyXRC::RC_FULL_SCREEN_TOOLBARS:
1966         case LyXRC::RC_FULL_SCREEN_WIDTH:
1967         case LyXRC::RC_VISUAL_CURSOR:
1968         case LyXRC::RC_VIEWER:
1969         case LyXRC::RC_LAST:
1970                 break;
1971         }
1972 }
1973
1974 } // namespace anon
1975
1976
1977 } // namespace lyx