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