]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
b93375fcfebbba8b96d436de62b7aee9d4b0da64
[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 #ifdef Q_WS_MACX
899         d->global_menubar_->clear();
900         delete d->global_menubar_;
901         // Create the global default menubar which is shown for the dialogs
902         // and if no GuiView is visible.
903         d->global_menubar_ = new GlobalMenuBar();
904
905         // init the global menubar on Mac. This must be done after the session
906         // was recovered to know the "last files".
907         d->menus_.fillMenuBar(d->global_menubar_, 0, true);
908 #endif
909
910         QHash<int, GuiView *>::iterator it;
911         for (it = d->views_.begin(); it != d->views_.end(); ++it) {
912                 GuiView * gv = *it;
913                 gv->setLayoutDirection(layoutDirection());
914                 gv->resetDialogs();
915         }
916
917         dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
918 }
919
920
921 void GuiApplication::createView(int view_id)
922 {
923         createView(QString(), true, view_id);
924 }
925
926
927 void GuiApplication::createView(QString const & geometry_arg, bool autoShow,
928         int view_id)
929 {
930         // release the keyboard which might have been grabed by the global
931         // menubar on Mac to catch shortcuts even without any GuiView.
932         if (d->global_menubar_)
933                 d->global_menubar_->releaseKeyboard();
934
935         // create new view
936         int id = view_id;
937         if (id == 0) {
938                 while (d->views_.find(id) != d->views_.end())
939                         id++;
940         }
941         LYXERR(Debug::GUI, "About to create new window with ID " << id);
942         GuiView * view = new GuiView(id);
943         // register view
944         d->views_[id] = view;
945
946         if (autoShow) {
947                 view->show();
948                 setActiveWindow(view);
949         }
950
951         if (!geometry_arg.isEmpty()) {
952 #ifdef Q_WS_WIN
953                 int x, y;
954                 int w, h;
955                 QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)([+-][0-9]*)){0,1}" );
956                 re.indexIn(geometry_arg);
957                 w = re.cap(1).toInt();
958                 h = re.cap(2).toInt();
959                 x = re.cap(3).toInt();
960                 y = re.cap(4).toInt();
961                 view->setGeometry(x, y, w, h);
962 #endif
963         }
964         view->setFocus();
965         setCurrentView(view);
966 }
967
968
969 Clipboard & GuiApplication::clipboard()
970 {
971         return d->clipboard_;
972 }
973
974
975 Selection & GuiApplication::selection()
976 {
977         return d->selection_;
978 }
979
980
981 FontLoader & GuiApplication::fontLoader() 
982 {
983         return d->font_loader_;
984 }
985
986
987 Toolbars const & GuiApplication::toolbars() const 
988 {
989         return d->toolbars_;
990 }
991
992
993 Toolbars & GuiApplication::toolbars()
994 {
995         return d->toolbars_; 
996 }
997
998
999 Menus const & GuiApplication::menus() const 
1000 {
1001         return d->menus_;
1002 }
1003
1004
1005 Menus & GuiApplication::menus()
1006 {
1007         return d->menus_; 
1008 }
1009
1010
1011 QList<int> GuiApplication::viewIds() const
1012 {
1013         return d->views_.keys();
1014 }
1015
1016
1017 ColorCache & GuiApplication::colorCache()
1018 {
1019         return d->color_cache_;
1020 }
1021
1022
1023 int GuiApplication::exec()
1024 {
1025         QTimer::singleShot(1, this, SLOT(execBatchCommands()));
1026         return QApplication::exec();
1027 }
1028
1029
1030 void GuiApplication::exit(int status)
1031 {
1032         QApplication::exit(status);
1033 }
1034
1035
1036 void GuiApplication::setGuiLanguage()
1037 {
1038         // Set the language defined by the user.
1039         setRcGuiLanguage();
1040
1041         QString const default_language = toqstr(Messages::defaultLanguage());
1042         LYXERR(Debug::LOCALE, "Tring to set default locale to: " << default_language);
1043         QLocale const default_locale(default_language);
1044         QLocale::setDefault(default_locale);
1045
1046         // install translation file for Qt built-in dialogs
1047         QString const language_name = QString("qt_") + default_locale.name();
1048
1049         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN). 
1050         // Short-named translator can be loaded from a long name, but not the
1051         // opposite. Therefore, long name should be used without truncation.
1052         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
1053         if (!d->qt_trans_.load(language_name,
1054                         QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
1055                 LYXERR(Debug::LOCALE, "Could not find  Qt translations for locale "
1056                         << language_name);
1057         } else {
1058                 LYXERR(Debug::LOCALE, "Successfully installed Qt translations for locale "
1059                         << language_name);
1060         }
1061
1062         switch (default_locale.language()) {
1063         case QLocale::Arabic :
1064         case QLocale::Hebrew :
1065         case QLocale::Persian :
1066         case QLocale::Urdu :
1067         setLayoutDirection(Qt::RightToLeft);
1068                 break;
1069         default:
1070         setLayoutDirection(Qt::LeftToRight);
1071         }
1072 }
1073
1074
1075 void GuiApplication::execBatchCommands()
1076 {
1077         setGuiLanguage();
1078
1079         // Read menus
1080         if (!readUIFile(toqstr(lyxrc.ui_file)))
1081                 // Gives some error box here.
1082                 return;
1083
1084         // init the global menubar on Mac. This must be done after the session
1085         // was recovered to know the "last files".
1086         if (d->global_menubar_)
1087                 d->menus_.fillMenuBar(d->global_menubar_, 0, true);
1088
1089         lyx::execBatchCommands();
1090 }
1091
1092 QAbstractItemModel * GuiApplication::languageModel()
1093 {
1094         if (d->language_model_)
1095                 return d->language_model_;
1096
1097         QStandardItemModel * lang_model = new QStandardItemModel(this);
1098         lang_model->insertColumns(0, 1);
1099         int current_row;
1100         Languages::const_iterator it = languages.begin();
1101         Languages::const_iterator end = languages.end();
1102         for (; it != end; ++it) {
1103                 current_row = lang_model->rowCount();
1104                 lang_model->insertRows(current_row, 1);
1105                 QModelIndex item = lang_model->index(current_row, 0);
1106                 lang_model->setData(item, qt_(it->second.display()), Qt::DisplayRole);
1107                 lang_model->setData(item, toqstr(it->second.lang()), Qt::UserRole);
1108         }
1109         d->language_model_ = new QSortFilterProxyModel(this);
1110         d->language_model_->setSourceModel(lang_model);
1111 #if QT_VERSION >= 0x040300
1112         d->language_model_->setSortLocaleAware(true);
1113 #endif
1114         return d->language_model_;
1115 }
1116
1117
1118 void GuiApplication::restoreGuiSession()
1119 {
1120         if (!lyxrc.load_session)
1121                 return;
1122
1123         Session & session = theSession();
1124         vector<FileName> const & lastopened = session.lastOpened().getfiles();
1125         // do not add to the lastfile list since these files are restored from
1126         // last session, and should be already there (regular files), or should
1127         // not be added at all (help files).
1128         for_each(lastopened.begin(), lastopened.end(),
1129                 bind(&GuiView::loadDocument, current_view_, _1, false));
1130
1131         // clear this list to save a few bytes of RAM
1132         session.lastOpened().clear();
1133 }
1134
1135
1136 QString const GuiApplication::romanFontName()
1137 {
1138         QFont font;
1139         font.setKerning(false);
1140         font.setStyleHint(QFont::Serif);
1141         font.setFamily("serif");
1142
1143         return QFontInfo(font).family();
1144 }
1145
1146
1147 QString const GuiApplication::sansFontName()
1148 {
1149         QFont font;
1150         font.setKerning(false);
1151         font.setStyleHint(QFont::SansSerif);
1152         font.setFamily("sans");
1153
1154         return QFontInfo(font).family();
1155 }
1156
1157
1158 QString const GuiApplication::typewriterFontName()
1159 {
1160         QFont font;
1161         font.setKerning(false);
1162         font.setStyleHint(QFont::TypeWriter);
1163         font.setFamily("monospace");
1164
1165         return QFontInfo(font).family();
1166 }
1167
1168
1169 void GuiApplication::handleRegularEvents()
1170 {
1171         ForkedCallsController::handleCompletedProcesses();
1172 }
1173
1174
1175 bool GuiApplication::event(QEvent * e)
1176 {
1177         switch(e->type()) {
1178         case QEvent::FileOpen: {
1179                 // Open a file; this happens only on Mac OS X for now
1180                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
1181                 lyx::dispatch(FuncRequest(LFUN_FILE_OPEN,
1182                         qstring_to_ucs4(foe->file())));
1183                 e->accept();
1184                 return true;
1185         }
1186         default:
1187                 return QApplication::event(e);
1188         }
1189 }
1190
1191
1192 bool GuiApplication::notify(QObject * receiver, QEvent * event)
1193 {
1194         try {
1195                 return QApplication::notify(receiver, event);
1196         }
1197         catch (ExceptionMessage const & e) {
1198                 switch(e.type_) { 
1199                 case ErrorException:
1200                         emergencyCleanup();
1201                         setQuitOnLastWindowClosed(false);
1202                         closeAllViews();
1203                         Alert::error(e.title_, e.details_);
1204 #ifndef NDEBUG
1205                         // Properly crash in debug mode in order to get a useful backtrace.
1206                         abort();
1207 #endif
1208                         // In release mode, try to exit gracefully.
1209                         this->exit(1);
1210
1211                 case BufferException: {
1212                         Buffer * buf = current_view_->buffer();
1213                         docstring details = e.details_ + '\n';
1214                         details += theBufferList().emergencyWrite(buf);
1215                         theBufferList().release(buf);
1216                         details += "\n" + _("The current document was closed.");
1217                         Alert::error(e.title_, details);
1218                         return false;
1219                 }
1220                 case WarningException:
1221                         Alert::warning(e.title_, e.details_);
1222                         return false;
1223                 }
1224         }
1225         catch (exception const & e) {
1226                 docstring s = _("LyX has caught an exception, it will now "
1227                         "attempt to save all unsaved documents and exit."
1228                         "\n\nException: ");
1229                 s += from_ascii(e.what());
1230                 Alert::error(_("Software exception Detected"), s);
1231                 lyx_exit(1);
1232         }
1233         catch (...) {
1234                 docstring s = _("LyX has caught some really weird exception, it will "
1235                         "now attempt to save all unsaved documents and exit.");
1236                 Alert::error(_("Software exception Detected"), s);
1237                 lyx_exit(1);
1238         }
1239
1240         return false;
1241 }
1242
1243
1244 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
1245 {
1246         QColor const & qcol = d->color_cache_.get(col);
1247         if (!qcol.isValid()) {
1248                 rgbcol.r = 0;
1249                 rgbcol.g = 0;
1250                 rgbcol.b = 0;
1251                 return false;
1252         }
1253         rgbcol.r = qcol.red();
1254         rgbcol.g = qcol.green();
1255         rgbcol.b = qcol.blue();
1256         return true;
1257 }
1258
1259
1260 string const GuiApplication::hexName(ColorCode col)
1261 {
1262         return ltrim(fromqstr(d->color_cache_.get(col).name()), "#");
1263 }
1264
1265
1266 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
1267 {
1268         SocketNotifier * sn = new SocketNotifier(this, fd, func);
1269         d->socket_notifiers_[fd] = sn;
1270         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
1271 }
1272
1273
1274 void GuiApplication::socketDataReceived(int fd)
1275 {
1276         d->socket_notifiers_[fd]->func_();
1277 }
1278
1279
1280 void GuiApplication::unregisterSocketCallback(int fd)
1281 {
1282         d->socket_notifiers_.take(fd)->setEnabled(false);
1283 }
1284
1285
1286 void GuiApplication::commitData(QSessionManager & sm)
1287 {
1288         /// The implementation is required to avoid an application exit
1289         /// when session state save is triggered by session manager.
1290         /// The default implementation sends a close event to all
1291         /// visible top level widgets when session managment allows
1292         /// interaction.
1293         /// We are changing that to close all wiew one by one.
1294         /// FIXME: verify if the default implementation is enough now.
1295         if (sm.allowsInteraction() && !closeAllViews())
1296                 sm.cancel();
1297 }
1298
1299
1300 void GuiApplication::unregisterView(GuiView * gv)
1301 {
1302         LASSERT(d->views_[gv->id()] == gv, /**/);
1303         d->views_.remove(gv->id());
1304         if (current_view_ == gv) {
1305                 current_view_ = 0;
1306                 theLyXFunc().setLyXView(0);
1307         }
1308 }
1309
1310
1311 bool GuiApplication::closeAllViews()
1312 {
1313         if (d->views_.empty())
1314                 return true;
1315
1316         QList<GuiView *> views = d->views_.values();
1317         foreach (GuiView * view, views) {
1318                 if (!view->close())
1319                         return false;
1320         }
1321
1322         d->views_.clear();
1323         return true;
1324 }
1325
1326
1327 GuiView & GuiApplication::view(int id) const
1328 {
1329         LASSERT(d->views_.contains(id), /**/);
1330         return *d->views_.value(id);
1331 }
1332
1333
1334 void GuiApplication::hideDialogs(string const & name, Inset * inset) const
1335 {
1336         QList<GuiView *> views = d->views_.values();
1337         foreach (GuiView * view, views)
1338                 view->hideDialog(name, inset);
1339 }
1340
1341
1342 Buffer const * GuiApplication::updateInset(Inset const * inset) const
1343 {
1344         Buffer const * buffer_ = 0;
1345         QHash<int, GuiView *>::iterator end = d->views_.end();
1346         for (QHash<int, GuiView *>::iterator it = d->views_.begin(); it != end; ++it) {
1347                 if (Buffer const * ptr = (*it)->updateInset(inset))
1348                         buffer_ = ptr;
1349         }
1350         return buffer_;
1351 }
1352
1353
1354 bool GuiApplication::searchMenu(FuncRequest const & func,
1355         docstring_list & names) const
1356 {
1357         return d->menus_.searchMenu(func, names);
1358 }
1359
1360
1361 bool GuiApplication::readUIFile(QString const & name, bool include)
1362 {
1363         enum {
1364                 ui_menuset = 1,
1365                 ui_toolbars,
1366                 ui_toolbarset,
1367                 ui_include,
1368                 ui_last
1369         };
1370
1371         LexerKeyword uitags[] = {
1372                 { "include", ui_include },
1373                 { "menuset", ui_menuset },
1374                 { "toolbars", ui_toolbars },
1375                 { "toolbarset", ui_toolbarset }
1376         };
1377
1378         // Ensure that a file is read only once (prevents include loops)
1379         static QStringList uifiles;
1380         if (uifiles.contains(name)) {
1381                 if (!include) {
1382                         // We are reading again the top uifile so reset the safeguard:
1383                         uifiles.clear();
1384                         d->menus_.reset();
1385                         d->toolbars_.reset();
1386                 } else {
1387                         LYXERR(Debug::INIT, "UI file '" << name << "' has been read already. "
1388                                 << "Is this an include loop?");
1389                         return false;
1390                 }
1391         }
1392
1393         LYXERR(Debug::INIT, "About to read " << name << "...");
1394
1395         FileName ui_path;
1396         if (include) {
1397                 ui_path = libFileSearch("ui", name, "inc");
1398                 if (ui_path.empty())
1399                         ui_path = libFileSearch("ui", changeExtension(name, "inc"));
1400         } else {
1401                 ui_path = libFileSearch("ui", name, "ui");
1402         }
1403
1404         if (ui_path.empty()) {
1405                 LYXERR(Debug::INIT, "Could not find " << name);
1406                 Alert::warning(_("Could not find UI definition file"),
1407                                bformat(_("Error while reading the configuration file\n%1$s.\n"
1408                                    "Please check your installation."), qstring_to_ucs4(name)));
1409                 return false;
1410         }
1411
1412         uifiles.push_back(name);
1413
1414         LYXERR(Debug::INIT, "Found " << name << " in " << ui_path);
1415         Lexer lex(uitags);
1416         lex.setFile(ui_path);
1417         if (!lex.isOK()) {
1418                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
1419                        << endl;
1420         }
1421
1422         if (lyxerr.debugging(Debug::PARSER))
1423                 lex.printTable(lyxerr);
1424
1425         while (lex.isOK()) {
1426                 switch (lex.lex()) {
1427                 case ui_include: {
1428                         lex.next(true);
1429                         QString const file = toqstr(lex.getString());
1430                         if (!readUIFile(file, true))
1431                                 return false;
1432                         break;
1433                 }
1434                 case ui_menuset:
1435                         d->menus_.read(lex);
1436                         break;
1437
1438                 case ui_toolbarset:
1439                         d->toolbars_.readToolbars(lex);
1440                         break;
1441
1442                 case ui_toolbars:
1443                         d->toolbars_.readToolbarSettings(lex);
1444                         break;
1445
1446                 default:
1447                         if (!rtrim(lex.getString()).empty())
1448                                 lex.printError("LyX::ReadUIFile: "
1449                                                "Unknown menu tag: `$$Token'");
1450                         break;
1451                 }
1452         }
1453         return true;
1454 }
1455
1456
1457 void GuiApplication::onLastWindowClosed()
1458 {
1459         if (d->global_menubar_)
1460                 d->global_menubar_->grabKeyboard();
1461 }
1462
1463
1464 ////////////////////////////////////////////////////////////////////////
1465 //
1466 // X11 specific stuff goes here...
1467
1468 #ifdef Q_WS_X11
1469 bool GuiApplication::x11EventFilter(XEvent * xev)
1470 {
1471         if (!current_view_)
1472                 return false;
1473
1474         switch (xev->type) {
1475         case SelectionRequest: {
1476                 if (xev->xselectionrequest.selection != XA_PRIMARY)
1477                         break;
1478                 LYXERR(Debug::SELECTION, "X requested selection.");
1479                 BufferView * bv = current_view_->view();
1480                 if (bv) {
1481                         docstring const sel = bv->requestSelection();
1482                         if (!sel.empty())
1483                                 d->selection_.put(sel);
1484                 }
1485                 break;
1486         }
1487         case SelectionClear: {
1488                 if (xev->xselectionclear.selection != XA_PRIMARY)
1489                         break;
1490                 LYXERR(Debug::SELECTION, "Lost selection.");
1491                 BufferView * bv = current_view_->view();
1492                 if (bv)
1493                         bv->clearSelection();
1494                 break;
1495         }
1496         }
1497         return false;
1498 }
1499 #endif
1500
1501 } // namespace frontend
1502
1503
1504 void hideDialogs(std::string const & name, Inset * inset)
1505 {
1506         if (theApp())
1507                 theApp()->hideDialogs(name, inset);
1508 }
1509
1510
1511 ////////////////////////////////////////////////////////////////////
1512 //
1513 // Font stuff
1514 //
1515 ////////////////////////////////////////////////////////////////////
1516
1517 frontend::FontLoader & theFontLoader()
1518 {
1519         LASSERT(frontend::guiApp, /**/);
1520         return frontend::guiApp->fontLoader();
1521 }
1522
1523
1524 frontend::FontMetrics const & theFontMetrics(Font const & f)
1525 {
1526         return theFontMetrics(f.fontInfo());
1527 }
1528
1529
1530 frontend::FontMetrics const & theFontMetrics(FontInfo const & f)
1531 {
1532         LASSERT(frontend::guiApp, /**/);
1533         return frontend::guiApp->fontLoader().metrics(f);
1534 }
1535
1536
1537 ////////////////////////////////////////////////////////////////////
1538 //
1539 // Misc stuff
1540 //
1541 ////////////////////////////////////////////////////////////////////
1542
1543 frontend::Clipboard & theClipboard()
1544 {
1545         LASSERT(frontend::guiApp, /**/);
1546         return frontend::guiApp->clipboard();
1547 }
1548
1549
1550 frontend::Selection & theSelection()
1551 {
1552         LASSERT(frontend::guiApp, /**/);
1553         return frontend::guiApp->selection();
1554 }
1555
1556 } // namespace lyx
1557
1558 #include "GuiApplication_moc.cpp"