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