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