]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
09c6d4e086fee58c45acb961552e18b14444feb9
[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 "ColorCache.h"
18 #include "ColorSet.h"
19 #include "GuiClipboard.h"
20 #include "GuiImage.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 "BufferView.h"
36 #include "Color.h"
37 #include "Font.h"
38 #include "FuncRequest.h"
39 #include "FuncStatus.h"
40 #include "Language.h"
41 #include "Lexer.h"
42 #include "LyX.h"
43 #include "LyXAction.h"
44 #include "LyXFunc.h"
45 #include "LyXRC.h"
46 #include "Session.h"
47 #include "version.h"
48
49 #include "support/lassert.h"
50 #include "support/debug.h"
51 #include "support/ExceptionMessage.h"
52 #include "support/FileName.h"
53 #include "support/filetools.h"
54 #include "support/foreach.h"
55 #include "support/ForkedCalls.h"
56 #include "support/gettext.h"
57 #include "support/lstrings.h"
58 #include "support/lyxalgo.h" // sorted
59 #include "support/Messages.h"
60 #include "support/os.h"
61 #include "support/Package.h"
62
63 #ifdef Q_WS_MACX
64 #include "support/linkback/LinkBackProxy.h"
65 #endif
66
67 #include <queue>
68
69 #include <QByteArray>
70 #include <QClipboard>
71 #include <QDateTime>
72 #include <QDir>
73 #include <QEventLoop>
74 #include <QFileOpenEvent>
75 #include <QFileInfo>
76 #include <QHash>
77 #include <QIcon>
78 #include <QImageReader>
79 #include <QLocale>
80 #include <QLibraryInfo>
81 #include <QList>
82 #include <QMacPasteboardMime>
83 #include <QMenuBar>
84 #include <QMimeData>
85 #include <QObject>
86 #include <QPixmap>
87 #include <QPixmapCache>
88 #include <QRegExp>
89 #include <QSessionManager>
90 #include <QSettings>
91 #include <QSocketNotifier>
92 #include <QSortFilterProxyModel>
93 #include <QStandardItemModel>
94 #include <QTextCodec>
95 #include <QTimer>
96 #include <QTranslator>
97 #include <QWidget>
98
99 #ifdef Q_WS_X11
100 #include <X11/Xatom.h>
101 #include <X11/Xlib.h>
102 #undef CursorShape
103 #undef None
104 #endif
105
106 #ifdef Q_WS_WIN
107 #include <QWindowsMime>
108 #ifdef Q_CC_GNU
109 #include <wtypes.h>
110 #endif
111 #include <objidl.h>
112 #endif // Q_WS_WIN
113
114 #include <boost/bind.hpp>
115 #include <boost/crc.hpp>
116
117 #include <exception>
118 #include <vector>
119
120 using namespace std;
121 using namespace lyx::support;
122
123
124 static void initializeResources()
125 {
126         static bool initialized = false;
127         if (!initialized) {
128                 Q_INIT_RESOURCE(Resources); 
129                 initialized = true;
130         }
131 }
132
133
134 namespace lyx {
135
136 frontend::Application * createApplication(int & argc, char * argv[])
137 {
138 #ifndef Q_WS_X11
139         // prune -geometry argument(s) by shifting
140         // the following ones 2 places down.
141         for (int i = 0 ; i < argc ; ++i) {
142                 if (strcmp(argv[i], "-geometry") == 0) {
143                         int const remove = (i+1) < argc ? 2 : 1;
144                         argc -= remove;
145                         for (int j = i; j < argc; ++j)
146                                 argv[j] = argv[j + remove];
147                         --i;
148                 }
149         }
150 #endif
151         return new frontend::GuiApplication(argc, argv);
152 }
153
154 namespace frontend {
155
156
157 /// Return the list of loadable formats.
158 vector<string> loadableImageFormats()
159 {
160         vector<string> fmts;
161
162         QList<QByteArray> qt_formats = QImageReader::supportedImageFormats();
163
164         LYXERR(Debug::GRAPHICS,
165                 "\nThe image loader can load the following directly:\n");
166
167         if (qt_formats.empty())
168                 LYXERR(Debug::GRAPHICS, "\nQt4 Problem: No Format available!");
169
170         for (QList<QByteArray>::const_iterator it = qt_formats.begin(); it != qt_formats.end(); ++it) {
171
172                 LYXERR(Debug::GRAPHICS, (const char *) *it << ", ");
173
174                 string ext = ascii_lowercase((const char *) *it);
175                 // special case
176                 if (ext == "jpeg")
177                         ext = "jpg";
178                 fmts.push_back(ext);
179         }
180
181         return fmts;
182 }
183
184
185 ////////////////////////////////////////////////////////////////////////
186 //
187 // Icon loading support code
188 //
189 ////////////////////////////////////////////////////////////////////////
190
191 namespace {
192
193 struct PngMap {
194         QString key;
195         QString value;
196 };
197
198
199 bool operator<(PngMap const & lhs, PngMap const & rhs)
200 {
201         return lhs.key < rhs.key;
202 }
203
204
205 class CompareKey {
206 public:
207         CompareKey(QString const & name) : name_(name) {}
208         bool operator()(PngMap const & other) const { return other.key == name_; }
209 private:
210         QString const name_;
211 };
212
213
214 // this must be sorted alphabetically
215 // Upper case comes before lower case
216 PngMap sorted_png_map[] = {
217         { "Bumpeq", "bumpeq2" },
218         { "Cap", "cap2" },
219         { "Cup", "cup2" },
220         { "Delta", "delta2" },
221         { "Downarrow", "downarrow2" },
222         { "Gamma", "gamma2" },
223         { "Lambda", "lambda2" },
224         { "Leftarrow", "leftarrow2" },
225         { "Leftrightarrow", "leftrightarrow2" },
226         { "Longleftarrow", "longleftarrow2" },
227         { "Longleftrightarrow", "longleftrightarrow2" },
228         { "Longrightarrow", "longrightarrow2" },
229         { "Omega", "omega2" },
230         { "Phi", "phi2" },
231         { "Pi", "pi2" },
232         { "Psi", "psi2" },
233         { "Rightarrow", "rightarrow2" },
234         { "Sigma", "sigma2" },
235         { "Subset", "subset2" },
236         { "Supset", "supset2" },
237         { "Theta", "theta2" },
238         { "Uparrow", "uparrow2" },
239         { "Updownarrow", "updownarrow2" },
240         { "Upsilon", "upsilon2" },
241         { "Vdash", "vdash3" },
242         { "Vert", "vert2" },
243         { "Xi", "xi2" },
244         { "nLeftarrow", "nleftarrow2" },
245         { "nLeftrightarrow", "nleftrightarrow2" },
246         { "nRightarrow", "nrightarrow2" },
247         { "nVDash", "nvdash3" },
248         { "nvDash", "nvdash2" },
249         { "textrm \\AA", "textrm_AA"},
250         { "textrm \\O", "textrm_O"},
251         { "vDash", "vdash2" }
252 };
253
254 size_t const nr_sorted_png_map = sizeof(sorted_png_map) / sizeof(PngMap);
255
256
257 QString findPng(QString const & name)
258 {
259         PngMap const * const begin = sorted_png_map;
260         PngMap const * const end = begin + nr_sorted_png_map;
261         LASSERT(sorted(begin, end), /**/);
262
263         PngMap const * const it = find_if(begin, end, CompareKey(name));
264
265         QString png_name;
266         if (it != end) {
267                 png_name = it->value;
268         } else {
269                 png_name = name;
270                 png_name.replace('_', "underscore");
271                 png_name.replace(' ', '_');
272
273                 // This way we can have "math-delim { }" on the toolbar.
274                 png_name.replace('(', "lparen");
275                 png_name.replace(')', "rparen");
276                 png_name.replace('[', "lbracket");
277                 png_name.replace(']', "rbracket");
278                 png_name.replace('{', "lbrace");
279                 png_name.replace('}', "rbrace");
280                 png_name.replace('|', "bars");
281                 png_name.replace(',', "thinspace");
282                 png_name.replace(':', "mediumspace");
283                 png_name.replace(';', "thickspace");
284                 png_name.replace('!', "negthinspace");
285         }
286
287         LYXERR(Debug::GUI, "findPng(" << name << ")\n"
288                 << "Looking for math PNG called \"" << png_name << '"');
289         return png_name;
290 }
291
292 } // namespace anon
293
294
295 QString iconName(FuncRequest const & f, bool unknown)
296 {
297         initializeResources();
298         QString name1;
299         QString name2;
300         QString path;
301         switch (f.action) {
302         case LFUN_MATH_INSERT:
303                 if (!f.argument().empty()) {
304                         path = "math/";
305                         name1 = findPng(toqstr(f.argument()).mid(1));
306                 }
307                 break;
308         case LFUN_MATH_DELIM:
309         case LFUN_MATH_BIGDELIM:
310                 path = "math/";
311                 name1 = findPng(toqstr(f.argument()));
312                 break;
313         case LFUN_CALL:
314                 path = "commands/";
315                 name1 = toqstr(f.argument());
316                 break;
317         case LFUN_COMMAND_ALTERNATIVES: {
318                 // use the first of the alternative commands
319                 docstring firstcom;
320                 docstring dummy = split(f.argument(), firstcom, ';');
321                 name1 = toqstr(firstcom);
322                 name1.replace(' ', '_');
323                 break;
324         }
325         default:
326                 name2 = toqstr(lyxaction.getActionName(f.action));
327                 name1 = name2;
328
329                 if (!f.argument().empty()) {
330                         name1 = name2 + ' ' + toqstr(f.argument());
331                         name1.replace(' ', '_');
332                         name1.replace('\\', "backslash");
333                 }
334         }
335
336         FileName fname = libFileSearch("images/" + path, name1, "png");
337         if (fname.exists())
338                 return toqstr(fname.absFilename());
339
340         fname = libFileSearch("images/" + path, name2, "png");
341         if (fname.exists())
342                 return toqstr(fname.absFilename());
343
344         path = ":/images/" + path;
345         QDir res(path);
346         if (!res.exists()) {
347                 LYXERR0("Directory " << path << " not found in resource!"); 
348                 return QString();
349         }
350         name1 += ".png";
351         if (res.exists(name1))
352                 return path + name1;
353
354         name2 += ".png";
355         if (res.exists(name2))
356                 return path + name2;
357
358         LYXERR(Debug::GUI, "Cannot find icon with filename "
359                            << "\"" << name1 << "\""
360                            << " or filename "
361                            << "\"" << name2 << "\"" 
362                            << " for command \""
363                            << lyxaction.getActionName(f.action)
364                            << '(' << to_utf8(f.argument()) << ")\"");
365
366         if (unknown) {
367                 fname = libFileSearch(QString("images/"), "unknown", "png");
368                 if (fname.exists())
369                         return toqstr(fname.absFilename());
370                 return QString(":/images/unknown.png");
371         }
372
373         return QString();
374 }
375
376 QPixmap getPixmap(QString const & path, QString const & name, QString const & ext)
377 {
378         QPixmap pixmap;
379         FileName fname = libFileSearch(path, name, ext);
380         QString path1 = toqstr(fname.absFilename());
381         QString path2 = ":/" + path + name + "." + ext;
382
383         if (pixmap.load(path1)) {
384                 return pixmap;
385         }
386         else if (pixmap.load(path2)) {
387                 return pixmap;
388         }
389
390         LYXERR0("Cannot load pixmap \""
391                 << path << name << '.' << ext
392                 << "\", please verify resource system!");
393
394         return QPixmap();
395 }
396
397 QIcon getIcon(FuncRequest const & f, bool unknown)
398 {
399         QString icon = iconName(f, unknown);
400         if (icon.isEmpty())
401                 return QIcon();
402
403         //LYXERR(Debug::GUI, "Found icon: " << icon);
404         QPixmap pm;
405         if (!pm.load(icon)) {
406                 LYXERR0("Cannot load icon " << icon << " please verify resource system!");
407                 return QIcon();
408         }
409
410         return QIcon(pm);
411 }
412
413
414 ////////////////////////////////////////////////////////////////////////
415 //
416 // LyX server support code.
417 //
418 ////////////////////////////////////////////////////////////////////////
419
420 class SocketNotifier : public QSocketNotifier
421 {
422 public:
423         /// connect a connection notification from the LyXServerSocket
424         SocketNotifier(QObject * parent, int fd, Application::SocketCallback func)
425                 : QSocketNotifier(fd, QSocketNotifier::Read, parent), func_(func)
426         {}
427
428 public:
429         /// The callback function
430         Application::SocketCallback func_;
431 };
432
433
434 ////////////////////////////////////////////////////////////////////////
435 //
436 // Mac specific stuff goes here...
437 //
438 ////////////////////////////////////////////////////////////////////////
439
440 class MenuTranslator : public QTranslator
441 {
442 public:
443         MenuTranslator(QObject * parent)
444                 : QTranslator(parent)
445         {}
446
447         QString translate(const char * /*context*/, 
448           const char * sourceText, 
449           const char * /*comment*/ = 0) 
450         {
451                 string const s = sourceText;
452                 if (s == N_("About %1") || s == N_("Preferences") 
453                                 || s == N_("Reconfigure") || s == N_("Quit %1"))
454                         return qt_(s);
455                 else 
456                         return QString();
457         }
458 };
459
460 class GlobalMenuBar : public QMenuBar
461 {
462 public:
463         ///
464         GlobalMenuBar() : QMenuBar(0) {}
465         
466         ///
467         bool event(QEvent * e)
468         {
469                 if (e->type() == QEvent::ShortcutOverride) {
470                         //          && activeWindow() == 0) {
471                         QKeyEvent * ke = static_cast<QKeyEvent*>(e);
472                         KeySymbol sym;
473                         setKeySymbol(&sym, ke);
474                         theLyXFunc().processKeySym(sym, q_key_state(ke->modifiers()));
475                         e->accept();
476                         return true;
477                 }
478                 return false;
479         }
480 };
481
482 #ifdef Q_WS_MACX
483 // QMacPasteboardMimeGraphics can only be compiled on Mac.
484
485 class QMacPasteboardMimeGraphics : public QMacPasteboardMime
486 {
487 public:
488         QMacPasteboardMimeGraphics()
489                 : QMacPasteboardMime(MIME_QT_CONVERTOR|MIME_ALL)
490         {}
491
492         QString convertorName() { return "Graphics"; }
493
494         QString flavorFor(QString const & mime)
495         {
496                 LYXERR(Debug::ACTION, "flavorFor " << mime);
497                 if (mime == pdfMimeType())
498                         return QLatin1String("com.adobe.pdf");
499                 return QString();
500         }
501
502         QString mimeFor(QString flav)
503         {
504                 LYXERR(Debug::ACTION, "mimeFor " << flav);
505                 if (flav == QLatin1String("com.adobe.pdf"))
506                         return pdfMimeType();
507                 return QString();
508         }
509
510         bool canConvert(QString const & mime, QString flav)
511         {
512                 return mimeFor(flav) == mime;
513         }
514
515         QVariant convertToMime(QString const & /*mime*/, QList<QByteArray> data,
516                 QString /*flav*/)
517         {
518                 if(data.count() > 1)
519                         qWarning("QMacPasteboardMimeGraphics: Cannot handle multiple member data");
520                 return data.first();
521         }
522
523         QList<QByteArray> convertFromMime(QString const & /*mime*/,
524                 QVariant data, QString /*flav*/)
525         {
526                 QList<QByteArray> ret;
527                 ret.append(data.toByteArray());
528                 return ret;
529         }
530 };
531 #endif
532
533 ///////////////////////////////////////////////////////////////
534 //
535 // You can find more platform specific stuff at the end of this file...
536 //
537 ///////////////////////////////////////////////////////////////
538
539 ////////////////////////////////////////////////////////////////////////
540 // Windows specific stuff goes here...
541
542 #ifdef Q_WS_WIN
543 // QWindowsMimeMetafile can only be compiled on Windows.
544
545 static FORMATETC cfFromMime(QString const & mimetype)
546 {
547         FORMATETC formatetc;
548         if (mimetype == emfMimeType()) {
549                 formatetc.cfFormat = CF_ENHMETAFILE;
550                 formatetc.tymed = TYMED_ENHMF;
551         } else if (mimetype == wmfMimeType()) {
552                 formatetc.cfFormat = CF_METAFILEPICT;
553                 formatetc.tymed = TYMED_MFPICT;
554         }
555         formatetc.ptd = 0;
556         formatetc.dwAspect = DVASPECT_CONTENT;
557         formatetc.lindex = -1;
558         return formatetc;
559 }
560
561
562 class QWindowsMimeMetafile : public QWindowsMime {
563 public:
564         QWindowsMimeMetafile() {}
565
566         bool canConvertFromMime(FORMATETC const & formatetc,
567                 QMimeData const * mimedata) const
568         {
569                 return false;
570         }
571
572         bool canConvertToMime(QString const & mimetype,
573                 IDataObject * pDataObj) const
574         {
575                 if (mimetype != emfMimeType() && mimetype != wmfMimeType())
576                         return false;
577                 FORMATETC formatetc = cfFromMime(mimetype);
578                 return pDataObj->QueryGetData(&formatetc) == S_OK;
579         }
580
581         bool convertFromMime(FORMATETC const & formatetc,
582                 const QMimeData * mimedata, STGMEDIUM * pmedium) const
583         {
584                 return false;
585         }
586
587         QVariant convertToMime(QString const & mimetype, IDataObject * pDataObj,
588                 QVariant::Type preferredType) const
589         {
590                 QByteArray data;
591                 if (!canConvertToMime(mimetype, pDataObj))
592                         return data;
593
594                 FORMATETC formatetc = cfFromMime(mimetype);
595                 STGMEDIUM s;
596                 if (pDataObj->GetData(&formatetc, &s) != S_OK)
597                         return data;
598
599                 int dataSize;
600                 if (s.tymed == TYMED_ENHMF) {
601                         dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, 0, 0);
602                         data.resize(dataSize);
603                         dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, dataSize,
604                                 (LPBYTE)data.data());
605                 } else if (s.tymed == TYMED_MFPICT) {
606                         dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, 0, 0);
607                         data.resize(dataSize);
608                         dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, dataSize,
609                                 (LPBYTE)data.data());
610                 }
611                 data.detach();
612                 ReleaseStgMedium(&s);
613
614                 return data;
615         }
616
617
618         QVector<FORMATETC> formatsForMime(QString const & mimetype,
619                 QMimeData const * mimedata) const
620         {
621                 QVector<FORMATETC> formats;
622                 if (mimetype == emfMimeType() || mimetype == wmfMimeType())
623                         formats += cfFromMime(mimetype);
624                 return formats;
625         }
626
627         QString mimeForFormat(FORMATETC const & formatetc) const
628         {
629                 switch (formatetc.cfFormat) {
630                 case CF_ENHMETAFILE:
631                         return emfMimeType(); 
632                 case CF_METAFILEPICT:
633                         return wmfMimeType();
634                 }
635                 return QString();
636         }
637 };
638
639 #endif // Q_WS_WIN
640
641 ////////////////////////////////////////////////////////////////////////
642 // GuiApplication::Private definition and implementation.
643 ////////////////////////////////////////////////////////////////////////
644
645 struct GuiApplication::Private
646 {
647         Private(): language_model_(0), global_menubar_(0) 
648         {
649         #ifdef Q_WS_WIN
650                 /// WMF Mime handler for Windows clipboard.
651                 wmf_mime_ = new QWindowsMimeMetafile();
652         #endif
653         }
654
655         ///
656         QSortFilterProxyModel * language_model_;
657         ///
658         GuiClipboard clipboard_;
659         ///
660         GuiSelection selection_;
661         ///
662         FontLoader font_loader_;
663         ///
664         ColorCache color_cache_;
665         ///
666         QTranslator qt_trans_;
667         ///
668         QHash<int, SocketNotifier *> socket_notifiers_;
669         ///
670         Menus menus_;
671         ///
672         /// The global instance
673         Toolbars toolbars_;
674
675         /// this timer is used for any regular events one wants to
676         /// perform. at present it is used to check if forked processes
677         /// are done.
678         QTimer general_timer_;
679
680         /// delayed FuncRequests
681         std::queue<FuncRequest> func_request_queue_;
682
683         /// Multiple views container.
684         /**
685         * Warning: This must not be a smart pointer as the destruction of the
686         * object is handled by Qt when the view is closed
687         * \sa Qt::WA_DeleteOnClose attribute.
688         */
689         QHash<int, GuiView *> views_;
690
691         /// Only used on mac.
692         GlobalMenuBar * global_menubar_;
693
694 #ifdef Q_WS_MACX
695         /// Linkback mime handler for MacOSX.
696         QMacPasteboardMimeGraphics mac_pasteboard_mime_;
697 #endif
698
699 #ifdef Q_WS_WIN
700         /// WMF Mime handler for Windows clipboard.
701         QWindowsMimeMetafile * wmf_mime_;
702 #endif
703 };
704
705
706 GuiApplication * guiApp;
707
708 GuiApplication::~GuiApplication()
709 {
710 #ifdef Q_WS_MACX
711         closeAllLinkBackLinks();
712 #endif
713         delete d;
714 }
715
716
717 GuiApplication::GuiApplication(int & argc, char ** argv)
718         : QApplication(argc, argv), current_view_(0),
719           d(new GuiApplication::Private)
720 {
721         QString app_name = "LyX";
722         QCoreApplication::setOrganizationName(app_name);
723         QCoreApplication::setOrganizationDomain("lyx.org");
724         QCoreApplication::setApplicationName(lyx_package);
725
726         // Install translator for GUI elements.
727         installTranslator(&d->qt_trans_);
728
729         // FIXME: quitOnLastWindowClosed is true by default. We should have a
730         // lyxrc setting for this in order to let the application stay resident.
731         // But then we need some kind of dock icon, at least on Windows.
732         /*
733         if (lyxrc.quit_on_last_window_closed)
734                 setQuitOnLastWindowClosed(false);
735         */
736 #ifdef Q_WS_MACX
737         // FIXME: Do we need a lyxrc setting for this on Mac? This behaviour
738         // seems to be the default case for applications like LyX.
739         setQuitOnLastWindowClosed(false);
740
741         // This allows to translate the strings that appear in the LyX menu.
742         /// A translator suitable for the entries in the LyX menu.
743         /// Only needed with Qt/Mac.
744         installTranslator(new MenuTranslator(this));
745 #endif
746         
747 #ifdef Q_WS_X11
748         // doubleClickInterval() is 400 ms on X11 which is just too long.
749         // On Windows and Mac OS X, the operating system's value is used.
750         // On Microsoft Windows, calling this function sets the double
751         // click interval for all applications. So we don't!
752         QApplication::setDoubleClickInterval(300);
753 #endif
754
755         connect(this, SIGNAL(lastWindowClosed()), this, SLOT(onLastWindowClosed()));
756
757         // needs to be done before reading lyxrc
758         QWidget w;
759         lyxrc.dpi = (w.logicalDpiX() + w.logicalDpiY()) / 2;
760
761         guiApp = this;
762
763         // Set the cache to 5120 kilobytes which corresponds to screen size of
764         // 1280 by 1024 pixels with a color depth of 32 bits.
765         QPixmapCache::setCacheLimit(5120);
766
767         // Initialize RC Fonts
768         if (lyxrc.roman_font_name.empty())
769                 lyxrc.roman_font_name = fromqstr(romanFontName());
770
771         if (lyxrc.sans_font_name.empty())
772                 lyxrc.sans_font_name = fromqstr(sansFontName());
773
774         if (lyxrc.typewriter_font_name.empty())
775                 lyxrc.typewriter_font_name = fromqstr(typewriterFontName());
776
777         d->general_timer_.setInterval(500);
778         connect(&d->general_timer_, SIGNAL(timeout()),
779                 this, SLOT(handleRegularEvents()));
780         d->general_timer_.start();
781 }
782
783
784 GuiApplication * theGuiApp()
785 {
786         return dynamic_cast<GuiApplication *>(theApp());
787 }
788
789
790 void GuiApplication::clearSession()
791 {
792         QSettings settings;
793         settings.clear();
794 }
795
796
797 docstring GuiApplication::iconName(FuncRequest const & f, bool unknown)
798 {
799         return qstring_to_ucs4(lyx::frontend::iconName(f, unknown));
800 }
801
802
803
804 bool GuiApplication::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
805 {
806         bool enable = true;
807
808         switch(cmd.action) {
809
810         case LFUN_WINDOW_CLOSE:
811                 enable = d->views_.size() > 0;
812                 break;
813
814         case LFUN_BUFFER_NEW:
815         case LFUN_BUFFER_NEW_TEMPLATE:
816         case LFUN_FILE_OPEN:
817         case LFUN_HELP_OPEN:
818         case LFUN_SCREEN_FONT_UPDATE:
819         case LFUN_SET_COLOR:
820         case LFUN_WINDOW_NEW:
821         case LFUN_LYX_QUIT:
822                 enable = true;
823                 break;
824
825         default:
826                 return false;
827         }
828
829         if (!enable)
830                 flag.setEnabled(false);
831
832         return true;
833 }
834
835         
836 bool GuiApplication::dispatch(FuncRequest const & cmd)
837 {
838         switch (cmd.action) {
839
840         case LFUN_WINDOW_NEW:
841                 createView(toqstr(cmd.argument()));
842                 break;
843
844         case LFUN_WINDOW_CLOSE:
845                 // update bookmark pit of the current buffer before window close
846                 for (size_t i = 0; i < theSession().bookmarks().size(); ++i)
847                         theLyXFunc().gotoBookmark(i+1, false, false);
848                 // clear the last opened list, because
849                 // maybe this will end the session
850                 theSession().lastOpened().clear();
851                 current_view_->close();
852                 break;
853
854         case LFUN_LYX_QUIT:
855                 // quitting is triggered by the gui code
856                 // (leaving the event loop).
857                 if (current_view_)
858                         current_view_->message(from_utf8(N_("Exiting.")));
859                 if (closeAllViews())
860                         quit();
861                 break;
862
863         case LFUN_SCREEN_FONT_UPDATE: {
864                 // handle the screen font changes.
865                 d->font_loader_.update();
866                 // Backup current_view_
867                 GuiView * view = current_view_;
868                 // Set current_view_ to zero to forbid GuiWorkArea::redraw()
869                 // to skip the refresh.
870                 current_view_ = 0;
871                 BufferList::iterator it = theBufferList().begin();
872                 BufferList::iterator const end = theBufferList().end();
873                 for (; it != end; ++it)
874                         (*it)->changed();
875                 // Restore current_view_
876                 current_view_ = view;
877                 break;
878         }
879
880         case LFUN_BUFFER_NEW:
881                 if (d->views_.empty()
882                     || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
883                         createView(QString(), false); // keep hidden
884                         current_view_->newDocument(to_utf8(cmd.argument()), false);
885                         current_view_->show();
886                         setActiveWindow(current_view_);
887                 } else {
888                         current_view_->newDocument(to_utf8(cmd.argument()), false);
889                 }
890                 break;
891
892         case LFUN_BUFFER_NEW_TEMPLATE:
893                 if (d->views_.empty()
894                     || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
895                         createView();
896                         current_view_->newDocument(to_utf8(cmd.argument()), true);
897                         if (!current_view_->documentBufferView())
898                                 current_view_->close();
899                 } else {
900                         current_view_->newDocument(to_utf8(cmd.argument()), true);
901                 }
902                 break;
903
904         case LFUN_FILE_OPEN:
905                 // FIXME: create a new method shared with LFUN_HELP_OPEN.
906                 if (d->views_.empty()
907                     || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
908                         string const fname = to_utf8(cmd.argument());
909                         // We want the ui session to be saved per document and not per
910                         // window number. The filename crc is a good enough identifier.
911                         boost::crc_32_type crc;
912                         crc = for_each(fname.begin(), fname.end(), crc);
913                         createView(crc.checksum());
914                         current_view_->openDocument(fname);
915                         if (current_view_ && !current_view_->documentBufferView())
916                                 current_view_->close();
917                 } else
918                         current_view_->openDocument(to_utf8(cmd.argument()));
919                 break;
920
921         case LFUN_HELP_OPEN: {
922                 // FIXME: create a new method shared with LFUN_FILE_OPEN.
923                 if (current_view_ == 0)
924                         createView();
925                 string const arg = to_utf8(cmd.argument());
926                 if (arg.empty()) {
927                         current_view_->message(_("Missing argument"));
928                         break;
929                 }
930                 FileName fname = i18nLibFileSearch("doc", arg, "lyx");
931                 if (fname.empty()) 
932                         fname = i18nLibFileSearch("examples", arg, "lyx");
933
934                 if (fname.empty()) {
935                         lyxerr << "LyX: unable to find documentation file `"
936                                 << arg << "'. Bad installation?" << endl;
937                         break;
938                 }
939                 current_view_->message(bformat(_("Opening help file %1$s..."),
940                         makeDisplayPath(fname.absFilename())));
941                 Buffer * buf = current_view_->loadDocument(fname, false);
942                 if (buf) {
943                         current_view_->setBuffer(buf);
944                         buf->updateLabels();
945                         buf->errors("Parse");
946                 }
947                 break;
948         }
949
950         case LFUN_SET_COLOR: {
951                 string lyx_name;
952                 string const x11_name = split(to_utf8(cmd.argument()), lyx_name, ' ');
953                 if (lyx_name.empty() || x11_name.empty()) {
954                         current_view_->message(
955                                 _("Syntax: set-color <lyx_name> <x11_name>"));
956                         break;
957                 }
958
959                 string const graphicsbg = lcolor.getLyXName(Color_graphicsbg);
960                 bool const graphicsbg_changed = lyx_name == graphicsbg
961                         && x11_name != graphicsbg;
962                 if (graphicsbg_changed) {
963                         // FIXME: The graphics cache no longer has a changeDisplay method.
964 #if 0
965                         graphics::GCache::get().changeDisplay(true);
966 #endif
967                 }
968
969                 if (!lcolor.setColor(lyx_name, x11_name)) {
970                         current_view_->message(
971                                         bformat(_("Set-color \"%1$s\" failed "
972                                                                "- color is undefined or "
973                                                                "may not be redefined"),
974                                                                    from_utf8(lyx_name)));
975                         break;
976                 }
977                 // Make sure we don't keep old colors in cache.
978                 d->color_cache_.clear();
979                 break;
980         }
981
982         default:
983                 // Notify the caller that the action has not been dispatched.
984                 return false;
985         }
986
987         // The action has been dispatched.
988         return true;
989 }
990
991
992 void GuiApplication::dispatchDelayed(FuncRequest const & func)
993 {
994         d->func_request_queue_.push(func);
995         QTimer::singleShot(0, this, SLOT(processFuncRequestQueue()));
996 }
997
998
999 void GuiApplication::resetGui()
1000 {
1001         // Set the language defined by the user.
1002         setGuiLanguage();
1003
1004         // Read menus
1005         if (!readUIFile(toqstr(lyxrc.ui_file)))
1006                 // Gives some error box here.
1007                 return;
1008
1009         if (d->global_menubar_)
1010                 d->menus_.fillMenuBar(d->global_menubar_, 0, false);
1011
1012         QHash<int, GuiView *>::iterator it;
1013         for (it = d->views_.begin(); it != d->views_.end(); ++it) {
1014                 GuiView * gv = *it;
1015                 gv->setLayoutDirection(layoutDirection());
1016                 gv->resetDialogs();
1017         }
1018
1019         dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
1020 }
1021
1022
1023 void GuiApplication::createView(int view_id)
1024 {
1025         createView(QString(), true, view_id);
1026 }
1027
1028
1029 void GuiApplication::createView(QString const & geometry_arg, bool autoShow,
1030         int view_id)
1031 {
1032         // release the keyboard which might have been grabed by the global
1033         // menubar on Mac to catch shortcuts even without any GuiView.
1034         if (d->global_menubar_)
1035                 d->global_menubar_->releaseKeyboard();
1036
1037         // create new view
1038         int id = view_id;
1039         while (d->views_.find(id) != d->views_.end())
1040                 id++;
1041
1042         LYXERR(Debug::GUI, "About to create new window with ID " << id);
1043         GuiView * view = new GuiView(id);
1044         // register view
1045         d->views_[id] = view;
1046
1047         if (autoShow) {
1048                 view->show();
1049                 setActiveWindow(view);
1050         }
1051
1052         if (!geometry_arg.isEmpty()) {
1053 #ifdef Q_WS_WIN
1054                 int x, y;
1055                 int w, h;
1056                 QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)([+-][0-9]*)){0,1}" );
1057                 re.indexIn(geometry_arg);
1058                 w = re.cap(1).toInt();
1059                 h = re.cap(2).toInt();
1060                 x = re.cap(3).toInt();
1061                 y = re.cap(4).toInt();
1062                 view->setGeometry(x, y, w, h);
1063 #endif
1064         }
1065         view->setFocus();
1066 }
1067
1068
1069 Clipboard & GuiApplication::clipboard()
1070 {
1071         return d->clipboard_;
1072 }
1073
1074
1075 Selection & GuiApplication::selection()
1076 {
1077         return d->selection_;
1078 }
1079
1080
1081 FontLoader & GuiApplication::fontLoader() 
1082 {
1083         return d->font_loader_;
1084 }
1085
1086
1087 Toolbars const & GuiApplication::toolbars() const 
1088 {
1089         return d->toolbars_;
1090 }
1091
1092
1093 Toolbars & GuiApplication::toolbars()
1094 {
1095         return d->toolbars_; 
1096 }
1097
1098
1099 Menus const & GuiApplication::menus() const 
1100 {
1101         return d->menus_;
1102 }
1103
1104
1105 Menus & GuiApplication::menus()
1106 {
1107         return d->menus_; 
1108 }
1109
1110
1111 QList<int> GuiApplication::viewIds() const
1112 {
1113         return d->views_.keys();
1114 }
1115
1116
1117 ColorCache & GuiApplication::colorCache()
1118 {
1119         return d->color_cache_;
1120 }
1121
1122
1123 int GuiApplication::exec()
1124 {
1125         // asynchronously handle batch commands. This event will be in
1126         // the event queue in front of other asynchronous events. Hence,
1127         // we can assume in the latter that the gui is setup already.
1128         QTimer::singleShot(0, this, SLOT(execBatchCommands()));
1129
1130         return QApplication::exec();
1131 }
1132
1133
1134 void GuiApplication::exit(int status)
1135 {
1136         QApplication::exit(status);
1137 }
1138
1139
1140 void GuiApplication::setGuiLanguage()
1141 {
1142         // Set the language defined by the user.
1143         setRcGuiLanguage();
1144
1145         QString const default_language = toqstr(Messages::defaultLanguage());
1146         LYXERR(Debug::LOCALE, "Tring to set default locale to: " << default_language);
1147         QLocale const default_locale(default_language);
1148         QLocale::setDefault(default_locale);
1149
1150         // install translation file for Qt built-in dialogs
1151         QString const language_name = QString("qt_") + default_locale.name();
1152
1153         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN). 
1154         // Short-named translator can be loaded from a long name, but not the
1155         // opposite. Therefore, long name should be used without truncation.
1156         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
1157         if (!d->qt_trans_.load(language_name,
1158                         QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
1159                 LYXERR(Debug::LOCALE, "Could not find  Qt translations for locale "
1160                         << language_name);
1161         } else {
1162                 LYXERR(Debug::LOCALE, "Successfully installed Qt translations for locale "
1163                         << language_name);
1164         }
1165
1166         switch (default_locale.language()) {
1167         case QLocale::Arabic :
1168         case QLocale::Hebrew :
1169         case QLocale::Persian :
1170         case QLocale::Urdu :
1171         setLayoutDirection(Qt::RightToLeft);
1172                 break;
1173         default:
1174         setLayoutDirection(Qt::LeftToRight);
1175         }
1176 }
1177
1178
1179 void GuiApplication::processFuncRequestQueue()
1180 {
1181         while (!d->func_request_queue_.empty()) {
1182                 lyx::dispatch(d->func_request_queue_.back());
1183                 d->func_request_queue_.pop();
1184         }
1185 }
1186
1187
1188 void GuiApplication::execBatchCommands()
1189 {
1190         setGuiLanguage();
1191
1192         // Read menus
1193         if (!readUIFile(toqstr(lyxrc.ui_file)))
1194                 // Gives some error box here.
1195                 return;
1196
1197 #ifdef Q_WS_MACX
1198         // Create the global default menubar which is shown for the dialogs
1199         // and if no GuiView is visible.
1200         // This must be done after the session was recovered to know the "last files".
1201         d->global_menubar_ = new GlobalMenuBar();
1202         d->menus_.fillMenuBar(d->global_menubar_, 0, true);
1203 #endif
1204
1205         lyx::execBatchCommands();
1206 }
1207
1208
1209 QAbstractItemModel * GuiApplication::languageModel()
1210 {
1211         if (d->language_model_)
1212                 return d->language_model_;
1213
1214         QStandardItemModel * lang_model = new QStandardItemModel(this);
1215         lang_model->insertColumns(0, 1);
1216         int current_row;
1217         Languages::const_iterator it = languages.begin();
1218         Languages::const_iterator end = languages.end();
1219         for (; it != end; ++it) {
1220                 current_row = lang_model->rowCount();
1221                 lang_model->insertRows(current_row, 1);
1222                 QModelIndex item = lang_model->index(current_row, 0);
1223                 lang_model->setData(item, qt_(it->second.display()), Qt::DisplayRole);
1224                 lang_model->setData(item, toqstr(it->second.lang()), Qt::UserRole);
1225         }
1226         d->language_model_ = new QSortFilterProxyModel(this);
1227         d->language_model_->setSourceModel(lang_model);
1228 #if QT_VERSION >= 0x040300
1229         d->language_model_->setSortLocaleAware(true);
1230 #endif
1231         return d->language_model_;
1232 }
1233
1234
1235 void GuiApplication::restoreGuiSession()
1236 {
1237         if (!lyxrc.load_session)
1238                 return;
1239
1240         Session & session = theSession();
1241         LastOpenedSection::LastOpened const & lastopened = 
1242                 session.lastOpened().getfiles();
1243
1244         FileName active_file;
1245         // do not add to the lastfile list since these files are restored from
1246         // last session, and should be already there (regular files), or should
1247         // not be added at all (help files).
1248         for (size_t i = 0; i < lastopened.size(); ++i) {
1249                 FileName const & file_name = lastopened[i].file_name;
1250                 if (d->views_.empty() || (!lyxrc.open_buffers_in_tabs
1251                           && current_view_->documentBufferView() != 0)) {
1252                         boost::crc_32_type crc;
1253                         string const & fname = file_name.absFilename();
1254                         crc = for_each(fname.begin(), fname.end(), crc);
1255                         createView(crc.checksum());
1256                 }
1257                 current_view_->loadDocument(file_name, false);
1258
1259                 if (lastopened[i].active)
1260                         active_file = file_name;
1261         }
1262
1263         // Restore last active buffer
1264         Buffer * buffer = theBufferList().getBuffer(active_file);
1265         if (buffer)
1266                 current_view_->setBuffer(buffer);
1267
1268         // clear this list to save a few bytes of RAM
1269         session.lastOpened().clear();
1270 }
1271
1272
1273 QString const GuiApplication::romanFontName()
1274 {
1275         QFont font;
1276         font.setKerning(false);
1277         font.setStyleHint(QFont::Serif);
1278         font.setFamily("serif");
1279
1280         return QFontInfo(font).family();
1281 }
1282
1283
1284 QString const GuiApplication::sansFontName()
1285 {
1286         QFont font;
1287         font.setKerning(false);
1288         font.setStyleHint(QFont::SansSerif);
1289         font.setFamily("sans");
1290
1291         return QFontInfo(font).family();
1292 }
1293
1294
1295 QString const GuiApplication::typewriterFontName()
1296 {
1297         QFont font;
1298         font.setKerning(false);
1299         font.setStyleHint(QFont::TypeWriter);
1300         font.setFamily("monospace");
1301
1302         return QFontInfo(font).family();
1303 }
1304
1305
1306 void GuiApplication::handleRegularEvents()
1307 {
1308         ForkedCallsController::handleCompletedProcesses();
1309 }
1310
1311
1312 bool GuiApplication::event(QEvent * e)
1313 {
1314         switch(e->type()) {
1315         case QEvent::FileOpen: {
1316                 // Open a file; this happens only on Mac OS X for now.
1317                 //
1318                 // We do this asynchronously because on startup the batch
1319                 // commands are not executed here yet and the gui is not ready
1320                 // therefore.
1321                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
1322                 dispatchDelayed(FuncRequest(LFUN_FILE_OPEN, qstring_to_ucs4(foe->file())));
1323                 e->accept();
1324                 return true;
1325         }
1326         default:
1327                 return QApplication::event(e);
1328         }
1329 }
1330
1331
1332 bool GuiApplication::notify(QObject * receiver, QEvent * event)
1333 {
1334         try {
1335                 return QApplication::notify(receiver, event);
1336         }
1337         catch (ExceptionMessage const & e) {
1338                 switch(e.type_) { 
1339                 case ErrorException:
1340                         emergencyCleanup();
1341                         setQuitOnLastWindowClosed(false);
1342                         closeAllViews();
1343                         Alert::error(e.title_, e.details_);
1344 #ifndef NDEBUG
1345                         // Properly crash in debug mode in order to get a useful backtrace.
1346                         abort();
1347 #endif
1348                         // In release mode, try to exit gracefully.
1349                         this->exit(1);
1350
1351                 case BufferException: {
1352                         if (!current_view_->documentBufferView())
1353                                 return false;
1354                         Buffer * buf = &current_view_->documentBufferView()->buffer();
1355                         docstring details = e.details_ + '\n';
1356                         details += buf->emergencyWrite();
1357                         theBufferList().release(buf);
1358                         details += "\n" + _("The current document was closed.");
1359                         Alert::error(e.title_, details);
1360                         return false;
1361                 }
1362                 case WarningException:
1363                         Alert::warning(e.title_, e.details_);
1364                         return false;
1365                 }
1366         }
1367         catch (exception const & e) {
1368                 docstring s = _("LyX has caught an exception, it will now "
1369                         "attempt to save all unsaved documents and exit."
1370                         "\n\nException: ");
1371                 s += from_ascii(e.what());
1372                 Alert::error(_("Software exception Detected"), s);
1373                 lyx_exit(1);
1374         }
1375         catch (...) {
1376                 docstring s = _("LyX has caught some really weird exception, it will "
1377                         "now attempt to save all unsaved documents and exit.");
1378                 Alert::error(_("Software exception Detected"), s);
1379                 lyx_exit(1);
1380         }
1381
1382         return false;
1383 }
1384
1385
1386 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
1387 {
1388         QColor const & qcol = d->color_cache_.get(col);
1389         if (!qcol.isValid()) {
1390                 rgbcol.r = 0;
1391                 rgbcol.g = 0;
1392                 rgbcol.b = 0;
1393                 return false;
1394         }
1395         rgbcol.r = qcol.red();
1396         rgbcol.g = qcol.green();
1397         rgbcol.b = qcol.blue();
1398         return true;
1399 }
1400
1401
1402 string const GuiApplication::hexName(ColorCode col)
1403 {
1404         return ltrim(fromqstr(d->color_cache_.get(col).name()), "#");
1405 }
1406
1407
1408 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
1409 {
1410         SocketNotifier * sn = new SocketNotifier(this, fd, func);
1411         d->socket_notifiers_[fd] = sn;
1412         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
1413 }
1414
1415
1416 void GuiApplication::socketDataReceived(int fd)
1417 {
1418         d->socket_notifiers_[fd]->func_();
1419 }
1420
1421
1422 void GuiApplication::unregisterSocketCallback(int fd)
1423 {
1424         d->socket_notifiers_.take(fd)->setEnabled(false);
1425 }
1426
1427
1428 void GuiApplication::commitData(QSessionManager & sm)
1429 {
1430         /// The implementation is required to avoid an application exit
1431         /// when session state save is triggered by session manager.
1432         /// The default implementation sends a close event to all
1433         /// visible top level widgets when session managment allows
1434         /// interaction.
1435         /// We are changing that to close all wiew one by one.
1436         /// FIXME: verify if the default implementation is enough now.
1437         if (sm.allowsInteraction() && !closeAllViews())
1438                 sm.cancel();
1439 }
1440
1441
1442 void GuiApplication::unregisterView(GuiView * gv)
1443 {
1444         LASSERT(d->views_[gv->id()] == gv, /**/);
1445         d->views_.remove(gv->id());
1446         if (current_view_ == gv) {
1447                 current_view_ = 0;
1448                 theLyXFunc().setLyXView(0);
1449         }
1450 }
1451
1452
1453 bool GuiApplication::closeAllViews()
1454 {
1455         if (d->views_.empty())
1456                 return true;
1457
1458         // When a view/window was closed before without quitting LyX, there
1459         // are already entries in the lastOpened list.
1460         theSession().lastOpened().clear();
1461
1462         QList<GuiView *> views = d->views_.values();
1463         foreach (GuiView * view, views) {
1464                 if (!view->close())
1465                         return false;
1466         }
1467
1468         d->views_.clear();
1469         return true;
1470 }
1471
1472
1473 GuiView & GuiApplication::view(int id) const
1474 {
1475         LASSERT(d->views_.contains(id), /**/);
1476         return *d->views_.value(id);
1477 }
1478
1479
1480 void GuiApplication::hideDialogs(string const & name, Inset * inset) const
1481 {
1482         QList<GuiView *> views = d->views_.values();
1483         foreach (GuiView * view, views)
1484                 view->hideDialog(name, inset);
1485 }
1486
1487
1488 Buffer const * GuiApplication::updateInset(Inset const * inset) const
1489 {
1490         Buffer const * buffer_ = 0;
1491         QHash<int, GuiView *>::iterator end = d->views_.end();
1492         for (QHash<int, GuiView *>::iterator it = d->views_.begin(); it != end; ++it) {
1493                 if (Buffer const * ptr = (*it)->updateInset(inset))
1494                         buffer_ = ptr;
1495         }
1496         return buffer_;
1497 }
1498
1499
1500 bool GuiApplication::searchMenu(FuncRequest const & func,
1501         docstring_list & names) const
1502 {
1503         return d->menus_.searchMenu(func, names);
1504 }
1505
1506
1507 bool GuiApplication::readUIFile(QString const & name, bool include)
1508 {
1509         LYXERR(Debug::INIT, "About to read " << name << "...");
1510
1511         FileName ui_path;
1512         if (include) {
1513                 ui_path = libFileSearch("ui", name, "inc");
1514                 if (ui_path.empty())
1515                         ui_path = libFileSearch("ui", changeExtension(name, "inc"));
1516         } else {
1517                 ui_path = libFileSearch("ui", name, "ui");
1518         }
1519
1520         if (ui_path.empty()) {
1521                 static const QString defaultUIFile = "default";
1522                 LYXERR(Debug::INIT, "Could not find " << name);
1523                 if (include) {
1524                         Alert::warning(_("Could not find UI definition file"),
1525                                 bformat(_("Error while reading the included file\n%1$s\n"
1526                                         "Please check your installation."), qstring_to_ucs4(name)));
1527                         return false;
1528                 }
1529                 if (name == defaultUIFile) {
1530                         LYXERR(Debug::INIT, "Could not find default UI file!!");
1531                         Alert::warning(_("Could not find default UI file"),
1532                                 _("LyX could not find the default UI file!\n"
1533                                   "Please check your installation."));
1534                         return false;
1535                 }
1536                 Alert::warning(_("Could not find UI definition file"),
1537                 bformat(_("Error while reading the configuration file\n%1$s\n"
1538                         "Falling back to default.\n"
1539                         "Please look under Tools>Preferences>User Interface and\n"
1540                         "check which User Interface file you are using."), qstring_to_ucs4(name)));
1541                 return readUIFile(defaultUIFile, false);
1542         }
1543
1544         // Ensure that a file is read only once (prevents include loops)
1545         static QStringList uifiles;
1546         QString const uifile = toqstr(ui_path.absFilename());
1547         if (uifiles.contains(uifile)) {
1548                 if (!include) {
1549                         // We are reading again the top uifile so reset the safeguard:
1550                         uifiles.clear();
1551                         d->menus_.reset();
1552                         d->toolbars_.reset();
1553                 } else {
1554                         LYXERR(Debug::INIT, "UI file '" << name << "' has been read already. "
1555                                 << "Is this an include loop?");
1556                         return false;
1557                 }
1558         }
1559         uifiles.push_back(uifile);
1560
1561         LYXERR(Debug::INIT, "Found " << name << " in " << ui_path);
1562
1563         enum {
1564                 ui_menuset = 1,
1565                 ui_toolbars,
1566                 ui_toolbarset,
1567                 ui_include,
1568                 ui_last
1569         };
1570
1571         LexerKeyword uitags[] = {
1572                 { "include", ui_include },
1573                 { "menuset", ui_menuset },
1574                 { "toolbars", ui_toolbars },
1575                 { "toolbarset", ui_toolbarset }
1576         };
1577
1578         Lexer lex(uitags);
1579         lex.setFile(ui_path);
1580         if (!lex.isOK()) {
1581                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
1582                        << endl;
1583         }
1584
1585         if (lyxerr.debugging(Debug::PARSER))
1586                 lex.printTable(lyxerr);
1587
1588         // store which ui files define Toolbars
1589         static QStringList toolbar_uifiles;
1590
1591         while (lex.isOK()) {
1592                 switch (lex.lex()) {
1593                 case ui_include: {
1594                         lex.next(true);
1595                         QString const file = toqstr(lex.getString());
1596                         if (!readUIFile(file, true))
1597                                 return false;
1598                         break;
1599                 }
1600                 case ui_menuset:
1601                         d->menus_.read(lex);
1602                         break;
1603
1604                 case ui_toolbarset:
1605                         d->toolbars_.readToolbars(lex);
1606                         break;
1607
1608                 case ui_toolbars:
1609                         d->toolbars_.readToolbarSettings(lex);
1610                         toolbar_uifiles.push_back(uifile);
1611                         break;
1612
1613                 default:
1614                         if (!rtrim(lex.getString()).empty())
1615                                 lex.printError("LyX::ReadUIFile: "
1616                                                "Unknown menu tag: `$$Token'");
1617                         break;
1618                 }
1619         }
1620
1621         if (include)
1622                 return true;
1623
1624         QSettings settings;
1625         settings.beginGroup("ui_files");
1626         bool touched = false;
1627         for (int i = 0; i != uifiles.size(); ++i) {
1628                 QFileInfo fi(uifiles[i]);
1629                 QDateTime const date_value = fi.lastModified();
1630                 QString const name_key = QString::number(i);
1631                 // if an ui file which defines Toolbars has changed,
1632                 // we have to reset the settings
1633                 if (toolbar_uifiles.contains(uifiles[i])
1634                  && (!settings.contains(name_key)
1635                  || settings.value(name_key).toString() != uifiles[i]
1636                  || settings.value(name_key + "/date").toDateTime() != date_value)) {
1637                         touched = true;
1638                         settings.setValue(name_key, uifiles[i]);
1639                         settings.setValue(name_key + "/date", date_value);
1640                 }
1641         }
1642         settings.endGroup();
1643         if (touched)
1644                 settings.remove("views");
1645
1646         return true;
1647 }
1648
1649
1650 void GuiApplication::onLastWindowClosed()
1651 {
1652         if (d->global_menubar_)
1653                 d->global_menubar_->grabKeyboard();
1654 }
1655
1656
1657 ////////////////////////////////////////////////////////////////////////
1658 //
1659 // X11 specific stuff goes here...
1660
1661 #ifdef Q_WS_X11
1662 bool GuiApplication::x11EventFilter(XEvent * xev)
1663 {
1664         if (!current_view_)
1665                 return false;
1666
1667         switch (xev->type) {
1668         case SelectionRequest: {
1669                 if (xev->xselectionrequest.selection != XA_PRIMARY)
1670                         break;
1671                 LYXERR(Debug::SELECTION, "X requested selection.");
1672                 BufferView * bv = current_view_->currentBufferView();
1673                 if (bv) {
1674                         docstring const sel = bv->requestSelection();
1675                         if (!sel.empty())
1676                                 d->selection_.put(sel);
1677                 }
1678                 break;
1679         }
1680         case SelectionClear: {
1681                 if (xev->xselectionclear.selection != XA_PRIMARY)
1682                         break;
1683                 LYXERR(Debug::SELECTION, "Lost selection.");
1684                 BufferView * bv = current_view_->currentBufferView();
1685                 if (bv)
1686                         bv->clearSelection();
1687                 break;
1688         }
1689         }
1690         return false;
1691 }
1692 #endif
1693
1694 } // namespace frontend
1695
1696
1697 void hideDialogs(std::string const & name, Inset * inset)
1698 {
1699         if (theApp())
1700                 theApp()->hideDialogs(name, inset);
1701 }
1702
1703
1704 ////////////////////////////////////////////////////////////////////
1705 //
1706 // Font stuff
1707 //
1708 ////////////////////////////////////////////////////////////////////
1709
1710 frontend::FontLoader & theFontLoader()
1711 {
1712         LASSERT(frontend::guiApp, /**/);
1713         return frontend::guiApp->fontLoader();
1714 }
1715
1716
1717 frontend::FontMetrics const & theFontMetrics(Font const & f)
1718 {
1719         return theFontMetrics(f.fontInfo());
1720 }
1721
1722
1723 frontend::FontMetrics const & theFontMetrics(FontInfo const & f)
1724 {
1725         LASSERT(frontend::guiApp, /**/);
1726         return frontend::guiApp->fontLoader().metrics(f);
1727 }
1728
1729
1730 ////////////////////////////////////////////////////////////////////
1731 //
1732 // Misc stuff
1733 //
1734 ////////////////////////////////////////////////////////////////////
1735
1736 frontend::Clipboard & theClipboard()
1737 {
1738         LASSERT(frontend::guiApp, /**/);
1739         return frontend::guiApp->clipboard();
1740 }
1741
1742
1743 frontend::Selection & theSelection()
1744 {
1745         LASSERT(frontend::guiApp, /**/);
1746         return frontend::guiApp->selection();
1747 }
1748
1749
1750 } // namespace lyx
1751
1752 #include "moc_GuiApplication.cpp"