]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
Skip paint event when in the middle of a buffer operation
[lyx.git] / src / frontends / qt4 / GuiApplication.cpp
1 /**
2  * \file GuiApplication.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author John Levon
8  * \author Abdelrazak Younes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "GuiApplication.h"
16
17 #include "ToolTipFormatter.h"
18 #include "ColorCache.h"
19 #include "ColorSet.h"
20 #include "GuiClipboard.h"
21 #include "GuiKeySymbol.h"
22 #include "GuiSelection.h"
23 #include "GuiView.h"
24 #include "Menus.h"
25 #include "qt_helpers.h"
26 #include "Toolbars.h"
27
28 #include "frontends/alert.h"
29 #include "frontends/Application.h"
30 #include "frontends/FontLoader.h"
31 #include "frontends/FontMetrics.h"
32
33 #include "Buffer.h"
34 #include "BufferList.h"
35 #include "BufferParams.h"
36 #include "BufferView.h"
37 #include "CmdDef.h"
38 #include "Color.h"
39 #include "Converter.h"
40 #include "CutAndPaste.h"
41 #include "ErrorList.h"
42 #include "Font.h"
43 #include "FuncRequest.h"
44 #include "FuncStatus.h"
45 #include "GuiWorkArea.h"
46 #include "Intl.h"
47 #include "KeyMap.h"
48 #include "Language.h"
49 #include "LaTeXPackages.h"
50 #include "Lexer.h"
51 #include "LyX.h"
52 #include "LyXAction.h"
53 #include "LyXRC.h"
54 #include "Paragraph.h"
55 #include "Server.h"
56 #include "Session.h"
57 #include "SpellChecker.h"
58 #include "Thesaurus.h"
59 #include "version.h"
60
61 #include "insets/InsetText.h"
62
63 #include "support/convert.h"
64 #include "support/debug.h"
65 #include "support/ExceptionMessage.h"
66 #include "support/FileName.h"
67 #include "support/filetools.h"
68 #include "support/ForkedCalls.h"
69 #include "support/gettext.h"
70 #include "support/lassert.h"
71 #include "support/lstrings.h"
72 #include "support/lyxalgo.h" // sorted
73 #include "support/textutils.h"
74 #include "support/Messages.h"
75 #include "support/os.h"
76 #include "support/Package.h"
77 #include "support/TempFile.h"
78
79 #ifdef Q_OS_MAC
80 #include "support/AppleScript.h"
81 #include "support/linkback/LinkBackProxy.h"
82 #endif
83
84 #include <queue>
85
86 #include <QFontDatabase>
87 #include <QByteArray>
88 #include <QClipboard>
89 #include <QDateTime>
90 #include <QDesktopWidget>
91 #include <QDir>
92 #include <QEvent>
93 #include <QEventLoop>
94 #include <QFileOpenEvent>
95 #include <QFileInfo>
96 #include <QHash>
97 #include <QIcon>
98 #include <QImageReader>
99 #include <QKeyEvent>
100 #include <QLocale>
101 #include <QLibraryInfo>
102 #include <QList>
103 #include <QMenuBar>
104 #include <QMimeData>
105 #include <QObject>
106 #include <QPixmap>
107 #include <QPixmapCache>
108 #include <QRegExp>
109 #include <QSessionManager>
110 #include <QSettings>
111 #include <QShowEvent>
112 #include <QSocketNotifier>
113 #include <QSortFilterProxyModel>
114 #include <QStandardItemModel>
115 #include <QTextCodec>
116 #include <QTimer>
117 #include <QTranslator>
118 #include <QThreadPool>
119 #include <QWidget>
120
121 #ifdef Q_WS_X11
122 #include <X11/Xatom.h>
123 #include <X11/Xlib.h>
124 #include <QX11Info>
125 #undef CursorShape
126 #undef None
127 #elif defined(QPA_XCB)
128 #include <xcb/xcb.h>
129 #ifdef HAVE_QT5_X11_EXTRAS
130 #include <QtX11Extras/QX11Info>
131 #endif
132 #endif
133
134 #if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
135 #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
136 #if (QT_VERSION < 0x050000)
137 #include <QWindowsMime>
138 #define QWINDOWSMIME QWindowsMime
139 #else
140 #include <QWinMime>
141 #define QWINDOWSMIME QWinMime
142 #endif
143 #ifdef Q_CC_GNU
144 #include <wtypes.h>
145 #endif
146 #include <objidl.h>
147 #endif
148 #endif
149
150 #ifdef Q_OS_MAC
151 #include <QMacPasteboardMime>
152 #endif // Q_OS_MAC
153
154 #include <boost/crc.hpp>
155
156 #include <exception>
157 #include <sstream>
158 #include <vector>
159
160 using namespace std;
161 using namespace lyx::support;
162
163
164 static void initializeResources()
165 {
166         static bool initialized = false;
167         if (!initialized) {
168                 Q_INIT_RESOURCE(Resources);
169                 initialized = true;
170         }
171 }
172
173
174 namespace lyx {
175
176 frontend::Application * createApplication(int & argc, char * argv[])
177 {
178 #if !defined(Q_WS_X11) && !defined(QPA_XCB)
179         // prune -geometry argument(s) by shifting
180         // the following ones 2 places down.
181         for (int i = 0 ; i < argc ; ++i) {
182                 if (strcmp(argv[i], "-geometry") == 0) {
183                         int const remove = (i+1) < argc ? 2 : 1;
184                         argc -= remove;
185                         for (int j = i; j < argc; ++j)
186                                 argv[j] = argv[j + remove];
187                         --i;
188                 }
189         }
190 #endif
191
192 #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
193         // On Windows, allow bringing the LyX window to top
194         AllowSetForegroundWindow(ASFW_ANY);
195 #endif
196
197         frontend::GuiApplication * guiApp = new frontend::GuiApplication(argc, argv);
198         // I'd rather do that in the constructor, but I do not think that
199         // the palette is accessible there.
200         guiApp->colorCache().setPalette(guiApp->palette());
201         return guiApp;
202 }
203
204
205 void setLocale()
206 {
207         QLocale theLocale;
208         string code;
209         if (lyxrc.gui_language == "auto") {
210                 theLocale = QLocale::system();
211                 code = fromqstr(theLocale.name());
212         } else {
213                 Language const * l = languages.getLanguage(lyxrc.gui_language);
214                 code = l ? l->code() : "C";
215                 theLocale = QLocale(toqstr(code));
216         }
217         // Qt tries to outsmart us and transforms en_US to C.
218         Messages::guiLanguage((code == "C") ? "en_US" : code);
219         QLocale::setDefault(theLocale);
220         setlocale(LC_NUMERIC, "C");
221 }
222
223
224 namespace frontend {
225
226
227 /// Return the list of loadable formats.
228 vector<string> loadableImageFormats()
229 {
230         vector<string> fmts;
231
232         QList<QByteArray> qt_formats = QImageReader::supportedImageFormats();
233
234         LYXERR(Debug::GRAPHICS,
235                 "\nThe image loader can load the following directly:\n");
236
237         if (qt_formats.empty())
238                 LYXERR(Debug::GRAPHICS, "\nQt4 Problem: No Format available!");
239
240         bool jpeg_found = false;
241         bool jpg_found = false;
242         for (QList<QByteArray>::const_iterator it = qt_formats.begin(); it != qt_formats.end(); ++it) {
243
244                 LYXERR(Debug::GRAPHICS, (const char *) *it << ", ");
245
246                 string ext = ascii_lowercase((const char *) *it);
247                 // special case
248                 if (ext == "jpeg") {
249                         jpeg_found = true;
250                         if (jpg_found)
251                                 continue;
252                         ext = "jpg";
253                 }
254                 else if (ext == "jpg") {
255                         jpg_found = true;
256                         if (jpeg_found)
257                                 continue;
258                 }
259                 else if (lyxrc.use_converter_cache &&
260                          (ext == "svg" || ext == "svgz") &&
261                           theConverters().isReachable("svg", "png"))
262                         // Qt only supports SVG 1.2 tiny. See #9778. We prefer displaying
263                         // the SVG as in the output. However we require that the converter
264                         // cache is enabled since this is expensive. We also require that
265                         // an explicit svg->png converter is defined, since the default
266                         // converter could produce bad quality as well. This assumes that
267                         // png can always be loaded.
268                         continue;
269                 fmts.push_back(ext);
270         }
271
272         return fmts;
273 }
274
275
276 ////////////////////////////////////////////////////////////////////////
277 //
278 // Icon loading support code
279 //
280 ////////////////////////////////////////////////////////////////////////
281
282 namespace {
283
284 struct ImgMap {
285         QString key;
286         QString value;
287 };
288
289
290 bool operator<(ImgMap const & lhs, ImgMap const & rhs)
291 {
292         return lhs.key < rhs.key;
293 }
294
295
296 class CompareKey {
297 public:
298         CompareKey(QString const & name) : name_(name) {}
299         bool operator()(ImgMap const & other) const { return other.key == name_; }
300 private:
301         QString const name_;
302 };
303
304
305 // this must be sorted alphabetically
306 // Upper case comes before lower case
307 // Please don't change the formatting, this list is parsed by
308 // development/tools/generate_symbols_images.py.
309 ImgMap sorted_img_map[] = {
310         { "Arrownot", "arrownot2"},
311         { "Arrowvert", "arrowvert2"},
312         { "Bowtie", "bowtie2" },
313         { "Box", "box2" },
314         { "Bumpeq", "bumpeq2" },
315         { "CIRCLE", "circle3" },
316         { "Cap", "cap2" },
317         { "CheckedBox", "checkedbox2" },
318         { "Circle", "circle2" },
319         { "Colonapprox", "colonapprox2" },
320         { "Coloneq", "coloneq2" },
321         { "Coloneqq", "coloneqq2" },
322         { "Colonsim", "colonsim2" },
323         { "Cup", "cup2" },
324         { "DOWNarrow", "downarrow3" },
325         { "Delta", "delta2" },
326         { "Diamond", "diamond2" },
327         { "Doteq", "doteq2" },
328         { "Downarrow", "downarrow2" },
329         { "Eqcolon", "eqcolon2" },
330         { "Eqqcolon", "eqqcolon2" },
331         { "Gamma", "gamma2" },
332         { "Join", "join2" },
333         { "LEFTCIRCLE", "leftcircle3" },
334         { "LEFTarrow", "leftarrow3" },
335         { "LEFTcircle", "leftcircle4" },
336         { "LHD", "lhd2" },
337         { "Lambda", "lambda2" },
338         { "Lbag", "lbag2"},
339         { "Leftarrow", "leftarrow2" },
340         { "Leftcircle", "leftcircle2" },
341         { "Leftrightarrow", "leftrightarrow2" },
342         { "Longarrownot", "longarrownot2"},
343         { "Longleftarrow", "longleftarrow2" },
344         { "Longleftrightarrow", "longleftrightarrow2" },
345         { "Longmapsfrom", "longmapsfrom2"},
346         { "Longmapsto", "longmapsto2"},
347         { "Longrightarrow", "longrightarrow2" },
348         { "Mapsfrom", "mapsfrom2"},
349         { "Mapsfromchar", "mapsfromchar2"},
350         { "Mapsto", "mapsto2"},
351         { "Mapstochar", "mapstochar2"},
352         { "Omega", "omega2" },
353         { "Phi", "phi2" },
354         { "Pi", "pi2" },
355         { "Psi", "psi2" },
356         { "RHD", "rhd2" },
357         { "RIGHTCIRCLE", "rightcircle3" },
358         { "RIGHTarrow", "rightarrow3" },
359         { "RIGHTcircle", "rightcircle4" },
360         { "Rbag", "rbag2"},
361         { "Rightarrow", "rightarrow2" },
362         { "Rightcircle", "rightcircle2" },
363         { "Sigma", "sigma2" },
364         { "Square", "square2" },
365         { "Subset", "subset2" },
366         { "Supset", "supset2" },
367         { "Theta", "theta2" },
368         { "Thorn", "thorn2" },
369         { "UParrow", "uparrow3" },
370         { "Uparrow", "uparrow2" },
371         { "Updownarrow", "updownarrow2" },
372         { "Upsilon", "upsilon2" },
373         { "Vdash", "vdash3" },
374         { "Vert", "vert2" },
375         { "XBox", "xbox3" },
376         { "Xbox", "xbox2" },
377         { "Xi", "xi2" },
378         { "lVert", "vert2" },
379         { "lvert", "vert" },
380         { "nLeftarrow", "nleftarrow2" },
381         { "nLeftrightarrow", "nleftrightarrow2" },
382         { "nRightarrow", "nrightarrow2" },
383         { "nVDash", "nvdash3" },
384         { "nVdash", "nvdash4" },
385         { "nvDash", "nvdash2" },
386         { "rVert", "vert2" },
387         { "rvert", "vert" },
388         { "textrm \\AA", "textrm_AA"},
389         { "textrm \\O", "textrm_O"},
390         { "vDash", "vdash2" },
391         { "varDelta", "vardelta2" },
392         { "varGamma", "vargamma2" },
393         { "varLambda", "varlambda2" },
394         { "varOmega", "varomega2" },
395         { "varPhi", "varphi2" },
396         { "varPi", "varpi2" },
397         { "varPsi", "varpsi2" },
398         { "varSigma", "varsigma2" },
399         { "varTheta", "vartheta2" },
400         { "varUpsilon", "varupsilon2" },
401         { "varXi", "varxi2" }
402 };
403
404
405 size_t const nr_sorted_img_map = sizeof(sorted_img_map) / sizeof(ImgMap);
406
407 // This list specifies which system's theme icon is related to which lyx
408 // command. It was based on:
409 // http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
410 // this must be sorted alphabetically
411 // Upper case comes before lower case
412 ImgMap sorted_theme_icon_map[] = {
413         { "bookmark-goto 0", "go-jump" },
414         { "buffer-new", "document-new" },
415         { "buffer-write", "document-save" },
416         { "buffer-write-as", "document-save-as" },
417         { "buffer-zoom-in", "zoom-in" },
418         { "buffer-zoom-out", "zoom-out" },
419         { "copy", "edit-copy" },
420         { "cut", "edit-cut" },
421         { "depth-decrement", "format-indent-less" },
422         { "depth-increment", "format-indent-more" },
423         { "dialog-show spellchecker", "tools-check-spelling" },
424         { "dialog-show-new-inset graphics", "insert-image" },
425         { "dialog-toggle findreplaceadv", "edit-find-replace" },
426         { "file-open", "document-open" },
427         { "font-bold", "format-text-bold" },
428         { "font-ital", "format-text-italic" },
429         { "font-strikeout", "format-text-strikethrough" },
430         { "font-underline", "format-text-underline" },
431         { "lyx-quit", "application-exit" },
432         { "paste", "edit-paste" },
433         { "redo", "edit-redo" },
434         { "undo", "edit-undo" },
435         { "window-close", "window-close" },
436         { "window-new", "window-new" }
437 };
438
439 size_t const nr_sorted_theme_icon_map = sizeof(sorted_theme_icon_map) / sizeof(ImgMap);
440
441
442 QString findImg(QString const & name)
443 {
444         ImgMap const * const begin = sorted_img_map;
445         ImgMap const * const end = begin + nr_sorted_img_map;
446         LATTEST(sorted(begin, end));
447
448         ImgMap const * const it = find_if(begin, end, CompareKey(name));
449
450         QString img_name;
451         if (it != end) {
452                 img_name = it->value;
453         } else {
454                 img_name = name;
455                 img_name.replace('_', "underscore");
456                 img_name.replace(' ', '_');
457
458                 // This way we can have "math-delim { }" on the toolbar.
459                 img_name.replace('(', "lparen");
460                 img_name.replace(')', "rparen");
461                 img_name.replace('[', "lbracket");
462                 img_name.replace(']', "rbracket");
463                 img_name.replace('{', "lbrace");
464                 img_name.replace('}', "rbrace");
465                 img_name.replace('|', "bars");
466                 img_name.replace(',', "thinspace");
467                 img_name.replace(':', "mediumspace");
468                 img_name.replace(';', "thickspace");
469                 img_name.replace('!', "negthinspace");
470         }
471
472         LYXERR(Debug::GUI, "findImg(" << name << ")\n"
473                 << "Looking for math icon called \"" << img_name << '"');
474         return img_name;
475 }
476
477 } // namespace
478
479
480 QString themeIconName(QString const & action)
481 {
482         ImgMap const * const begin = sorted_theme_icon_map;
483         ImgMap const * const end = begin + nr_sorted_theme_icon_map;
484         LASSERT(sorted(begin, end), /**/);
485
486         ImgMap const * const it = find_if(begin, end, CompareKey(action));
487
488         if (it != end)
489                 return it->value;
490         return QString();
491 }
492
493
494 QString iconName(FuncRequest const & f, bool unknown)
495 {
496         initializeResources();
497         QString name1;
498         QString name2;
499         QString path;
500         switch (f.action()) {
501         case LFUN_MATH_INSERT:
502                 if (!f.argument().empty()) {
503                         path = "math/";
504                         name1 = findImg(toqstr(f.argument()).mid(1));
505                 }
506                 break;
507         case LFUN_MATH_DELIM:
508         case LFUN_MATH_BIGDELIM:
509                 path = "math/";
510                 name1 = findImg(toqstr(f.argument()));
511                 break;
512         case LFUN_CALL:
513                 path = "commands/";
514                 name1 = toqstr(f.argument());
515                 break;
516         case LFUN_COMMAND_ALTERNATIVES: {
517                 // use the first of the alternative commands
518                 docstring firstcom;
519                 docstring dummy = split(f.argument(), firstcom, ';');
520                 name1 = toqstr(firstcom);
521                 name1.replace(' ', '_');
522                 break;
523         }
524         default:
525                 name2 = toqstr(lyxaction.getActionName(f.action()));
526                 name1 = name2;
527
528                 if (!f.argument().empty()) {
529                         name1 = name2 + ' ' + toqstr(f.argument());
530                         name1.replace(' ', '_');
531                         name1.replace('\\', "backslash");
532                 }
533         }
534
535         QStringList imagedirs;
536         imagedirs << "images/" << "images/ipa/";
537         search_mode mode = theGuiApp()->imageSearchMode();
538         for (int i = 0; i < imagedirs.size(); ++i) {
539                 QString imagedir = imagedirs.at(i) + path;
540                 FileName fname = imageLibFileSearch(imagedir, name1, "svgz,png", mode);
541                 if (fname.exists())
542                         return toqstr(fname.absFileName());
543
544                 fname = imageLibFileSearch(imagedir, name2, "svgz,png", mode);
545                 if (fname.exists())
546                         return toqstr(fname.absFileName());
547         }
548
549         path = ":/images/" + path;
550         QDir res(path);
551         if (!res.exists()) {
552                 LYXERR0("Directory " << path << " not found in resource!");
553                 return QString();
554         }
555         if (res.exists(name1 + ".svgz"))
556                 return path + name1 + ".svgz";
557         else if (res.exists(name1 + ".png"))
558                 return path + name1 + ".png";
559
560         if (res.exists(name2 + ".svgz"))
561                 return path + name2 + ".svgz";
562         else if (res.exists(name2 + ".png"))
563                 return path + name2 + ".png";
564
565         LYXERR(Debug::GUI, "Cannot find icon with filename "
566                            << "\"" << name1 << ".{svgz,png}\""
567                            << " or filename "
568                            << "\"" << name2 << ".{svgz,png}\""
569                            << " for command \""
570                            << lyxaction.getActionName(f.action())
571                            << '(' << to_utf8(f.argument()) << ")\"");
572
573         if (unknown) {
574                 QString imagedir = "images/";
575                 FileName fname = imageLibFileSearch(imagedir, "unknown", "svgz,png", mode);
576                 if (fname.exists())
577                         return toqstr(fname.absFileName());
578                 return QString(":/images/unknown.svgz");
579         }
580
581         return QString();
582 }
583
584
585 bool getPixmap(QPixmap & pixmap, QString const & path)
586 {
587         return pixmap.load(path);
588 }
589
590
591 QPixmap getPixmap(QString const & path, QString const & name, QString const & ext)
592 {
593         QString imagedir = path;
594         FileName fname = imageLibFileSearch(imagedir, name, ext, theGuiApp()->imageSearchMode());
595         QString fpath = toqstr(fname.absFileName());
596         QPixmap pixmap = QPixmap();
597
598         if (getPixmap(pixmap, fpath)) {
599                 return pixmap;
600         }
601
602         QStringList exts = ext.split(",");
603         fpath = ":/" + path + name + ".";
604         for (int i = 0; i < exts.size(); ++i) {
605                 if (getPixmap(pixmap, fpath + exts.at(i))) {
606                         return pixmap;
607                 }
608         }
609
610         bool const list = ext.contains(",");
611         LYXERR0("Cannot load pixmap \""
612                 << path << name << "." << (list ? "{" : "") << ext
613                 << (list ? "}" : "") << "\", please verify resource system!");
614
615         return QPixmap();
616 }
617
618
619 QIcon getIcon(FuncRequest const & f, bool unknown)
620 {
621 #if (QT_VERSION >= 0x040600)
622         if (lyxrc.use_system_theme_icons) {
623                 // use the icons from system theme that are available
624                 QString action = toqstr(lyxaction.getActionName(f.action()));
625                 if (!f.argument().empty())
626                         action += " " + toqstr(f.argument());
627                 QString const theme_icon = themeIconName(action);
628                 if (QIcon::hasThemeIcon(theme_icon)) {
629                         QIcon const thmicn = QIcon::fromTheme(theme_icon);
630                         if (!thmicn.isNull())
631                                 return thmicn;
632                 }
633         }
634 #endif
635
636         QString icon = iconName(f, unknown);
637         if (icon.isEmpty())
638                 return QIcon();
639
640         //LYXERR(Debug::GUI, "Found icon: " << icon);
641         QPixmap pixmap = QPixmap();
642         if (!getPixmap(pixmap,icon)) {
643                 LYXERR0("Cannot load icon " << icon << " please verify resource system!");
644                 return QIcon();
645         }
646
647         return QIcon(pixmap);
648 }
649
650
651 ////////////////////////////////////////////////////////////////////////
652 //
653 // LyX server support code.
654 //
655 ////////////////////////////////////////////////////////////////////////
656
657 class SocketNotifier : public QSocketNotifier
658 {
659 public:
660         /// connect a connection notification from the LyXServerSocket
661         SocketNotifier(QObject * parent, int fd, Application::SocketCallback func)
662                 : QSocketNotifier(fd, QSocketNotifier::Read, parent), func_(func)
663         {}
664
665 public:
666         /// The callback function
667         Application::SocketCallback func_;
668 };
669
670
671 ////////////////////////////////////////////////////////////////////////
672 //
673 // Mac specific stuff goes here...
674 //
675 ////////////////////////////////////////////////////////////////////////
676
677 class MenuTranslator : public QTranslator
678 {
679 public:
680         MenuTranslator(QObject * parent)
681                 : QTranslator(parent)
682         {}
683
684 #if QT_VERSION >= 0x050000
685         virtual QString translate(const char * /* context */,
686                 const char *sourceText,
687                 const char * /* disambiguation */ = 0, int /* n */ = -1) const
688 #else
689         QString translate(const char * /*context*/,
690           const char * sourceText,
691           const char * /*comment*/ = 0) const
692 #endif
693         {
694                 string const s = sourceText;
695                 if (s == N_("About %1") || s == N_("Preferences")
696                                 || s == N_("Reconfigure") || s == N_("Quit %1"))
697                         return qt_(s);
698                 else
699                         return QString();
700         }
701 };
702
703 #ifdef Q_OS_MAC
704 // QMacPasteboardMimeGraphics can only be compiled on Mac.
705
706 class QMacPasteboardMimeGraphics : public QMacPasteboardMime
707 {
708 public:
709         QMacPasteboardMimeGraphics()
710                 : QMacPasteboardMime(MIME_QT_CONVERTOR|MIME_ALL)
711         {}
712
713         QString convertorName() { return "Graphics"; }
714
715         QString flavorFor(QString const & mime)
716         {
717                 LYXERR(Debug::ACTION, "flavorFor " << mime);
718                 if (mime == pdfMimeType())
719                         return QLatin1String("com.adobe.pdf");
720                 return QString();
721         }
722
723         QString mimeFor(QString flav)
724         {
725                 LYXERR(Debug::ACTION, "mimeFor " << flav);
726                 if (flav == QLatin1String("com.adobe.pdf"))
727                         return pdfMimeType();
728                 return QString();
729         }
730
731         bool canConvert(QString const & mime, QString flav)
732         {
733                 return mimeFor(flav) == mime;
734         }
735
736         QVariant convertToMime(QString const & /*mime*/, QList<QByteArray> data,
737                 QString /*flav*/)
738         {
739                 if(data.count() > 1)
740                         qWarning("QMacPasteboardMimeGraphics: Cannot handle multiple member data");
741                 return data.first();
742         }
743
744         QList<QByteArray> convertFromMime(QString const & /*mime*/,
745                 QVariant data, QString /*flav*/)
746         {
747                 QList<QByteArray> ret;
748                 ret.append(data.toByteArray());
749                 return ret;
750         }
751 };
752 #endif
753
754 ///////////////////////////////////////////////////////////////
755 //
756 // You can find more platform specific stuff at the end of this file...
757 //
758 ///////////////////////////////////////////////////////////////
759
760 ////////////////////////////////////////////////////////////////////////
761 // Windows specific stuff goes here...
762
763 #if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
764 #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
765 // QWindowsMimeMetafile can only be compiled on Windows.
766
767 static FORMATETC cfFromMime(QString const & mimetype)
768 {
769         FORMATETC formatetc;
770         if (mimetype == emfMimeType()) {
771                 formatetc.cfFormat = CF_ENHMETAFILE;
772                 formatetc.tymed = TYMED_ENHMF;
773         } else if (mimetype == wmfMimeType()) {
774                 formatetc.cfFormat = CF_METAFILEPICT;
775                 formatetc.tymed = TYMED_MFPICT;
776         }
777         formatetc.ptd = 0;
778         formatetc.dwAspect = DVASPECT_CONTENT;
779         formatetc.lindex = -1;
780         return formatetc;
781 }
782
783
784 class QWindowsMimeMetafile : public QWINDOWSMIME {
785 public:
786         QWindowsMimeMetafile() {}
787
788         bool canConvertFromMime(FORMATETC const & /*formatetc*/,
789                 QMimeData const * /*mimedata*/) const
790         {
791                 return false;
792         }
793
794         bool canConvertToMime(QString const & mimetype,
795                 IDataObject * pDataObj) const
796         {
797                 if (mimetype != emfMimeType() && mimetype != wmfMimeType())
798                         return false;
799                 FORMATETC formatetc = cfFromMime(mimetype);
800                 return pDataObj->QueryGetData(&formatetc) == S_OK;
801         }
802
803         bool convertFromMime(FORMATETC const & /*formatetc*/,
804                 const QMimeData * /*mimedata*/, STGMEDIUM * /*pmedium*/) const
805         {
806                 return false;
807         }
808
809         QVariant convertToMime(QString const & mimetype, IDataObject * pDataObj,
810                 QVariant::Type /*preferredType*/) const
811         {
812                 QByteArray data;
813                 if (!canConvertToMime(mimetype, pDataObj))
814                         return data;
815
816                 FORMATETC formatetc = cfFromMime(mimetype);
817                 STGMEDIUM s;
818                 if (pDataObj->GetData(&formatetc, &s) != S_OK)
819                         return data;
820
821                 int dataSize;
822                 if (s.tymed == TYMED_ENHMF) {
823                         dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, 0, 0);
824                         data.resize(dataSize);
825                         dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, dataSize,
826                                 (LPBYTE)data.data());
827                 } else if (s.tymed == TYMED_MFPICT) {
828                         dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, 0, 0);
829                         data.resize(dataSize);
830                         dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, dataSize,
831                                 (LPBYTE)data.data());
832                 }
833                 data.detach();
834                 ReleaseStgMedium(&s);
835
836                 return data;
837         }
838
839
840         QVector<FORMATETC> formatsForMime(QString const & mimetype,
841                 QMimeData const * /*mimedata*/) const
842         {
843                 QVector<FORMATETC> formats;
844                 if (mimetype == emfMimeType() || mimetype == wmfMimeType())
845                         formats += cfFromMime(mimetype);
846                 return formats;
847         }
848
849         QString mimeForFormat(FORMATETC const & formatetc) const
850         {
851                 switch (formatetc.cfFormat) {
852                 case CF_ENHMETAFILE:
853                         return emfMimeType();
854                 case CF_METAFILEPICT:
855                         return wmfMimeType();
856                 }
857                 return QString();
858         }
859 };
860
861 #endif
862 #endif
863
864
865 /// Allows to check whether ESC was pressed during a long operation
866 class KeyChecker : public QObject {
867 private:
868         bool pressed_;
869         bool started_;
870 public:
871         KeyChecker() : pressed_(false), started_(false) {}
872
873         void start() {
874                 QCoreApplication::instance()->installEventFilter(this);
875                 pressed_ = false;
876                 started_ = true;
877         }
878         void stop() {
879                 QCoreApplication::instance()->removeEventFilter(this);
880                 started_ = false;
881         }
882         bool pressed() {
883                 QCoreApplication::processEvents();
884                 return pressed_;
885         }
886         bool started() const {
887                 return started_;
888         }
889         bool eventFilter(QObject *obj, QEvent *event) {
890                 LYXERR(Debug::ACTION, "Event Type: " << event->type());
891                 switch (event->type()) {
892                 case QEvent::Show:
893                 case QEvent::Hide:
894                 case QEvent::Resize:
895                 case QEvent::UpdateRequest:
896                 case QEvent::CursorChange:
897                 case QEvent::ActionChanged:
898                 case QEvent::EnabledChange:
899                 case QEvent::SockAct:
900                 case QEvent::Timer:
901                 case QEvent::Paint:
902                 case QEvent::ToolTipChange:
903                 case QEvent::LayoutRequest:
904                 case QEvent::MetaCall:
905                         return QObject::eventFilter(obj, event);
906                 default:
907                         // FIXME Blocking all these events is a bad idea.
908                         QKeyEvent *keyEvent = dynamic_cast<QKeyEvent*>(event);
909                         if (keyEvent && keyEvent->key() == Qt::Key_Escape)
910                                 pressed_ = true;
911                         return true;
912                 }
913         }
914 };
915
916
917 ////////////////////////////////////////////////////////////////////////
918 // GuiApplication::Private definition and implementation.
919 ////////////////////////////////////////////////////////////////////////
920
921 struct GuiApplication::Private
922 {
923         Private(): language_model_(0), meta_fake_bit(NoModifier),
924                 global_menubar_(0)
925         {
926         #if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
927         #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
928                 /// WMF Mime handler for Windows clipboard.
929                 wmf_mime_ = new QWindowsMimeMetafile;
930         #endif
931         #endif
932                 initKeySequences(&theTopLevelKeymap());
933         }
934
935         void initKeySequences(KeyMap * kb)
936         {
937                 keyseq = KeySequence(kb, kb);
938                 cancel_meta_seq = KeySequence(kb, kb);
939         }
940
941         ///
942         QSortFilterProxyModel * language_model_;
943         ///
944         GuiClipboard clipboard_;
945         ///
946         GuiSelection selection_;
947         ///
948         FontLoader font_loader_;
949         ///
950         ColorCache color_cache_;
951         ///
952         QTranslator qt_trans_;
953         ///
954         QHash<int, SocketNotifier *> socket_notifiers_;
955         ///
956         Menus menus_;
957         ///
958         /// The global instance
959         Toolbars toolbars_;
960
961         /// this timer is used for any regular events one wants to
962         /// perform. at present it is used to check if forked processes
963         /// are done.
964         QTimer general_timer_;
965
966         /// delayed FuncRequests
967         std::queue<FuncRequest> func_request_queue_;
968
969         ///
970         KeySequence keyseq;
971         ///
972         KeySequence cancel_meta_seq;
973         ///
974         KeyModifier meta_fake_bit;
975
976         /// The result of last dispatch action
977         DispatchResult dispatch_result_;
978
979         /// Multiple views container.
980         /**
981         * Warning: This must not be a smart pointer as the destruction of the
982         * object is handled by Qt when the view is closed
983         * \sa Qt::WA_DeleteOnClose attribute.
984         */
985         QHash<int, GuiView *> views_;
986
987         /// Only used on mac.
988         QMenuBar * global_menubar_;
989
990 #ifdef Q_OS_MAC
991         /// Linkback mime handler for MacOSX.
992         QMacPasteboardMimeGraphics mac_pasteboard_mime_;
993 #endif
994
995 #if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
996 #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
997         /// WMF Mime handler for Windows clipboard.
998         QWindowsMimeMetafile * wmf_mime_;
999 #endif
1000 #endif
1001
1002         /// Allows to check whether ESC was pressed during a long operation
1003         KeyChecker key_checker_;
1004 };
1005
1006
1007 GuiApplication * guiApp;
1008
1009 GuiApplication::~GuiApplication()
1010 {
1011 #ifdef Q_OS_MAC
1012         closeAllLinkBackLinks();
1013 #endif
1014         delete d;
1015 }
1016
1017
1018 GuiApplication::GuiApplication(int & argc, char ** argv)
1019         : QApplication(argc, argv), current_view_(0),
1020           d(new GuiApplication::Private)
1021 {
1022         QString app_name = "LyX";
1023         QCoreApplication::setOrganizationName(app_name);
1024         QCoreApplication::setOrganizationDomain("lyx.org");
1025         QCoreApplication::setApplicationName(lyx_package);
1026 #if QT_VERSION >= 0x050000
1027         QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
1028 #endif
1029
1030         qsrand(QDateTime::currentDateTime().toTime_t());
1031
1032         // Install translator for GUI elements.
1033         installTranslator(&d->qt_trans_);
1034
1035 #ifdef QPA_XCB
1036         // Enable reception of XCB events.
1037         installNativeEventFilter(this);
1038 #endif
1039
1040         // FIXME: quitOnLastWindowClosed is true by default. We should have a
1041         // lyxrc setting for this in order to let the application stay resident.
1042         // But then we need some kind of dock icon, at least on Windows.
1043         /*
1044         if (lyxrc.quit_on_last_window_closed)
1045                 setQuitOnLastWindowClosed(false);
1046         */
1047 #ifdef Q_OS_MAC
1048         // FIXME: Do we need a lyxrc setting for this on Mac? This behaviour
1049         // seems to be the default case for applications like LyX.
1050         setQuitOnLastWindowClosed(false);
1051         // This allows to translate the strings that appear in the LyX menu.
1052         /// A translator suitable for the entries in the LyX menu.
1053         /// Only needed with Qt/Mac.
1054         installTranslator(new MenuTranslator(this));
1055         ///
1056         setupApplescript();
1057 #endif
1058
1059 #if defined(Q_WS_X11) || defined(QPA_XCB)
1060         // doubleClickInterval() is 400 ms on X11 which is just too long.
1061         // On Windows and Mac OS X, the operating system's value is used.
1062         // On Microsoft Windows, calling this function sets the double
1063         // click interval for all applications. So we don't!
1064         QApplication::setDoubleClickInterval(300);
1065 #endif
1066
1067         connect(this, SIGNAL(lastWindowClosed()), this, SLOT(onLastWindowClosed()));
1068
1069         // needs to be done before reading lyxrc
1070         QWidget w;
1071         lyxrc.dpi = (w.logicalDpiX() + w.logicalDpiY()) / 2;
1072
1073         guiApp = this;
1074
1075         // Set the cache to 5120 kilobytes which corresponds to screen size of
1076         // 1280 by 1024 pixels with a color depth of 32 bits.
1077         QPixmapCache::setCacheLimit(5120);
1078
1079         // Initialize RC Fonts
1080         if (lyxrc.roman_font_name.empty())
1081                 lyxrc.roman_font_name = fromqstr(romanFontName());
1082
1083         if (lyxrc.sans_font_name.empty())
1084                 lyxrc.sans_font_name = fromqstr(sansFontName());
1085
1086         if (lyxrc.typewriter_font_name.empty())
1087                 lyxrc.typewriter_font_name = fromqstr(typewriterFontName());
1088
1089         d->general_timer_.setInterval(500);
1090         connect(&d->general_timer_, SIGNAL(timeout()),
1091                 this, SLOT(handleRegularEvents()));
1092         d->general_timer_.start();
1093
1094         // maxThreadCount() defaults in general to 2 on single or dual-processor.
1095         // This is clearly not enough in a time where we use threads for
1096         // document preview and/or export. 20 should be OK.
1097         QThreadPool::globalInstance()->setMaxThreadCount(20);
1098
1099         // make sure tooltips are formatted
1100         installEventFilter(new ToolTipFormatter(this));
1101 }
1102
1103
1104 GuiApplication * theGuiApp()
1105 {
1106         return dynamic_cast<GuiApplication *>(theApp());
1107 }
1108
1109
1110 double GuiApplication::pixelRatio() const
1111 {
1112 #if QT_VERSION >= 0x050000
1113         return qt_scale_factor * devicePixelRatio();
1114 #else
1115         return 1.0;
1116 #endif
1117 }
1118
1119
1120 void GuiApplication::clearSession()
1121 {
1122         QSettings settings;
1123         settings.clear();
1124 }
1125
1126
1127 docstring Application::iconName(FuncRequest const & f, bool unknown)
1128 {
1129         return qstring_to_ucs4(lyx::frontend::iconName(f, unknown));
1130 }
1131
1132
1133 docstring Application::mathIcon(docstring const & c)
1134 {
1135         return qstring_to_ucs4(findImg(toqstr(c)));
1136 }
1137
1138
1139 FuncStatus GuiApplication::getStatus(FuncRequest const & cmd) const
1140 {
1141         FuncStatus status;
1142
1143         BufferView * bv = 0;
1144         BufferView * doc_bv = 0;
1145
1146         if (cmd.action() == LFUN_NOACTION) {
1147                 status.message(from_utf8(N_("Nothing to do")));
1148                 status.setEnabled(false);
1149         }
1150
1151         else if (cmd.action() == LFUN_UNKNOWN_ACTION) {
1152                 status.setUnknown(true);
1153                 status.message(from_utf8(N_("Unknown action")));
1154                 status.setEnabled(false);
1155         }
1156
1157         // Does the GuiApplication know something?
1158         else if (getStatus(cmd, status)) { }
1159
1160         // If we do not have a GuiView, then other functions are disabled
1161         else if (!current_view_)
1162                 status.setEnabled(false);
1163
1164         // Does the GuiView know something?
1165         else if (current_view_->getStatus(cmd, status)) { }
1166
1167         // In LyX/Mac, when a dialog is open, the menus of the
1168         // application can still be accessed without giving focus to
1169         // the main window. In this case, we want to disable the menu
1170         // entries that are buffer or view-related.
1171         //FIXME: Abdel (09/02/10) This has very bad effect on Linux, don't know why...
1172         /*
1173         else if (cmd.origin() == FuncRequest::MENU && !current_view_->hasFocus())
1174                 status.setEnabled(false);
1175         */
1176
1177         // If we do not have a BufferView, then other functions are disabled
1178         else if (!(bv = current_view_->currentBufferView()))
1179                 status.setEnabled(false);
1180
1181         // Does the current BufferView know something?
1182         else if (bv->getStatus(cmd, status)) { }
1183
1184         // Does the current Buffer know something?
1185         else if (bv->buffer().getStatus(cmd, status)) { }
1186
1187         // If we do not have a document BufferView, different from the
1188         // current BufferView, then other functions are disabled
1189         else if (!(doc_bv = current_view_->documentBufferView()) || doc_bv == bv)
1190                 status.setEnabled(false);
1191
1192         // Does the document Buffer know something?
1193         else if (doc_bv->buffer().getStatus(cmd, status)) { }
1194
1195         else {
1196                 LYXERR(Debug::ACTION, "LFUN not handled in getStatus(): " << cmd);
1197                 status.message(from_utf8(N_("Command not handled")));
1198                 status.setEnabled(false);
1199         }
1200
1201         // the default error message if we disable the command
1202         if (!status.enabled() && status.message().empty())
1203                 status.message(from_utf8(N_("Command disabled")));
1204
1205         return status;
1206 }
1207
1208
1209 bool GuiApplication::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
1210 {
1211         // I would really like to avoid having this switch and rather try to
1212         // encode this in the function itself.
1213         // -- And I'd rather let an inset decide which LFUNs it is willing
1214         // to handle (Andre')
1215         bool enable = true;
1216         switch (cmd.action()) {
1217
1218         // This could be used for the no-GUI version. The GUI version is handled in
1219         // GuiView::getStatus(). See above.
1220         /*
1221         case LFUN_BUFFER_WRITE:
1222         case LFUN_BUFFER_WRITE_AS: {
1223                 Buffer * b = theBufferList().getBuffer(FileName(cmd.getArg(0)));
1224                 enable = b && (b->isUnnamed() || !b->isClean());
1225                 break;
1226         }
1227         */
1228
1229         case LFUN_BOOKMARK_GOTO: {
1230                 const unsigned int num = convert<unsigned int>(to_utf8(cmd.argument()));
1231                 enable = theSession().bookmarks().isValid(num);
1232                 break;
1233         }
1234
1235         case LFUN_BOOKMARK_CLEAR:
1236                 enable = theSession().bookmarks().hasValid();
1237                 break;
1238
1239         // this one is difficult to get right. As a half-baked
1240         // solution, we consider only the first action of the sequence
1241         case LFUN_COMMAND_SEQUENCE: {
1242                 // argument contains ';'-terminated commands
1243                 string const firstcmd = token(to_utf8(cmd.argument()), ';', 0);
1244                 FuncRequest func(lyxaction.lookupFunc(firstcmd));
1245                 func.setOrigin(cmd.origin());
1246                 flag = getStatus(func);
1247                 break;
1248         }
1249
1250         // we want to check if at least one of these is enabled
1251         case LFUN_COMMAND_ALTERNATIVES: {
1252                 // argument contains ';'-terminated commands
1253                 string arg = to_utf8(cmd.argument());
1254                 while (!arg.empty()) {
1255                         string first;
1256                         arg = split(arg, first, ';');
1257                         FuncRequest func(lyxaction.lookupFunc(first));
1258                         func.setOrigin(cmd.origin());
1259                         flag = getStatus(func);
1260                         // if this one is enabled, the whole thing is
1261                         if (flag.enabled())
1262                                 break;
1263                 }
1264                 break;
1265         }
1266
1267         case LFUN_CALL: {
1268                 FuncRequest func;
1269                 string name = to_utf8(cmd.argument());
1270                 if (theTopLevelCmdDef().lock(name, func)) {
1271                         func.setOrigin(cmd.origin());
1272                         flag = getStatus(func);
1273                         theTopLevelCmdDef().release(name);
1274                 } else {
1275                         // catch recursion or unknown command
1276                         // definition. all operations until the
1277                         // recursion or unknown command definition
1278                         // occurs are performed, so set the state to
1279                         // enabled
1280                         enable = true;
1281                 }
1282                 break;
1283         }
1284
1285         case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
1286         case LFUN_REPEAT:
1287         case LFUN_PREFERENCES_SAVE:
1288         case LFUN_BUFFER_SAVE_AS_DEFAULT:
1289         case LFUN_DEBUG_LEVEL_SET:
1290                 // these are handled in our dispatch()
1291                 break;
1292
1293         case LFUN_WINDOW_CLOSE:
1294                 enable = d->views_.size() > 0;
1295                 break;
1296
1297         case LFUN_BUFFER_NEW:
1298         case LFUN_BUFFER_NEW_TEMPLATE:
1299         case LFUN_FILE_OPEN:
1300         case LFUN_HELP_OPEN:
1301         case LFUN_SCREEN_FONT_UPDATE:
1302         case LFUN_SET_COLOR:
1303         case LFUN_WINDOW_NEW:
1304         case LFUN_LYX_QUIT:
1305         case LFUN_LYXRC_APPLY:
1306         case LFUN_COMMAND_PREFIX:
1307         case LFUN_CANCEL:
1308         case LFUN_META_PREFIX:
1309         case LFUN_RECONFIGURE:
1310         case LFUN_SERVER_GET_FILENAME:
1311         case LFUN_SERVER_NOTIFY:
1312                 enable = true;
1313                 break;
1314
1315         case LFUN_BUFFER_FORALL: {
1316                 if (theBufferList().empty()) {
1317                         flag.message(from_utf8(N_("Command not allowed without a buffer open")));
1318                         flag.setEnabled(false);
1319                         break;
1320                 }
1321
1322                 FuncRequest const cmdToPass = lyxaction.lookupFunc(cmd.getLongArg(0));
1323                 if (cmdToPass.action() == LFUN_UNKNOWN_ACTION) {
1324                         flag.message(from_utf8(N_("the <LFUN-COMMAND> argument of buffer-forall is not valid")));
1325                         flag.setEnabled(false);
1326                 }
1327                 break;
1328         }
1329
1330         case LFUN_DIALOG_SHOW: {
1331                 string const name = cmd.getArg(0);
1332                 return name == "aboutlyx"
1333                         || name == "prefs"
1334                         || name == "texinfo"
1335                         || name == "progress"
1336                         || name == "compare";
1337         }
1338
1339         default:
1340                 return false;
1341         }
1342
1343         if (!enable)
1344                 flag.setEnabled(false);
1345         return true;
1346 }
1347
1348 /// make a post-dispatch status message
1349 static docstring makeDispatchMessage(docstring const & msg,
1350                                      FuncRequest const & cmd)
1351 {
1352         const bool verbose = (cmd.origin() == FuncRequest::MENU
1353                               || cmd.origin() == FuncRequest::TOOLBAR
1354                               || cmd.origin() == FuncRequest::COMMANDBUFFER);
1355
1356         if (cmd.action() == LFUN_SELF_INSERT || !verbose) {
1357                 LYXERR(Debug::ACTION, "dispatch msg is " << msg);
1358                 return msg;
1359         }
1360
1361         docstring dispatch_msg = msg;
1362         if (!dispatch_msg.empty())
1363                 dispatch_msg += ' ';
1364
1365         docstring comname = from_utf8(lyxaction.getActionName(cmd.action()));
1366
1367         bool argsadded = false;
1368
1369         if (!cmd.argument().empty()) {
1370                 if (cmd.action() != LFUN_UNKNOWN_ACTION) {
1371                         comname += ' ' + cmd.argument();
1372                         argsadded = true;
1373                 }
1374         }
1375         docstring const shortcuts = theTopLevelKeymap().
1376                 printBindings(cmd, KeySequence::ForGui);
1377
1378         if (!shortcuts.empty())
1379                 comname += ": " + shortcuts;
1380         else if (!argsadded && !cmd.argument().empty())
1381                 comname += ' ' + cmd.argument();
1382
1383         if (!comname.empty()) {
1384                 comname = rtrim(comname);
1385                 dispatch_msg += '(' + rtrim(comname) + ')';
1386         }
1387         LYXERR(Debug::ACTION, "verbose dispatch msg " << to_utf8(dispatch_msg));
1388         return dispatch_msg;
1389 }
1390
1391
1392 DispatchResult const & GuiApplication::dispatch(FuncRequest const & cmd)
1393 {
1394         Buffer * buffer = 0;
1395         if (current_view_ && current_view_->currentBufferView()) {
1396                 current_view_->currentBufferView()->cursor().saveBeforeDispatchPosXY();
1397                 buffer = &current_view_->currentBufferView()->buffer();
1398         }
1399
1400         DispatchResult dr;
1401         dr.screenUpdate(Update::FitCursor);
1402         {
1403                 // This handles undo groups automagically
1404                 UndoGroupHelper ugh(buffer);
1405                 dispatch(cmd, dr);
1406         }
1407
1408         // redraw the screen at the end (first of the two drawing steps).
1409         // This is done unless explicitly requested otherwise
1410         updateCurrentView(cmd, dr);
1411         d->dispatch_result_ = dr;
1412         return d->dispatch_result_;
1413 }
1414
1415
1416 void GuiApplication::updateCurrentView(FuncRequest const & cmd, DispatchResult & dr)
1417 {
1418         if (!current_view_)
1419                 return;
1420
1421         BufferView * bv = current_view_->currentBufferView();
1422         if (bv) {
1423                 if (dr.needBufferUpdate()) {
1424                         bv->cursor().clearBufferUpdate();
1425                         bv->buffer().updateBuffer();
1426                 } else if (dr.needChangesUpdate()) {
1427                         // updateBuffer() already updates the change-tracking presence flag
1428                         bv->buffer().updateChangesPresent();
1429                 }
1430                 // BufferView::update() updates the ViewMetricsInfo and
1431                 // also initializes the position cache for all insets in
1432                 // (at least partially) visible top-level paragraphs.
1433                 // We will redraw the screen only if needed.
1434                 bv->processUpdateFlags(dr.screenUpdate());
1435
1436                 // Do we have a selection?
1437                 theSelection().haveSelection(bv->cursor().selection());
1438
1439                 // update gui
1440                 current_view_->restartCaret();
1441         }
1442         if (dr.needMessageUpdate()) {
1443                 // Some messages may already be translated, so we cannot use _()
1444                 current_view_->message(makeDispatchMessage(
1445                                 translateIfPossible(dr.message()), cmd));
1446         }
1447 }
1448
1449
1450 void GuiApplication::gotoBookmark(unsigned int idx, bool openFile,
1451         bool switchToBuffer)
1452 {
1453         if (!theSession().bookmarks().isValid(idx))
1454                 return;
1455         BookmarksSection::Bookmark const & bm =
1456                 theSession().bookmarks().bookmark(idx);
1457         LASSERT(!bm.filename.empty(), return);
1458         string const file = bm.filename.absFileName();
1459         // if the file is not opened, open it.
1460         if (!theBufferList().exists(bm.filename)) {
1461                 if (openFile)
1462                         dispatch(FuncRequest(LFUN_FILE_OPEN, file));
1463                 else
1464                         return;
1465         }
1466         // open may fail, so we need to test it again
1467         if (!theBufferList().exists(bm.filename))
1468                 return;
1469
1470         // bm can be changed when saving
1471         BookmarksSection::Bookmark tmp = bm;
1472
1473         // Special case idx == 0 used for back-from-back jump navigation
1474         if (idx == 0)
1475                 dispatch(FuncRequest(LFUN_BOOKMARK_SAVE, "0"));
1476
1477         // if the current buffer is not that one, switch to it.
1478         BufferView * doc_bv = current_view_ ?
1479                 current_view_->documentBufferView() : 0;
1480         Cursor const * old = doc_bv ? &doc_bv->cursor() : 0;
1481         if (!doc_bv || doc_bv->buffer().fileName() != tmp.filename) {
1482                 if (switchToBuffer) {
1483                         dispatch(FuncRequest(LFUN_BUFFER_SWITCH, file));
1484                         if (!current_view_)
1485                                 return;
1486                         doc_bv = current_view_->documentBufferView();
1487                 } else
1488                         return;
1489         }
1490
1491         // moveToPosition try paragraph id first and then paragraph (pit, pos).
1492         if (!doc_bv || !doc_bv->moveToPosition(
1493                         tmp.bottom_pit, tmp.bottom_pos, tmp.top_id, tmp.top_pos))
1494                 return;
1495
1496         Cursor & cur = doc_bv->cursor();
1497         if (old && cur != *old)
1498                 notifyCursorLeavesOrEnters(*old, cur);
1499
1500         // bm changed
1501         if (idx == 0)
1502                 return;
1503
1504         // Cursor jump succeeded!
1505         pit_type new_pit = cur.pit();
1506         pos_type new_pos = cur.pos();
1507         int new_id = cur.paragraph().id();
1508
1509         // if bottom_pit, bottom_pos or top_id has been changed, update bookmark
1510         // see http://www.lyx.org/trac/ticket/3092
1511         if (bm.bottom_pit != new_pit || bm.bottom_pos != new_pos
1512                 || bm.top_id != new_id) {
1513                 const_cast<BookmarksSection::Bookmark &>(bm).updatePos(
1514                         new_pit, new_pos, new_id);
1515         }
1516 }
1517
1518 // This function runs "configure" and then rereads lyx.defaults to
1519 // reconfigure the automatic settings.
1520 void GuiApplication::reconfigure(string const & option)
1521 {
1522         // emit message signal.
1523         if (current_view_)
1524                 current_view_->message(_("Running configure..."));
1525
1526         // Run configure in user lyx directory
1527         string const lock_file = package().getConfigureLockName();
1528         int fd = fileLock(lock_file.c_str());
1529         int const ret = package().reconfigureUserLyXDir(option);
1530         // emit message signal.
1531         if (current_view_)
1532                 current_view_->message(_("Reloading configuration..."));
1533         lyxrc.read(libFileSearch(QString(), "lyxrc.defaults"), false);
1534         // Re-read packages.lst
1535         LaTeXPackages::getAvailable();
1536         fileUnlock(fd, lock_file.c_str());
1537
1538         if (ret)
1539                 Alert::information(_("System reconfiguration failed"),
1540                            _("The system reconfiguration has failed.\n"
1541                                   "Default textclass is used but LyX may\n"
1542                                   "not be able to work properly.\n"
1543                                   "Please reconfigure again if needed."));
1544         else
1545                 Alert::information(_("System reconfigured"),
1546                            _("The system has been reconfigured.\n"
1547                              "You need to restart LyX to make use of any\n"
1548                              "updated document class specifications."));
1549 }
1550
1551 void GuiApplication::validateCurrentView()
1552 {
1553         if (!d->views_.empty() && !current_view_) {
1554                 // currently at least one view exists but no view has the focus.
1555                 // choose the last view to make it current.
1556                 // a view without any open document is preferred.
1557                 GuiView * candidate = 0;
1558                 QHash<int, GuiView *>::const_iterator it = d->views_.begin();
1559                 QHash<int, GuiView *>::const_iterator end = d->views_.end();
1560                 for (; it != end; ++it) {
1561                         candidate = *it;
1562                         if (!candidate->documentBufferView())
1563                                 break;
1564                 }
1565                 setCurrentView(candidate);
1566         }
1567 }
1568
1569 void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
1570 {
1571         string const argument = to_utf8(cmd.argument());
1572         FuncCode const action = cmd.action();
1573
1574         LYXERR(Debug::ACTION, "cmd: " << cmd);
1575
1576         // we have not done anything wrong yet.
1577         dr.setError(false);
1578
1579         FuncStatus const flag = getStatus(cmd);
1580         if (!flag.enabled()) {
1581                 // We cannot use this function here
1582                 LYXERR(Debug::ACTION, "action "
1583                        << lyxaction.getActionName(action)
1584                        << " [" << action << "] is disabled at this location");
1585                 dr.setMessage(flag.message());
1586                 dr.setError(true);
1587                 dr.dispatched(false);
1588                 dr.screenUpdate(Update::None);
1589                 dr.clearBufferUpdate();
1590                 return;
1591         };
1592
1593         if (cmd.origin() == FuncRequest::LYXSERVER) {
1594                 if (current_view_ && current_view_->currentBufferView())
1595                         current_view_->currentBufferView()->cursor().saveBeforeDispatchPosXY();
1596                 // we will also need to redraw the screen at the end
1597                 dr.screenUpdate(Update::FitCursor);
1598         }
1599
1600         // Assumes that the action will be dispatched.
1601         dr.dispatched(true);
1602
1603         switch (cmd.action()) {
1604
1605         case LFUN_WINDOW_NEW:
1606                 createView(toqstr(cmd.argument()));
1607                 break;
1608
1609         case LFUN_WINDOW_CLOSE:
1610                 // update bookmark pit of the current buffer before window close
1611                 for (size_t i = 0; i < theSession().bookmarks().size(); ++i)
1612                         gotoBookmark(i+1, false, false);
1613                 // clear the last opened list, because
1614                 // maybe this will end the session
1615                 theSession().lastOpened().clear();
1616                 // check for valid current_view_
1617                 validateCurrentView();
1618                 if (current_view_)
1619                         current_view_->closeScheduled();
1620                 break;
1621
1622         case LFUN_LYX_QUIT:
1623                 // quitting is triggered by the gui code
1624                 // (leaving the event loop).
1625                 if (current_view_)
1626                         current_view_->message(from_utf8(N_("Exiting.")));
1627                 if (closeAllViews())
1628                         quit();
1629                 break;
1630
1631         case LFUN_SCREEN_FONT_UPDATE: {
1632                 // handle the screen font changes.
1633                 d->font_loader_.update();
1634                 dr.screenUpdate(Update::Force | Update::FitCursor);
1635                 break;
1636         }
1637
1638         case LFUN_BUFFER_NEW:
1639                 validateCurrentView();
1640                 if (!current_view_
1641                    || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
1642                         createView(QString(), false); // keep hidden
1643                         current_view_->newDocument(to_utf8(cmd.argument()), false);
1644                         current_view_->show();
1645                         setActiveWindow(current_view_);
1646                 } else {
1647                         current_view_->newDocument(to_utf8(cmd.argument()), false);
1648                 }
1649                 break;
1650
1651         case LFUN_BUFFER_NEW_TEMPLATE:
1652                 validateCurrentView();
1653                 if (!current_view_
1654                    || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
1655                         createView();
1656                         current_view_->newDocument(to_utf8(cmd.argument()), true);
1657                         if (!current_view_->documentBufferView())
1658                                 current_view_->close();
1659                 } else {
1660                         current_view_->newDocument(to_utf8(cmd.argument()), true);
1661                 }
1662                 break;
1663
1664         case LFUN_FILE_OPEN: {
1665                 // FIXME: normally the code below is not needed, since getStatus makes sure that
1666                 //   current_view_ is not null.
1667                 validateCurrentView();
1668                 // FIXME: create a new method shared with LFUN_HELP_OPEN.
1669                 string const fname = to_utf8(cmd.argument());
1670                 bool const is_open = FileName::isAbsolute(fname)
1671                         && theBufferList().getBuffer(FileName(fname));
1672                 if (!current_view_
1673                     || (!lyxrc.open_buffers_in_tabs
1674                         && current_view_->documentBufferView() != 0
1675                         && !is_open)) {
1676                         // We want the ui session to be saved per document and not per
1677                         // window number. The filename crc is a good enough identifier.
1678                         boost::crc_32_type crc;
1679                         crc = for_each(fname.begin(), fname.end(), crc);
1680                         createView(crc.checksum());
1681                         current_view_->openDocument(fname);
1682                         if (!current_view_->documentBufferView())
1683                                 current_view_->close();
1684                         else if (cmd.origin() == FuncRequest::LYXSERVER) {
1685                                 current_view_->raise();
1686                                 current_view_->activateWindow();
1687                                 current_view_->showNormal();
1688                         }
1689                 } else {
1690                         current_view_->openDocument(fname);
1691                         if (cmd.origin() == FuncRequest::LYXSERVER) {
1692                                 current_view_->raise();
1693                                 current_view_->activateWindow();
1694                                 current_view_->showNormal();
1695                         }
1696                 }
1697                 break;
1698         }
1699
1700         case LFUN_HELP_OPEN: {
1701                 // FIXME: create a new method shared with LFUN_FILE_OPEN.
1702                 if (current_view_ == 0)
1703                         createView();
1704                 string const arg = to_utf8(cmd.argument());
1705                 if (arg.empty()) {
1706                         current_view_->message(_("Missing argument"));
1707                         break;
1708                 }
1709                 FileName fname = i18nLibFileSearch("doc", arg, "lyx");
1710                 if (fname.empty())
1711                         fname = i18nLibFileSearch("examples", arg, "lyx");
1712
1713                 if (fname.empty()) {
1714                         lyxerr << "LyX: unable to find documentation file `"
1715                                << arg << "'. Bad installation?" << endl;
1716                         break;
1717                 }
1718                 current_view_->message(bformat(_("Opening help file %1$s..."),
1719                                                makeDisplayPath(fname.absFileName())));
1720                 Buffer * buf = current_view_->loadDocument(fname, false);
1721                 if (buf)
1722                         buf->setReadonly(!current_view_->develMode());
1723                 break;
1724         }
1725
1726         case LFUN_SET_COLOR: {
1727                 string lyx_name;
1728                 string const x11_name = split(to_utf8(cmd.argument()), lyx_name, ' ');
1729                 if (lyx_name.empty() || x11_name.empty()) {
1730                         if (current_view_)
1731                                 current_view_->message(
1732                                         _("Syntax: set-color <lyx_name> <x11_name>"));
1733                         break;
1734                 }
1735
1736 #if 0
1737                 // FIXME: The graphics cache no longer has a changeDisplay method.
1738                 string const graphicsbg = lcolor.getLyXName(Color_graphicsbg);
1739                 bool const graphicsbg_changed =
1740                                 lyx_name == graphicsbg && x11_name != graphicsbg;
1741                 if (graphicsbg_changed)
1742                         graphics::GCache::get().changeDisplay(true);
1743 #endif
1744
1745                 if (!lcolor.setColor(lyx_name, x11_name)) {
1746                         if (current_view_)
1747                                 current_view_->message(
1748                                         bformat(_("Set-color \"%1$s\" failed "
1749                                         "- color is undefined or "
1750                                         "may not be redefined"),
1751                                         from_utf8(lyx_name)));
1752                         break;
1753                 }
1754                 // Make sure we don't keep old colors in cache.
1755                 d->color_cache_.clear();
1756                 // Update the current view
1757                 lyx::dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
1758                 break;
1759         }
1760
1761         case LFUN_LYXRC_APPLY: {
1762                 // reset active key sequences, since the bindings
1763                 // are updated (bug 6064)
1764                 d->keyseq.reset();
1765                 LyXRC const lyxrc_orig = lyxrc;
1766
1767                 istringstream ss(to_utf8(cmd.argument()));
1768                 bool const success = lyxrc.read(ss);
1769
1770                 if (!success) {
1771                         lyxerr << "Warning in LFUN_LYXRC_APPLY!\n"
1772                                         << "Unable to read lyxrc data"
1773                                         << endl;
1774                         break;
1775                 }
1776
1777                 actOnUpdatedPrefs(lyxrc_orig, lyxrc);
1778
1779                 // If the request comes from the minibuffer, then we can't reset
1780                 // the GUI, since that would destory the minibuffer itself and
1781                 // cause a crash, since we are currently in one of the methods of
1782                 // GuiCommandBuffer. See bug #8540.
1783                 if (cmd.origin() != FuncRequest::COMMANDBUFFER)
1784                         resetGui();
1785                 // else
1786                 //   FIXME Unfortunately, that leaves a bug here, since we cannot
1787                 //   reset the GUI in this case. If the changes to lyxrc affected the
1788                 //   UI, then, nothing would happen. This seems fairly unlikely, but
1789                 //   it definitely is a bug.
1790
1791                 break;
1792         }
1793
1794         case LFUN_COMMAND_PREFIX:
1795                 dispatch(FuncRequest(LFUN_MESSAGE, d->keyseq.printOptions(true)));
1796                 break;
1797
1798         case LFUN_CANCEL: {
1799                 d->keyseq.reset();
1800                 d->meta_fake_bit = NoModifier;
1801                 GuiView * gv = currentView();
1802                 if (gv && gv->currentBufferView())
1803                         // cancel any selection
1804                         processFuncRequest(FuncRequest(LFUN_MARK_OFF));
1805                 dr.setMessage(from_ascii(N_("Cancel")));
1806                 break;
1807         }
1808         case LFUN_META_PREFIX:
1809                 d->meta_fake_bit = AltModifier;
1810                 dr.setMessage(d->keyseq.print(KeySequence::ForGui));
1811                 break;
1812
1813         // --- Menus -----------------------------------------------
1814         case LFUN_RECONFIGURE:
1815                 // argument is any additional parameter to the configure.py command
1816                 reconfigure(to_utf8(cmd.argument()));
1817                 break;
1818
1819         // --- lyxserver commands ----------------------------
1820         case LFUN_SERVER_GET_FILENAME: {
1821                 if (current_view_ && current_view_->documentBufferView()) {
1822                         docstring const fname = from_utf8(
1823                                 current_view_->documentBufferView()->buffer().absFileName());
1824                         dr.setMessage(fname);
1825                         LYXERR(Debug::INFO, "FNAME[" << fname << ']');
1826                 } else {
1827                         dr.setMessage(docstring());
1828                         LYXERR(Debug::INFO, "No current file for LFUN_SERVER_GET_FILENAME");
1829                 }
1830                 break;
1831         }
1832
1833         case LFUN_SERVER_NOTIFY: {
1834                 docstring const dispatch_buffer = d->keyseq.print(KeySequence::Portable);
1835                 dr.setMessage(dispatch_buffer);
1836                 theServer().notifyClient(to_utf8(dispatch_buffer));
1837                 break;
1838         }
1839
1840         case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
1841                 lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1842                 break;
1843
1844         case LFUN_REPEAT: {
1845                 // repeat command
1846                 string countstr;
1847                 string rest = split(argument, countstr, ' ');
1848                 int const count = convert<int>(countstr);
1849                 // an arbitrary number to limit number of iterations
1850                 int const max_iter = 10000;
1851                 if (count > max_iter) {
1852                         dr.setMessage(bformat(_("Cannot iterate more than %1$d times"), max_iter));
1853                         dr.setError(true);
1854                 } else {
1855                         for (int i = 0; i < count; ++i) {
1856                                 FuncRequest lfun = lyxaction.lookupFunc(rest);
1857                                 lfun.allowAsync(false);
1858                                 dispatch(lfun);
1859                         }
1860                 }
1861                 break;
1862         }
1863
1864         case LFUN_COMMAND_SEQUENCE: {
1865                 // argument contains ';'-terminated commands
1866                 string arg = argument;
1867                 // FIXME: this LFUN should also work without any view.
1868                 Buffer * buffer = (current_view_ && current_view_->documentBufferView())
1869                                   ? &(current_view_->documentBufferView()->buffer()) : 0;
1870                 // This handles undo groups automagically
1871                 UndoGroupHelper ugh(buffer);
1872                 while (!arg.empty()) {
1873                         string first;
1874                         arg = split(arg, first, ';');
1875                         FuncRequest func(lyxaction.lookupFunc(first));
1876                         func.allowAsync(false);
1877                         func.setOrigin(cmd.origin());
1878                         dispatch(func);
1879                 }
1880                 break;
1881         }
1882
1883         case LFUN_BUFFER_FORALL: {
1884                 FuncRequest const funcToRun = lyxaction.lookupFunc(cmd.getLongArg(0));
1885
1886                 map<Buffer *, GuiView *> views_lVisible;
1887                 map<GuiView *, Buffer *> activeBuffers;
1888
1889                 QList<GuiView *> allViews = d->views_.values();
1890
1891                 // this for does not modify any buffer. It just collects info on local
1892                 // visibility of buffers and on which buffer is active in each view.
1893                 Buffer * const last = theBufferList().last();
1894                 for(GuiView * view : allViews) {
1895                         // all of the buffers might be locally hidden. That is, there is no
1896                         // active buffer.
1897                         if (!view || !view->currentBufferView())
1898                                 activeBuffers[view] = 0;
1899                         else
1900                                 activeBuffers[view] = &view->currentBufferView()->buffer();
1901
1902                         // find out if each is locally visible or locally hidden.
1903                         // we don't use a for loop as the buffer list cycles.
1904                         Buffer * b = theBufferList().first();
1905                         while (true) {
1906                                 bool const locallyVisible = view && view->workArea(*b);
1907                                 if (locallyVisible) {
1908                                         bool const exists_ = (views_lVisible.find(b) != views_lVisible.end());
1909                                         // only need to overwrite/add if we don't already know a buffer is globally
1910                                         // visible or we do know but we would prefer to dispatch LFUN from the
1911                                         // current view because of cursor position issues.
1912                                         if (!exists_ || (exists_ && views_lVisible[b] != current_view_))
1913                                                 views_lVisible[b] = view;
1914                                 }
1915                                 if (b == last)
1916                                         break;
1917                                 b = theBufferList().next(b);
1918                         }
1919                 }
1920
1921                 GuiView * const homeView = currentView();
1922                 Buffer * b = theBufferList().first();
1923                 Buffer * nextBuf = 0;
1924                 int numProcessed = 0;
1925                 while (true) {
1926                         if (b != last)
1927                                 nextBuf = theBufferList().next(b); // get next now bc LFUN might close current.
1928
1929                         bool const visible = (views_lVisible.find(b) != views_lVisible.end());
1930                         if (visible) {
1931                                 // first change to a view where b is locally visible, preferably current_view_.
1932                                 GuiView * const vLv = views_lVisible[b];
1933                                 vLv->setBuffer(b);
1934                                 lyx::dispatch(funcToRun);
1935                                 numProcessed++;
1936                         }
1937                         if (b == last)
1938                                 break;
1939                         b = nextBuf;
1940                 }
1941
1942                 // put things back to how they were (if possible).
1943                 for (GuiView * view : allViews) {
1944                         Buffer * originalBuf = activeBuffers[view];
1945                         // there might not have been an active buffer in this view or it might have been closed by the LFUN.
1946                         if (theBufferList().isLoaded(originalBuf))
1947                                 view->setBuffer(originalBuf);
1948                 }
1949                 homeView->setFocus();
1950
1951                 dr.setMessage(bformat(_("Applied \"%1$s\" to %2$d buffer(s)"), from_utf8(cmd.getLongArg(0)), numProcessed));
1952                 break;
1953         }
1954
1955         case LFUN_COMMAND_ALTERNATIVES: {
1956                 // argument contains ';'-terminated commands
1957                 string arg = argument;
1958                 while (!arg.empty()) {
1959                         string first;
1960                         arg = split(arg, first, ';');
1961                         FuncRequest func(lyxaction.lookupFunc(first));
1962                         func.setOrigin(cmd.origin());
1963                         FuncStatus const stat = getStatus(func);
1964                         if (stat.enabled()) {
1965                                 dispatch(func);
1966                                 break;
1967                         }
1968                 }
1969                 break;
1970         }
1971
1972         case LFUN_CALL: {
1973                 FuncRequest func;
1974                 if (theTopLevelCmdDef().lock(argument, func)) {
1975                         func.setOrigin(cmd.origin());
1976                         dispatch(func);
1977                         theTopLevelCmdDef().release(argument);
1978                 } else {
1979                         if (func.action() == LFUN_UNKNOWN_ACTION) {
1980                                 // unknown command definition
1981                                 lyxerr << "Warning: unknown command definition `"
1982                                                 << argument << "'"
1983                                                 << endl;
1984                         } else {
1985                                 // recursion detected
1986                                 lyxerr << "Warning: Recursion in the command definition `"
1987                                                 << argument << "' detected"
1988                                                 << endl;
1989                         }
1990                 }
1991                 break;
1992         }
1993
1994         case LFUN_PREFERENCES_SAVE:
1995                 lyxrc.write(support::makeAbsPath("preferences",
1996                         package().user_support().absFileName()), false);
1997                 break;
1998
1999         case LFUN_BUFFER_SAVE_AS_DEFAULT: {
2000                 string const fname = addName(addPath(package().user_support().absFileName(),
2001                         "templates/"), "defaults.lyx");
2002                 Buffer defaults(fname);
2003
2004                 istringstream ss(argument);
2005                 Lexer lex;
2006                 lex.setStream(ss);
2007
2008                 // See #9236
2009                 // We need to make sure that, after we recreat the DocumentClass,
2010                 // which we do in readHeader, we apply it to the document itself.
2011                 DocumentClassConstPtr olddc = defaults.params().documentClassPtr();
2012                 int const unknown_tokens = defaults.readHeader(lex);
2013                 DocumentClassConstPtr newdc = defaults.params().documentClassPtr();
2014                 ErrorList el;
2015                 InsetText & theinset = static_cast<InsetText &>(defaults.inset());
2016                 cap::switchBetweenClasses(olddc, newdc, theinset, el);
2017
2018                 if (unknown_tokens != 0) {
2019                         lyxerr << "Warning in LFUN_BUFFER_SAVE_AS_DEFAULT!\n"
2020                                << unknown_tokens << " unknown token"
2021                                << (unknown_tokens == 1 ? "" : "s")
2022                                << endl;
2023                 }
2024
2025                 if (defaults.writeFile(FileName(defaults.absFileName())))
2026                         dr.setMessage(bformat(_("Document defaults saved in %1$s"),
2027                                               makeDisplayPath(fname)));
2028                 else {
2029                         dr.setError(true);
2030                         dr.setMessage(from_ascii(N_("Unable to save document defaults")));
2031                 }
2032                 break;
2033         }
2034
2035         case LFUN_BOOKMARK_GOTO:
2036                 // go to bookmark, open unopened file and switch to buffer if necessary
2037                 gotoBookmark(convert<unsigned int>(to_utf8(cmd.argument())), true, true);
2038                 dr.screenUpdate(Update::Force | Update::FitCursor);
2039                 break;
2040
2041         case LFUN_BOOKMARK_CLEAR:
2042                 theSession().bookmarks().clear();
2043                 break;
2044
2045         case LFUN_DEBUG_LEVEL_SET:
2046                 lyxerr.setLevel(Debug::value(to_utf8(cmd.argument())));
2047                 break;
2048
2049         case LFUN_DIALOG_SHOW: {
2050                 string const name = cmd.getArg(0);
2051
2052                 if ( name == "aboutlyx"
2053                         || name == "prefs"
2054                         || name == "texinfo"
2055                         || name == "progress"
2056                         || name == "compare")
2057                 {
2058                         // work around: on Mac OS the application
2059                         // is not terminated when closing the last view.
2060                         // Create a new one to be able to dispatch the
2061                         // LFUN_DIALOG_SHOW to this view.
2062                         if (current_view_ == 0)
2063                                 createView();
2064                 }
2065         }
2066         // fall through
2067         default:
2068                 // The LFUN must be for one of GuiView, BufferView, Buffer or Cursor;
2069                 // let's try that:
2070                 if (current_view_)
2071                         current_view_->dispatch(cmd, dr);
2072                 break;
2073         }
2074
2075         if (cmd.origin() == FuncRequest::LYXSERVER)
2076                 updateCurrentView(cmd, dr);
2077 }
2078
2079
2080 docstring GuiApplication::viewStatusMessage()
2081 {
2082         // When meta-fake key is pressed, show the key sequence so far + "M-".
2083         if (d->meta_fake_bit != NoModifier)
2084                 return d->keyseq.print(KeySequence::ForGui) + "M-";
2085
2086         // Else, when a non-complete key sequence is pressed,
2087         // show the available options.
2088         if (d->keyseq.length() > 0 && !d->keyseq.deleted())
2089                 return d->keyseq.printOptions(true);
2090
2091         return docstring();
2092 }
2093
2094
2095 void GuiApplication::handleKeyFunc(FuncCode action)
2096 {
2097         char_type c = 0;
2098
2099         if (d->keyseq.length())
2100                 c = 0;
2101         GuiView * gv = currentView();
2102         LASSERT(gv && gv->currentBufferView(), return);
2103         BufferView * bv = gv->currentBufferView();
2104         bv->getIntl().getTransManager().deadkey(
2105                 c, get_accent(action).accent, bv->cursor().innerText(),
2106                 bv->cursor());
2107         // Need to clear, in case the minibuffer calls these
2108         // actions
2109         d->keyseq.clear();
2110         // copied verbatim from do_accent_char
2111         bv->cursor().resetAnchor();
2112 }
2113
2114
2115 //Keep this in sync with GuiApplication::processKeySym below
2116 bool GuiApplication::queryKeySym(KeySymbol const & keysym,
2117                                  KeyModifier state) const
2118 {
2119         // Do nothing if we have nothing
2120         if (!keysym.isOK() || keysym.isModifier())
2121                 return false;
2122         // Do a one-deep top-level lookup for cancel and meta-fake keys.
2123         KeySequence seq;
2124         FuncRequest func = seq.addkey(keysym, state);
2125         // When not cancel or meta-fake, do the normal lookup.
2126         if ((func.action() != LFUN_CANCEL) && (func.action() != LFUN_META_PREFIX)) {
2127                 seq = d->keyseq;
2128                 func = seq.addkey(keysym, (state | d->meta_fake_bit));
2129         }
2130         // Maybe user can only reach the key via holding down shift.
2131         // Let's see. But only if shift is the only modifier
2132         if (func.action() == LFUN_UNKNOWN_ACTION && state == ShiftModifier)
2133                 // If addkey looked up a command and did not find further commands then
2134                 // seq has been reset at this point
2135                 func = seq.addkey(keysym, NoModifier);
2136
2137         LYXERR(Debug::KEY, " Key (queried) [action=" << func.action() << "]["
2138                << seq.print(KeySequence::Portable) << ']');
2139         return func.action() != LFUN_UNKNOWN_ACTION;
2140 }
2141
2142
2143 //Keep this in sync with GuiApplication::queryKeySym above
2144 void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state)
2145 {
2146         LYXERR(Debug::KEY, "KeySym is " << keysym.getSymbolName());
2147
2148         // Do nothing if we have nothing (JMarc)
2149         if (!keysym.isOK() || keysym.isModifier()) {
2150                 if (!keysym.isOK())
2151                         LYXERR(Debug::KEY, "Empty kbd action (probably composing)");
2152                 if (current_view_)
2153                         current_view_->restartCaret();
2154                 return;
2155         }
2156
2157         char_type encoded_last_key = keysym.getUCSEncoded();
2158
2159         // Do a one-deep top-level lookup for
2160         // cancel and meta-fake keys. RVDK_PATCH_5
2161         d->cancel_meta_seq.reset();
2162
2163         FuncRequest func = d->cancel_meta_seq.addkey(keysym, state);
2164         LYXERR(Debug::KEY, "action first set to [" << func.action() << ']');
2165
2166         // When not cancel or meta-fake, do the normal lookup.
2167         // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
2168         // Mostly, meta_fake_bit = NoModifier. RVDK_PATCH_5.
2169         if ((func.action() != LFUN_CANCEL) && (func.action() != LFUN_META_PREFIX)) {
2170                 // remove Caps Lock and Mod2 as a modifiers
2171                 func = d->keyseq.addkey(keysym, (state | d->meta_fake_bit));
2172                 LYXERR(Debug::KEY, "action now set to [" << func.action() << ']');
2173         }
2174
2175         // Dont remove this unless you know what you are doing.
2176         d->meta_fake_bit = NoModifier;
2177
2178         // Can this happen now ?
2179         if (func.action() == LFUN_NOACTION)
2180                 func = FuncRequest(LFUN_COMMAND_PREFIX);
2181
2182         LYXERR(Debug::KEY, " Key [action=" << func.action() << "]["
2183                 << d->keyseq.print(KeySequence::Portable) << ']');
2184
2185         // already here we know if it any point in going further
2186         // why not return already here if action == -1 and
2187         // num_bytes == 0? (Lgb)
2188
2189         if (d->keyseq.length() > 1 && current_view_)
2190                 current_view_->message(d->keyseq.print(KeySequence::ForGui));
2191
2192
2193         // Maybe user can only reach the key via holding down shift.
2194         // Let's see. But only if shift is the only modifier
2195         if (func.action() == LFUN_UNKNOWN_ACTION && state == ShiftModifier) {
2196                 LYXERR(Debug::KEY, "Trying without shift");
2197                 // If addkey looked up a command and did not find further commands then
2198                 // seq has been reset at this point
2199                 func = d->keyseq.addkey(keysym, NoModifier);
2200                 LYXERR(Debug::KEY, "Action now " << func.action());
2201         }
2202
2203         if (func.action() == LFUN_UNKNOWN_ACTION) {
2204                 // We didn't match any of the key sequences.
2205                 // See if it's normal insertable text not already
2206                 // covered by a binding
2207                 if (keysym.isText() && d->keyseq.length() == 1) {
2208                         // Non-printable characters (such as ASCII control characters)
2209                         // must not be inserted (#5704)
2210                         if (!isPrintable(encoded_last_key)) {
2211                                 LYXERR(Debug::KEY, "Non-printable character! Omitting.");
2212                                 if (current_view_)
2213                                         current_view_->restartCaret();
2214                                 return;
2215                         }
2216                         // The following modifier check is not needed on Mac.
2217                         // The keysym is either not text or it is different
2218                         // from the non-modifier keysym. See #9875 for the
2219                         // broken alt-modifier effect of having this code active.
2220 #if !defined(Q_OS_MAC)
2221                         // If a non-Shift Modifier is used we have a non-bound key sequence
2222                         // (such as Alt+j = j). This should be omitted (#5575).
2223                         // On Windows, AltModifier and ControlModifier are both
2224                         // set when AltGr is pressed. Therefore, in order to not
2225                         // break AltGr-bound symbols (see #5575 for details),
2226                         // unbound Ctrl+Alt key sequences are allowed.
2227                         if ((state & AltModifier || state & ControlModifier || state & MetaModifier)
2228 #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
2229                             && !(state & AltModifier && state & ControlModifier)
2230 #endif
2231                             )
2232                         {
2233                                 if (current_view_) {
2234                                         current_view_->message(_("Unknown function."));
2235                                         current_view_->restartCaret();
2236                                 }
2237                                 return;
2238                         }
2239 #endif
2240                         // Since all checks above were passed, we now really have text that
2241                         // is to be inserted (e.g., AltGr-bound symbols). Thus change the
2242                         // func to LFUN_SELF_INSERT and thus cause the text to be inserted
2243                         // below.
2244                         LYXERR(Debug::KEY, "isText() is true, inserting.");
2245                         func = FuncRequest(LFUN_SELF_INSERT, FuncRequest::KEYBOARD);
2246                 } else {
2247                         LYXERR(Debug::KEY, "Unknown Action and not isText() -- giving up");
2248                         if (current_view_) {
2249                                 current_view_->message(_("Unknown function."));
2250                                 current_view_->restartCaret();
2251                         }
2252                         return;
2253                 }
2254         }
2255
2256         if (func.action() == LFUN_SELF_INSERT) {
2257                 if (encoded_last_key != 0) {
2258                         docstring const arg(1, encoded_last_key);
2259                         processFuncRequest(FuncRequest(LFUN_SELF_INSERT, arg,
2260                                              FuncRequest::KEYBOARD));
2261                         LYXERR(Debug::KEY, "SelfInsert arg[`" << to_utf8(arg) << "']");
2262                 }
2263         } else
2264                 processFuncRequest(func);
2265 }
2266
2267
2268 void GuiApplication::processFuncRequest(FuncRequest const & func)
2269 {
2270         lyx::dispatch(func);
2271 }
2272
2273
2274 void GuiApplication::processFuncRequestAsync(FuncRequest const & func)
2275 {
2276         addToFuncRequestQueue(func);
2277         processFuncRequestQueueAsync();
2278 }
2279
2280
2281 void GuiApplication::processFuncRequestQueue()
2282 {
2283         while (!d->func_request_queue_.empty()) {
2284                 // take the item from the stack _before_ processing the
2285                 // request in order to avoid race conditions from nested
2286                 // or parallel requests (see #10406)
2287                 FuncRequest const fr(d->func_request_queue_.front());
2288                 d->func_request_queue_.pop();
2289                 processFuncRequest(fr);
2290         }
2291 }
2292
2293
2294 void GuiApplication::processFuncRequestQueueAsync()
2295 {
2296         QTimer::singleShot(0, this, SLOT(slotProcessFuncRequestQueue()));
2297 }
2298
2299
2300 void GuiApplication::addToFuncRequestQueue(FuncRequest const & func)
2301 {
2302         d->func_request_queue_.push(func);
2303 }
2304
2305
2306 void GuiApplication::resetGui()
2307 {
2308         // Set the language defined by the user.
2309         setGuiLanguage();
2310
2311         // Read menus
2312         if (!readUIFile(toqstr(lyxrc.ui_file)))
2313                 // Gives some error box here.
2314                 return;
2315
2316         if (d->global_menubar_)
2317                 d->menus_.fillMenuBar(d->global_menubar_, 0, false);
2318
2319         QHash<int, GuiView *>::iterator it;
2320         for (it = d->views_.begin(); it != d->views_.end(); ++it) {
2321                 GuiView * gv = *it;
2322                 setCurrentView(gv);
2323                 gv->setLayoutDirection(layoutDirection());
2324                 gv->resetDialogs();
2325         }
2326
2327         processFuncRequest(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
2328 }
2329
2330
2331 void GuiApplication::createView(int view_id)
2332 {
2333         createView(QString(), true, view_id);
2334 }
2335
2336
2337 void GuiApplication::createView(QString const & geometry_arg, bool autoShow,
2338         int view_id)
2339 {
2340         // release the keyboard which might have been grabed by the global
2341         // menubar on Mac to catch shortcuts even without any GuiView.
2342         if (d->global_menubar_)
2343                 d->global_menubar_->releaseKeyboard();
2344
2345         // create new view
2346         int id = view_id;
2347         while (d->views_.find(id) != d->views_.end())
2348                 id++;
2349
2350         LYXERR(Debug::GUI, "About to create new window with ID " << id);
2351         GuiView * view = new GuiView(id);
2352         // `view' is the new current_view_. Tell coverity that is is not 0.
2353         LATTEST(current_view_);
2354         // register view
2355         d->views_[id] = view;
2356
2357         if (autoShow) {
2358                 view->show();
2359                 setActiveWindow(view);
2360         }
2361
2362         if (!geometry_arg.isEmpty()) {
2363 #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
2364                 int x, y;
2365                 int w, h;
2366                 QChar sx, sy;
2367                 QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)){0,1}(?:([+-][0-9]*)){0,1}" );
2368                 re.indexIn(geometry_arg);
2369                 w = re.cap(1).toInt();
2370                 h = re.cap(2).toInt();
2371                 x = re.cap(3).toInt();
2372                 y = re.cap(4).toInt();
2373                 sx = re.cap(3).isEmpty() ? '+' : re.cap(3).at(0);
2374                 sy = re.cap(4).isEmpty() ? '+' : re.cap(4).at(0);
2375                 // Set initial geometry such that we can get the frame size.
2376                 view->setGeometry(x, y, w, h);
2377                 int framewidth = view->geometry().x() - view->x();
2378                 int titleheight = view->geometry().y() - view->y();
2379                 // Negative displacements must be interpreted as distances
2380                 // from the right or bottom screen borders.
2381                 if (sx == '-' || sy == '-') {
2382                         QRect rec = QApplication::desktop()->screenGeometry();
2383                         if (sx == '-')
2384                                 x += rec.width() - w - framewidth;
2385                         if (sy == '-')
2386                                 y += rec.height() - h - titleheight;
2387                         view->setGeometry(x, y, w, h);
2388                 }
2389                 // Make sure that the left and top frame borders are visible.
2390                 if (view->x() < 0 || view->y() < 0) {
2391                         if (view->x() < 0)
2392                                 x = framewidth;
2393                         if (view->y() < 0)
2394                                 y = titleheight;
2395                         view->setGeometry(x, y, w, h);
2396                 }
2397 #endif
2398         }
2399         view->setFocus();
2400 }
2401
2402
2403 bool GuiApplication::unhide(Buffer * buf)
2404 {
2405         if (!currentView())
2406                 return false;
2407         currentView()->setBuffer(buf, false);
2408         return true;
2409 }
2410
2411
2412 Clipboard & GuiApplication::clipboard()
2413 {
2414         return d->clipboard_;
2415 }
2416
2417
2418 Selection & GuiApplication::selection()
2419 {
2420         return d->selection_;
2421 }
2422
2423
2424 FontLoader & GuiApplication::fontLoader()
2425 {
2426         return d->font_loader_;
2427 }
2428
2429
2430 Toolbars const & GuiApplication::toolbars() const
2431 {
2432         return d->toolbars_;
2433 }
2434
2435
2436 Toolbars & GuiApplication::toolbars()
2437 {
2438         return d->toolbars_;
2439 }
2440
2441
2442 Menus const & GuiApplication::menus() const
2443 {
2444         return d->menus_;
2445 }
2446
2447
2448 Menus & GuiApplication::menus()
2449 {
2450         return d->menus_;
2451 }
2452
2453
2454 QList<int> GuiApplication::viewIds() const
2455 {
2456         return d->views_.keys();
2457 }
2458
2459
2460 ColorCache & GuiApplication::colorCache()
2461 {
2462         return d->color_cache_;
2463 }
2464
2465
2466 int GuiApplication::exec()
2467 {
2468         // asynchronously handle batch commands. This event will be in
2469         // the event queue in front of other asynchronous events. Hence,
2470         // we can assume in the latter that the gui is setup already.
2471         QTimer::singleShot(0, this, SLOT(execBatchCommands()));
2472
2473         return QApplication::exec();
2474 }
2475
2476
2477 void GuiApplication::exit(int status)
2478 {
2479         QApplication::exit(status);
2480 }
2481
2482
2483 void GuiApplication::setGuiLanguage()
2484 {
2485         setLocale();
2486         QLocale theLocale;
2487         // install translation file for Qt built-in dialogs
2488         QString const language_name = QString("qt_") + theLocale.name();
2489         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN).
2490         // Short-named translator can be loaded from a long name, but not the
2491         // opposite. Therefore, long name should be used without truncation.
2492         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
2493         if (!d->qt_trans_.load(language_name,
2494                         QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
2495                 LYXERR(Debug::LOCALE, "Could not find Qt translations for locale "
2496                         << language_name);
2497         } else {
2498                 LYXERR(Debug::LOCALE, "Successfully installed Qt translations for locale "
2499                         << language_name);
2500         }
2501
2502         switch (theLocale.language()) {
2503         case QLocale::Arabic :
2504         case QLocale::Hebrew :
2505         case QLocale::Persian :
2506         case QLocale::Urdu :
2507                 setLayoutDirection(Qt::RightToLeft);
2508                 break;
2509         default:
2510                 setLayoutDirection(Qt::LeftToRight);
2511         }
2512 }
2513
2514
2515 void GuiApplication::execBatchCommands()
2516 {
2517         setGuiLanguage();
2518
2519         // Read menus
2520         if (!readUIFile(toqstr(lyxrc.ui_file)))
2521                 // Gives some error box here.
2522                 return;
2523
2524 #ifdef Q_OS_MAC
2525 #if QT_VERSION > 0x040600
2526         setAttribute(Qt::AA_MacDontSwapCtrlAndMeta,lyxrc.mac_dontswap_ctrl_meta);
2527 #endif
2528 #if QT_VERSION > 0x050100
2529         setAttribute(Qt::AA_UseHighDpiPixmaps,true);
2530 #endif
2531         // Create the global default menubar which is shown for the dialogs
2532         // and if no GuiView is visible.
2533         // This must be done after the session was recovered to know the "last files".
2534         d->global_menubar_ = new QMenuBar(0);
2535         d->menus_.fillMenuBar(d->global_menubar_, 0, true);
2536 #endif
2537
2538         lyx::execBatchCommands();
2539 }
2540
2541
2542 QAbstractItemModel * GuiApplication::languageModel()
2543 {
2544         if (d->language_model_)
2545                 return d->language_model_;
2546
2547         QStandardItemModel * lang_model = new QStandardItemModel(this);
2548         lang_model->insertColumns(0, 3);
2549         QIcon speller(getPixmap("images/", "dialog-show_spellchecker", "svgz,png"));
2550         QIcon saurus(getPixmap("images/", "thesaurus-entry", "svgz,png"));
2551         Languages::const_iterator it = lyx::languages.begin();
2552         Languages::const_iterator end = lyx::languages.end();
2553         for (; it != end; ++it) {
2554                 int current_row = lang_model->rowCount();
2555                 lang_model->insertRows(current_row, 1);
2556                 QModelIndex pl_item = lang_model->index(current_row, 0);
2557                 QModelIndex sp_item = lang_model->index(current_row, 1);
2558                 QModelIndex th_item = lang_model->index(current_row, 2);
2559                 lang_model->setData(pl_item, qt_(it->second.display()), Qt::DisplayRole);
2560                 lang_model->setData(pl_item, toqstr(it->second.lang()), Qt::UserRole);
2561                 lang_model->setData(sp_item, qt_(it->second.display()), Qt::DisplayRole);
2562                 lang_model->setData(sp_item, toqstr(it->second.lang()), Qt::UserRole);
2563                 if (theSpellChecker() && theSpellChecker()->hasDictionary(&it->second))
2564                         lang_model->setData(sp_item, speller, Qt::DecorationRole);
2565                 lang_model->setData(th_item, qt_(it->second.display()), Qt::DisplayRole);
2566                 lang_model->setData(th_item, toqstr(it->second.lang()), Qt::UserRole);
2567                 if (thesaurus.thesaurusInstalled(from_ascii(it->second.code())))
2568                         lang_model->setData(th_item, saurus, Qt::DecorationRole);
2569         }
2570         d->language_model_ = new QSortFilterProxyModel(this);
2571         d->language_model_->setSourceModel(lang_model);
2572         d->language_model_->setSortLocaleAware(true);
2573         return d->language_model_;
2574 }
2575
2576
2577 void GuiApplication::restoreGuiSession()
2578 {
2579         if (!lyxrc.load_session)
2580                 return;
2581
2582         Session & session = theSession();
2583         LastOpenedSection::LastOpened const & lastopened =
2584                 session.lastOpened().getfiles();
2585
2586         validateCurrentView();
2587
2588         FileName active_file;
2589         // do not add to the lastfile list since these files are restored from
2590         // last session, and should be already there (regular files), or should
2591         // not be added at all (help files).
2592         for (size_t i = 0; i < lastopened.size(); ++i) {
2593                 FileName const & file_name = lastopened[i].file_name;
2594                 if (!current_view_ || (!lyxrc.open_buffers_in_tabs
2595                           && current_view_->documentBufferView() != 0)) {
2596                         boost::crc_32_type crc;
2597                         string const & fname = file_name.absFileName();
2598                         crc = for_each(fname.begin(), fname.end(), crc);
2599                         createView(crc.checksum());
2600                 }
2601                 current_view_->loadDocument(file_name, false);
2602
2603                 if (lastopened[i].active)
2604                         active_file = file_name;
2605         }
2606
2607         // Restore last active buffer
2608         Buffer * buffer = theBufferList().getBuffer(active_file);
2609         if (buffer && current_view_)
2610                 current_view_->setBuffer(buffer);
2611
2612         // clear this list to save a few bytes of RAM
2613         session.lastOpened().clear();
2614 }
2615
2616
2617 QString const GuiApplication::romanFontName()
2618 {
2619         QFont font;
2620         font.setStyleHint(QFont::Serif);
2621         font.setFamily("serif");
2622
2623         return QFontInfo(font).family();
2624 }
2625
2626
2627 QString const GuiApplication::sansFontName()
2628 {
2629         QFont font;
2630         font.setStyleHint(QFont::SansSerif);
2631         font.setFamily("sans");
2632
2633         return QFontInfo(font).family();
2634 }
2635
2636
2637 QString const GuiApplication::typewriterFontName()
2638 {
2639         return QFontInfo(typewriterSystemFont()).family();
2640 }
2641
2642
2643 namespace {
2644         // We cannot use QFont::fixedPitch() because it doesn't
2645         // return the fact but only if it is requested.
2646         static bool isFixedPitch(const QFont & font) {
2647                 const QFontInfo fi(font);
2648                 return fi.fixedPitch();
2649         }
2650 } // namespace
2651
2652
2653 QFont const GuiApplication::typewriterSystemFont()
2654 {
2655 #if QT_VERSION >= 0x050200
2656         QFont font = QFontDatabase::systemFont(QFontDatabase::FixedFont);
2657 #else
2658         QFont font("monospace");
2659 #endif
2660         if (!isFixedPitch(font)) {
2661                 // try to enforce a real monospaced font
2662                 font.setStyleHint(QFont::Monospace);
2663                 if (!isFixedPitch(font)) {
2664                         font.setStyleHint(QFont::TypeWriter);
2665                         if (!isFixedPitch(font)) font.setFamily("courier");
2666                 }
2667         }
2668 #ifdef Q_OS_MAC
2669         // On a Mac the result is too small and it's not practical to
2670         // rely on Qtconfig utility to change the system settings of Qt.
2671         font.setPointSize(12);
2672 #endif
2673         return font;
2674 }
2675
2676
2677 void GuiApplication::handleRegularEvents()
2678 {
2679         ForkedCallsController::handleCompletedProcesses();
2680 }
2681
2682
2683 bool GuiApplication::event(QEvent * e)
2684 {
2685         switch(e->type()) {
2686         case QEvent::FileOpen: {
2687                 // Open a file; this happens only on Mac OS X for now.
2688                 //
2689                 // We do this asynchronously because on startup the batch
2690                 // commands are not executed here yet and the gui is not ready
2691                 // therefore.
2692                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
2693                 FuncRequest const fr(LFUN_FILE_OPEN, qstring_to_ucs4(foe->file()));
2694                 processFuncRequestAsync(fr);
2695                 e->accept();
2696                 return true;
2697         }
2698         default:
2699                 return QApplication::event(e);
2700         }
2701 }
2702
2703
2704 bool GuiApplication::notify(QObject * receiver, QEvent * event)
2705 {
2706         try {
2707                 return QApplication::notify(receiver, event);
2708         }
2709         catch (ExceptionMessage const & e) {
2710                 switch(e.type_) {
2711                 case ErrorException:
2712                         emergencyCleanup();
2713                         setQuitOnLastWindowClosed(false);
2714                         closeAllViews();
2715                         Alert::error(e.title_, e.details_);
2716 #ifndef NDEBUG
2717                         // Properly crash in debug mode in order to get a useful backtrace.
2718                         abort();
2719 #endif
2720                         // In release mode, try to exit gracefully.
2721                         this->exit(1);
2722                         // FIXME: GCC 7 thinks we can fall through here. Can we?
2723                         // fall through
2724                 case BufferException: {
2725                         if (!current_view_ || !current_view_->documentBufferView())
2726                                 return false;
2727                         Buffer * buf = &current_view_->documentBufferView()->buffer();
2728                         docstring details = e.details_ + '\n';
2729                         details += buf->emergencyWrite();
2730                         theBufferList().release(buf);
2731                         details += "\n" + _("The current document was closed.");
2732                         Alert::error(e.title_, details);
2733                         return false;
2734                 }
2735                 case WarningException:
2736                         Alert::warning(e.title_, e.details_);
2737                         return false;
2738                 }
2739         }
2740         catch (exception const & e) {
2741                 docstring s = _("LyX has caught an exception, it will now "
2742                         "attempt to save all unsaved documents and exit."
2743                         "\n\nException: ");
2744                 s += from_ascii(e.what());
2745                 Alert::error(_("Software exception Detected"), s);
2746                 lyx_exit(1);
2747         }
2748         catch (...) {
2749                 docstring s = _("LyX has caught some really weird exception, it will "
2750                         "now attempt to save all unsaved documents and exit.");
2751                 Alert::error(_("Software exception Detected"), s);
2752                 lyx_exit(1);
2753         }
2754
2755         return false;
2756 }
2757
2758
2759 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
2760 {
2761         QColor const & qcol = d->color_cache_.get(col);
2762         if (!qcol.isValid()) {
2763                 rgbcol.r = 0;
2764                 rgbcol.g = 0;
2765                 rgbcol.b = 0;
2766                 return false;
2767         }
2768         rgbcol.r = qcol.red();
2769         rgbcol.g = qcol.green();
2770         rgbcol.b = qcol.blue();
2771         return true;
2772 }
2773
2774
2775 bool Application::getRgbColorUncached(ColorCode col, RGBColor & rgbcol)
2776 {
2777         QColor const qcol(lcolor.getX11Name(col).c_str());
2778         if (!qcol.isValid()) {
2779                 rgbcol.r = 0;
2780                 rgbcol.g = 0;
2781                 rgbcol.b = 0;
2782                 return false;
2783         }
2784         rgbcol.r = qcol.red();
2785         rgbcol.g = qcol.green();
2786         rgbcol.b = qcol.blue();
2787         return true;
2788 }
2789
2790
2791 string const GuiApplication::hexName(ColorCode col)
2792 {
2793         return ltrim(fromqstr(d->color_cache_.get(col).name()), "#");
2794 }
2795
2796
2797 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
2798 {
2799         SocketNotifier * sn = new SocketNotifier(this, fd, func);
2800         d->socket_notifiers_[fd] = sn;
2801         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
2802 }
2803
2804
2805 void GuiApplication::socketDataReceived(int fd)
2806 {
2807         d->socket_notifiers_[fd]->func_();
2808 }
2809
2810
2811 void GuiApplication::unregisterSocketCallback(int fd)
2812 {
2813         d->socket_notifiers_.take(fd)->setEnabled(false);
2814 }
2815
2816
2817 void GuiApplication::commitData(QSessionManager & sm)
2818 {
2819         /** The implementation is required to avoid an application exit
2820          ** when session state save is triggered by session manager.
2821          ** The default implementation sends a close event to all
2822          ** visible top level widgets when session managment allows
2823          ** interaction.
2824          ** We are changing that to check the state of each buffer in all
2825          ** views and ask the users what to do if buffers are dirty.
2826          ** Furthermore, we save the session state.
2827          ** We do NOT close the views here since the user still can cancel
2828          ** the logout process (see #9277); also, this would hide LyX from
2829          ** an OSes own session handling (application restoration).
2830          **/
2831         #ifdef QT_NO_SESSIONMANAGER
2832                 #ifndef _MSC_VER
2833                         #warning Qt is compiled without session manager
2834                 #else
2835                         #pragma message("warning: Qt is compiled without session manager")
2836                 #endif
2837                 (void) sm;
2838         #else
2839                 if (sm.allowsInteraction() && !prepareAllViewsForLogout())
2840                         sm.cancel();
2841                 else
2842                         sm.release();
2843         #endif
2844 }
2845
2846
2847 void GuiApplication::unregisterView(GuiView * gv)
2848 {
2849         if(d->views_.contains(gv->id()) && d->views_.value(gv->id()) == gv) {
2850                 d->views_.remove(gv->id());
2851                 if (current_view_ == gv)
2852                         current_view_ = 0;
2853         }
2854 }
2855
2856
2857 bool GuiApplication::closeAllViews()
2858 {
2859         if (d->views_.empty())
2860                 return true;
2861
2862         // When a view/window was closed before without quitting LyX, there
2863         // are already entries in the lastOpened list.
2864         theSession().lastOpened().clear();
2865
2866         QList<GuiView *> const views = d->views_.values();
2867         for (GuiView * view : views) {
2868                 if (!view->closeScheduled())
2869                         return false;
2870         }
2871
2872         d->views_.clear();
2873         return true;
2874 }
2875
2876
2877 bool GuiApplication::prepareAllViewsForLogout()
2878 {
2879         if (d->views_.empty())
2880                 return true;
2881
2882         QList<GuiView *> const views = d->views_.values();
2883         for (GuiView * view : views) {
2884                 if (!view->prepareAllBuffersForLogout())
2885                         return false;
2886         }
2887
2888         return true;
2889 }
2890
2891
2892 GuiView & GuiApplication::view(int id) const
2893 {
2894         LAPPERR(d->views_.contains(id));
2895         return *d->views_.value(id);
2896 }
2897
2898
2899 void GuiApplication::hideDialogs(string const & name, Inset * inset) const
2900 {
2901         QList<GuiView *> const views = d->views_.values();
2902         for (GuiView * view : views)
2903                 view->hideDialog(name, inset);
2904 }
2905
2906
2907 Buffer const * GuiApplication::updateInset(Inset const * inset) const
2908 {
2909         Buffer const * buffer_ = 0;
2910         QHash<int, GuiView *>::const_iterator end = d->views_.end();
2911         for (QHash<int, GuiView *>::iterator it = d->views_.begin(); it != end; ++it) {
2912                 if (Buffer const * ptr = (*it)->updateInset(inset))
2913                         buffer_ = ptr;
2914         }
2915         return buffer_;
2916 }
2917
2918
2919 bool GuiApplication::searchMenu(FuncRequest const & func,
2920         docstring_list & names) const
2921 {
2922         return d->menus_.searchMenu(func, names);
2923 }
2924
2925
2926 // Ensure that a file is read only once (prevents include loops)
2927 static QStringList uifiles;
2928 // store which ui files define Toolbars
2929 static QStringList toolbar_uifiles;
2930
2931
2932 GuiApplication::ReturnValues GuiApplication::readUIFile(FileName ui_path)
2933 {
2934         enum {
2935                 ui_menuset = 1,
2936                 ui_toolbars,
2937                 ui_toolbarset,
2938                 ui_include,
2939                 ui_format,
2940                 ui_last
2941         };
2942
2943         LexerKeyword uitags[] = {
2944                 { "format", ui_format },
2945                 { "include", ui_include },
2946                 { "menuset", ui_menuset },
2947                 { "toolbars", ui_toolbars },
2948                 { "toolbarset", ui_toolbarset }
2949         };
2950
2951         Lexer lex(uitags);
2952         lex.setFile(ui_path);
2953         if (!lex.isOK()) {
2954                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
2955                                          << endl;
2956         }
2957
2958         if (lyxerr.debugging(Debug::PARSER))
2959                 lex.printTable(lyxerr);
2960
2961         bool error = false;
2962         // format before introduction of format tag
2963         unsigned int format = 0;
2964         while (lex.isOK()) {
2965                 int const status = lex.lex();
2966
2967                 // we have to do this check here, outside the switch,
2968                 // because otherwise we would start reading include files,
2969                 // e.g., if the first tag we hit was an include tag.
2970                 if (status == ui_format)
2971                         if (lex.next()) {
2972                                 format = lex.getInteger();
2973                                 continue;
2974                         }
2975
2976                 // this will trigger unless the first tag we hit is a format
2977                 // tag, with the right format.
2978                 if (format != LFUN_FORMAT)
2979                         return FormatMismatch;
2980
2981                 switch (status) {
2982                 case Lexer::LEX_FEOF:
2983                         continue;
2984
2985                 case ui_include: {
2986                         lex.next(true);
2987                         QString const file = toqstr(lex.getString());
2988                         bool const success = readUIFile(file, true);
2989                         if (!success) {
2990                                 LYXERR0("Failed to read included file: " << fromqstr(file));
2991                                 return ReadError;
2992                         }
2993                         break;
2994                 }
2995
2996                 case ui_menuset:
2997                         d->menus_.read(lex);
2998                         break;
2999
3000                 case ui_toolbarset:
3001                         d->toolbars_.readToolbars(lex);
3002                         break;
3003
3004                 case ui_toolbars:
3005                         d->toolbars_.readToolbarSettings(lex);
3006                         toolbar_uifiles.push_back(toqstr(ui_path.absFileName()));
3007                         break;
3008
3009                 default:
3010                         if (!rtrim(lex.getString()).empty())
3011                                 lex.printError("LyX::ReadUIFile: "
3012                                                "Unknown menu tag: `$$Token'");
3013                         else
3014                                 LYXERR0("Error with status: " << status);
3015                         error = true;
3016                         break;
3017                 }
3018
3019         }
3020         return (error ? ReadError : ReadOK);
3021 }
3022
3023
3024 bool GuiApplication::readUIFile(QString const & name, bool include)
3025 {
3026         LYXERR(Debug::INIT, "About to read " << name << "...");
3027
3028         FileName ui_path;
3029         if (include) {
3030                 ui_path = libFileSearch("ui", name, "inc");
3031                 if (ui_path.empty())
3032                         ui_path = libFileSearch("ui", changeExtension(name, "inc"));
3033         } else {
3034                 ui_path = libFileSearch("ui", name, "ui");
3035         }
3036
3037         if (ui_path.empty()) {
3038                 static const QString defaultUIFile = "default";
3039                 LYXERR(Debug::INIT, "Could not find " << name);
3040                 if (include) {
3041                         Alert::warning(_("Could not find UI definition file"),
3042                                 bformat(_("Error while reading the included file\n%1$s\n"
3043                                         "Please check your installation."), qstring_to_ucs4(name)));
3044                         return false;
3045                 }
3046                 if (name == defaultUIFile) {
3047                         LYXERR(Debug::INIT, "Could not find default UI file!!");
3048                         Alert::warning(_("Could not find default UI file"),
3049                                 _("LyX could not find the default UI file!\n"
3050                                   "Please check your installation."));
3051                         return false;
3052                 }
3053                 Alert::warning(_("Could not find UI definition file"),
3054                 bformat(_("Error while reading the configuration file\n%1$s\n"
3055                         "Falling back to default.\n"
3056                         "Please look under Tools>Preferences>User Interface and\n"
3057                         "check which User Interface file you are using."), qstring_to_ucs4(name)));
3058                 return readUIFile(defaultUIFile, false);
3059         }
3060
3061         QString const uifile = toqstr(ui_path.absFileName());
3062         if (uifiles.contains(uifile)) {
3063                 if (!include) {
3064                         // We are reading again the top uifile so reset the safeguard:
3065                         uifiles.clear();
3066                         d->menus_.reset();
3067                         d->toolbars_.reset();
3068                 } else {
3069                         LYXERR(Debug::INIT, "UI file '" << name << "' has been read already. "
3070                                 << "Is this an include loop?");
3071                         return false;
3072                 }
3073         }
3074         uifiles.push_back(uifile);
3075
3076         LYXERR(Debug::INIT, "Found " << name << " in " << ui_path);
3077
3078         ReturnValues retval = readUIFile(ui_path);
3079
3080         if (retval == FormatMismatch) {
3081                 LYXERR(Debug::FILES, "Converting ui file to format " << LFUN_FORMAT);
3082                 TempFile tmp("convertXXXXXX.ui");
3083                 FileName const tempfile = tmp.name();
3084                 bool const success = prefs2prefs(ui_path, tempfile, true);
3085                 if (!success) {
3086                         LYXERR0("Unable to convert " << ui_path.absFileName() <<
3087                                 " to format " << LFUN_FORMAT << ".");
3088                 } else {
3089                         retval = readUIFile(tempfile);
3090                 }
3091         }
3092
3093         if (retval != ReadOK) {
3094                 LYXERR0("Unable to read UI file: " << ui_path.absFileName());
3095                 return false;
3096         }
3097
3098         if (include)
3099                 return true;
3100
3101         QSettings settings;
3102         settings.beginGroup("ui_files");
3103         bool touched = false;
3104         for (int i = 0; i != uifiles.size(); ++i) {
3105                 QFileInfo fi(uifiles[i]);
3106                 QDateTime const date_value = fi.lastModified();
3107                 QString const name_key = QString::number(i);
3108                 // if an ui file which defines Toolbars has changed,
3109                 // we have to reset the settings
3110                 if (toolbar_uifiles.contains(uifiles[i])
3111                  && (!settings.contains(name_key)
3112                  || settings.value(name_key).toString() != uifiles[i]
3113                  || settings.value(name_key + "/date").toDateTime() != date_value)) {
3114                         touched = true;
3115                         settings.setValue(name_key, uifiles[i]);
3116                         settings.setValue(name_key + "/date", date_value);
3117                 }
3118         }
3119         settings.endGroup();
3120         if (touched)
3121                 settings.remove("views");
3122
3123         return true;
3124 }
3125
3126
3127 void GuiApplication::onLastWindowClosed()
3128 {
3129         if (d->global_menubar_)
3130                 d->global_menubar_->grabKeyboard();
3131 }
3132
3133
3134 void GuiApplication::startLongOperation() {
3135         d->key_checker_.start();
3136 }
3137
3138
3139 bool GuiApplication::longOperationCancelled() {
3140         return d->key_checker_.pressed();
3141 }
3142
3143
3144 void GuiApplication::stopLongOperation() {
3145         d->key_checker_.stop();
3146 }
3147
3148
3149 bool GuiApplication::longOperationStarted() {
3150         return d->key_checker_.started();
3151 }
3152
3153
3154 ////////////////////////////////////////////////////////////////////////
3155 //
3156 // X11 specific stuff goes here...
3157
3158 #ifdef Q_WS_X11
3159 bool GuiApplication::x11EventFilter(XEvent * xev)
3160 {
3161         if (!current_view_)
3162                 return false;
3163
3164         switch (xev->type) {
3165         case SelectionRequest: {
3166                 if (xev->xselectionrequest.selection != XA_PRIMARY)
3167                         break;
3168                 LYXERR(Debug::SELECTION, "X requested selection.");
3169                 BufferView * bv = current_view_->currentBufferView();
3170                 if (bv) {
3171                         docstring const sel = bv->requestSelection();
3172                         if (!sel.empty()) {
3173                                 d->selection_.put(sel);
3174                                 // Refresh the selection request timestamp.
3175                                 // We have to do this by ourselves as Qt seems
3176                                 // not doing that, maybe because of our
3177                                 // "persistent selection" implementation
3178                                 // (see comments in GuiSelection.cpp).
3179                                 XSelectionEvent nev;
3180                                 nev.type = SelectionNotify;
3181                                 nev.display = xev->xselectionrequest.display;
3182                                 nev.requestor = xev->xselectionrequest.requestor;
3183                                 nev.selection = xev->xselectionrequest.selection;
3184                                 nev.target = xev->xselectionrequest.target;
3185                                 nev.property = 0L; // None
3186                                 nev.time = CurrentTime;
3187                                 XSendEvent(QX11Info::display(),
3188                                         nev.requestor, False, 0,
3189                                         reinterpret_cast<XEvent *>(&nev));
3190                                 return true;
3191                         }
3192                 }
3193                 break;
3194         }
3195         case SelectionClear: {
3196                 if (xev->xselectionclear.selection != XA_PRIMARY)
3197                         break;
3198                 LYXERR(Debug::SELECTION, "Lost selection.");
3199                 BufferView * bv = current_view_->currentBufferView();
3200                 if (bv)
3201                         bv->clearSelection();
3202                 break;
3203         }
3204         }
3205         return false;
3206 }
3207 #elif defined(QPA_XCB)
3208 bool GuiApplication::nativeEventFilter(const QByteArray & eventType,
3209                                        void * message, long *)
3210 {
3211         if (!current_view_ || eventType != "xcb_generic_event_t")
3212                 return false;
3213
3214         xcb_generic_event_t * ev = static_cast<xcb_generic_event_t *>(message);
3215
3216         switch (ev->response_type) {
3217         case XCB_SELECTION_REQUEST: {
3218                 xcb_selection_request_event_t * srev =
3219                         reinterpret_cast<xcb_selection_request_event_t *>(ev);
3220                 if (srev->selection != XCB_ATOM_PRIMARY)
3221                         break;
3222                 LYXERR(Debug::SELECTION, "X requested selection.");
3223                 BufferView * bv = current_view_->currentBufferView();
3224                 if (bv) {
3225                         docstring const sel = bv->requestSelection();
3226                         if (!sel.empty()) {
3227                                 d->selection_.put(sel);
3228 #ifdef HAVE_QT5_X11_EXTRAS
3229                                 // Refresh the selection request timestamp.
3230                                 // We have to do this by ourselves as Qt seems
3231                                 // not doing that, maybe because of our
3232                                 // "persistent selection" implementation
3233                                 // (see comments in GuiSelection.cpp).
3234                                 xcb_selection_notify_event_t nev;
3235                                 nev.response_type = XCB_SELECTION_NOTIFY;
3236                                 nev.requestor = srev->requestor;
3237                                 nev.selection = srev->selection;
3238                                 nev.target = srev->target;
3239                                 nev.property = XCB_NONE;
3240                                 nev.time = XCB_CURRENT_TIME;
3241                                 xcb_connection_t * con = QX11Info::connection();
3242                                 xcb_send_event(con, 0, srev->requestor,
3243                                         XCB_EVENT_MASK_NO_EVENT,
3244                                         reinterpret_cast<char const *>(&nev));
3245                                 xcb_flush(con);
3246 #endif
3247                                 return true;
3248                         }
3249                 }
3250                 break;
3251         }
3252         case XCB_SELECTION_CLEAR: {
3253                 xcb_selection_clear_event_t * scev =
3254                         reinterpret_cast<xcb_selection_clear_event_t *>(ev);
3255                 if (scev->selection != XCB_ATOM_PRIMARY)
3256                         break;
3257                 LYXERR(Debug::SELECTION, "Lost selection.");
3258                 BufferView * bv = current_view_->currentBufferView();
3259                 if (bv)
3260                         bv->clearSelection();
3261                 break;
3262         }
3263         }
3264         return false;
3265 }
3266 #endif
3267
3268 } // namespace frontend
3269
3270
3271 void hideDialogs(std::string const & name, Inset * inset)
3272 {
3273         if (theApp())
3274                 frontend::guiApp->hideDialogs(name, inset);
3275 }
3276
3277
3278 ////////////////////////////////////////////////////////////////////
3279 //
3280 // Font stuff
3281 //
3282 ////////////////////////////////////////////////////////////////////
3283
3284 frontend::FontLoader & theFontLoader()
3285 {
3286         LAPPERR(frontend::guiApp);
3287         return frontend::guiApp->fontLoader();
3288 }
3289
3290
3291 frontend::FontMetrics const & theFontMetrics(Font const & f)
3292 {
3293         return theFontMetrics(f.fontInfo());
3294 }
3295
3296
3297 frontend::FontMetrics const & theFontMetrics(FontInfo const & f)
3298 {
3299         LAPPERR(frontend::guiApp);
3300         return frontend::guiApp->fontLoader().metrics(f);
3301 }
3302
3303
3304 ////////////////////////////////////////////////////////////////////
3305 //
3306 // Misc stuff
3307 //
3308 ////////////////////////////////////////////////////////////////////
3309
3310 frontend::Clipboard & theClipboard()
3311 {
3312         LAPPERR(frontend::guiApp);
3313         return frontend::guiApp->clipboard();
3314 }
3315
3316
3317 frontend::Selection & theSelection()
3318 {
3319         LAPPERR(frontend::guiApp);
3320         return frontend::guiApp->selection();
3321 }
3322
3323
3324 } // namespace lyx
3325
3326 #include "moc_GuiApplication.cpp"