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