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