]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
* comment
[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 "qt_helpers.h"
18 #include "GuiImage.h"
19 #include "GuiKeySymbol.h"
20 #include "GuiView.h"
21
22 #include "frontends/alert.h"
23 #include "frontends/Application.h"
24 #include "frontends/FontLoader.h"
25 #include "frontends/FontMetrics.h"
26
27 #include "Buffer.h"
28 #include "BufferList.h"
29 #include "BufferView.h"
30 #include "Font.h"
31 #include "FuncRequest.h"
32 #include "FuncStatus.h"
33 #include "LyX.h"
34 #include "LyXFunc.h"
35 #include "LyXRC.h"
36 #include "Session.h"
37 #include "version.h"
38
39 #include "support/debug.h"
40 #include "support/ExceptionMessage.h"
41 #include "support/FileName.h"
42 #include "support/ForkedCalls.h"
43 #include "support/gettext.h"
44 #include "support/lstrings.h"
45 #include "support/os.h"
46 #include "support/Package.h"
47
48 #include <QApplication>
49 #include <QClipboard>
50 #include <QEventLoop>
51 #include <QFileOpenEvent>
52 #include <QLocale>
53 #include <QLibraryInfo>
54 #include <QMenuBar>
55 #include <QPixmapCache>
56 #include <QRegExp>
57 #include <QSessionManager>
58 #include <QSocketNotifier>
59 #include <QTextCodec>
60 #include <QTimer>
61 #include <QTranslator>
62 #include <QWidget>
63
64 #ifdef Q_WS_X11
65 #include <X11/Xatom.h>
66 #include <X11/Xlib.h>
67 #undef CursorShape
68 #undef None
69 #endif
70
71 #include <boost/bind.hpp>
72
73 #include <exception>
74
75 using namespace std;
76 using namespace lyx::support;
77
78 namespace lyx {
79
80 frontend::Application * createApplication(int & argc, char * argv[])
81 {
82         return new frontend::GuiApplication(argc, argv);
83 }
84
85
86 namespace frontend {
87
88 class SocketNotifier : public QSocketNotifier
89 {
90 public:
91         /// connect a connection notification from the LyXServerSocket
92         SocketNotifier(QObject * parent, int fd, Application::SocketCallback func)
93                 : QSocketNotifier(fd, QSocketNotifier::Read, parent), func_(func)
94         {}
95
96 public:
97         /// The callback function
98         Application::SocketCallback func_;
99 };
100
101
102 ////////////////////////////////////////////////////////////////////////
103 // Mac specific stuff goes here...
104
105 class MenuTranslator : public QTranslator
106 {
107 public:
108         MenuTranslator(QObject * parent)
109                 : QTranslator(parent)
110         {}
111
112         QString translate(const char * /*context*/, 
113           const char * sourceText, 
114           const char * /*comment*/ = 0) 
115         {
116                 string const s = sourceText;
117                 if (s == N_("About %1") || s == N_("Preferences") 
118                                 || s == N_("Reconfigure") || s == N_("Quit %1"))
119                         return qt_(s);
120                 else 
121                         return QString();
122         }
123 };
124
125 class GlobalMenuBar : public QMenuBar
126 {
127 public:
128         ///
129         GlobalMenuBar() : QMenuBar(0) {}
130         
131         ///
132         bool event(QEvent * e)
133         {
134                 if (e->type() == QEvent::ShortcutOverride) {
135                         //          && activeWindow() == 0) {
136                         QKeyEvent * ke = static_cast<QKeyEvent*>(e);
137                         KeySymbol sym;
138                         setKeySymbol(&sym, ke);
139                         theLyXFunc().processKeySym(sym, q_key_state(ke->modifiers()));
140                         e->accept();
141                         return true;
142                 }
143                 return false;
144         }
145 };
146
147 ///////////////////////////////////////////////////////////////
148 // You can find more platform specific stuff
149 // at the end of this file...
150 ///////////////////////////////////////////////////////////////
151
152
153 GuiApplication * guiApp;
154
155
156 GuiApplication::GuiApplication(int & argc, char ** argv)
157         : QApplication(argc, argv), Application(), current_view_(0), global_menubar_(0)
158 {
159         QString app_name = "LyX";
160         QCoreApplication::setOrganizationName(app_name);
161         QCoreApplication::setOrganizationDomain("lyx.org");
162         QCoreApplication::setApplicationName(app_name + "-" + lyx_version);
163
164         // FIXME: quitOnLastWindowClosed is true by default. We should have a
165         // lyxrc setting for this in order to let the application stay resident.
166         // But then we need some kind of dock icon, at least on Windows.
167         /*
168         if (lyxrc.quit_on_last_window_closed)
169                 setQuitOnLastWindowClosed(false);
170         */
171 #ifdef Q_WS_MAC
172         // FIXME: Do we need a lyxrc setting for this on Mac? This behaviour
173         // seems to be the default case for applications like LyX.
174         setQuitOnLastWindowClosed(false);
175 #endif
176         
177 #ifdef Q_WS_X11
178         // doubleClickInterval() is 400 ms on X11 which is just too long.
179         // On Windows and Mac OS X, the operating system's value is used.
180         // On Microsoft Windows, calling this function sets the double
181         // click interval for all applications. So we don't!
182         QApplication::setDoubleClickInterval(300);
183 #endif
184
185         // install translation file for Qt built-in dialogs
186         QString language_name = QString("qt_") + QLocale::system().name();
187         
188         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN). 
189         // Short-named translator can be loaded from a long name, but not the
190         // opposite. Therefore, long name should be used without truncation.
191         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
192         if (qt_trans_.load(language_name,
193                 QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
194         {
195                 installTranslator(&qt_trans_);
196                 // even if the language calls for RtL, don't do that
197                 setLayoutDirection(Qt::LeftToRight);
198                 LYXERR(Debug::GUI, "Successfully installed Qt translations for locale "
199                         << fromqstr(language_name));
200         } else
201                 LYXERR(Debug::GUI, "Could not find  Qt translations for locale "
202                         << fromqstr(language_name));
203
204 #ifdef Q_WS_MACX
205         // This allows to translate the strings that appear in the LyX menu.
206         addMenuTranslator();
207 #endif
208         connect(this, SIGNAL(lastWindowClosed()), this, SLOT(onLastWindowClosed()));
209
210         using namespace lyx::graphics;
211
212         Image::newImage = boost::bind(&GuiImage::newImage);
213         Image::loadableFormats = boost::bind(&GuiImage::loadableFormats);
214
215         // needs to be done before reading lyxrc
216         QWidget w;
217         lyxrc.dpi = (w.logicalDpiX() + w.logicalDpiY()) / 2;
218
219         guiApp = this;
220
221         // Set the cache to 5120 kilobytes which corresponds to screen size of
222         // 1280 by 1024 pixels with a color depth of 32 bits.
223         QPixmapCache::setCacheLimit(5120);
224
225         // Initialize RC Fonts
226         if (lyxrc.roman_font_name.empty())
227                 lyxrc.roman_font_name = fromqstr(romanFontName());
228
229         if (lyxrc.sans_font_name.empty())
230                 lyxrc.sans_font_name = fromqstr(sansFontName());
231
232         if (lyxrc.typewriter_font_name.empty())
233                 lyxrc.typewriter_font_name = fromqstr(typewriterFontName());
234
235         general_timer_.setInterval(500);
236         connect(&general_timer_, SIGNAL(timeout()),
237                 this, SLOT(handleRegularEvents()));
238         general_timer_.start();
239         
240 #ifdef Q_WS_MACX
241         if (global_menubar_ == 0) {
242                 // Create the global default menubar which is shown for the dialogs
243                 // and if no GuiView is visible.
244                 global_menubar_ = new GlobalMenuBar();
245         }
246 #endif  
247 }
248
249
250 GuiApplication::~GuiApplication()
251 {
252         socket_notifiers_.clear();
253 }
254
255
256 FuncStatus GuiApplication::getStatus(FuncRequest const & cmd)
257 {
258         FuncStatus flag;
259         bool enable = true;
260
261         switch(cmd.action) {
262
263         case LFUN_WINDOW_CLOSE:
264                 enable = view_ids_.size() > 0;
265                 break;
266
267         default:
268                 if (!current_view_) {
269                         enable = false;
270                         break;
271                 }
272         }
273
274         if (!enable)
275                 flag.enabled(false);
276
277         return flag;
278 }
279
280         
281 bool GuiApplication::dispatch(FuncRequest const & cmd)
282 {
283         switch(cmd.action) {
284
285         case LFUN_WINDOW_NEW:
286                 createView(toqstr(cmd.argument()));
287                 break;
288
289         case LFUN_WINDOW_CLOSE:
290                 // update bookmark pit of the current buffer before window close
291                 for (size_t i = 0; i < LyX::ref().session().bookmarks().size(); ++i)
292                         theLyXFunc().gotoBookmark(i+1, false, false);
293                 current_view_->close();
294                 break;
295
296         case LFUN_LYX_QUIT:
297                 // quitting is triggered by the gui code
298                 // (leaving the event loop).
299                 current_view_->message(from_utf8(N_("Exiting.")));
300                 if (closeAllViews())
301                         quit();
302                 break;
303
304         case LFUN_SCREEN_FONT_UPDATE: {
305                 // handle the screen font changes.
306                 font_loader_.update();
307                 // Backup current_view_
308                 GuiView * view = current_view_;
309                 // Set current_view_ to zero to forbid GuiWorkArea::redraw()
310                 // to skip the refresh.
311                 current_view_ = 0;
312                 BufferList::iterator it = theBufferList().begin();
313                 BufferList::iterator const end = theBufferList().end();
314                 for (; it != end; ++it)
315                         (*it)->changed();
316                 // Restore current_view_
317                 current_view_ = view;
318                 break;
319         }
320
321         case LFUN_BUFFER_NEW:
322                 if (viewCount() == 0
323                     || (!lyxrc.open_buffers_in_tabs && current_view_->buffer() != 0))
324                         createView();
325                 current_view_->newDocument(to_utf8(cmd.argument()), false);
326                 break;
327
328         case LFUN_BUFFER_NEW_TEMPLATE:
329                 if (viewCount() == 0 
330                     || (!lyxrc.open_buffers_in_tabs && current_view_->buffer() != 0)) {
331                         createView();
332                         current_view_->newDocument(to_utf8(cmd.argument()), true);
333                         if (!current_view_->buffer())
334                                 current_view_->close();
335                 } else
336                         current_view_->newDocument(to_utf8(cmd.argument()), true);
337                 break;
338
339         case LFUN_FILE_OPEN:
340                 if (viewCount() == 0
341                     || (!lyxrc.open_buffers_in_tabs && current_view_->buffer() != 0)) {
342                         createView();
343                         current_view_->openDocument(to_utf8(cmd.argument()));
344                         if (!current_view_->buffer())
345                                 current_view_->close();
346                 } else
347                         current_view_->openDocument(to_utf8(cmd.argument()));
348                 break;
349
350         default:
351                 // Notify the caller that the action has not been dispatched.
352                 return false;
353         }
354
355         // The action has been dispatched.
356         return true;
357 }
358
359
360 void GuiApplication::resetGui()
361 {
362         map<int, GuiView *>::iterator it;
363         for (it = views_.begin(); it != views_.end(); ++it)
364                 it->second->resetDialogs();
365
366         dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
367 }
368
369
370 static void updateIds(map<int, GuiView *> const & stdmap, vector<int> & ids)
371 {
372         ids.clear();
373         map<int, GuiView *>::const_iterator it;
374         for (it = stdmap.begin(); it != stdmap.end(); ++it)
375                 ids.push_back(it->first);
376 }
377
378
379 void GuiApplication::createView(QString const & geometry_arg)
380 {
381         // release the keyboard which might have been grabed by the global
382         // menubar on Mac to catch shortcuts even without any GuiView.
383         if (global_menubar_)
384                 global_menubar_->releaseKeyboard();
385
386         // create new view
387         updateIds(views_, view_ids_);
388         int id = 0;
389         while (views_.find(id) != views_.end())
390                 id++;
391         GuiView * view = new GuiView(id);
392         
393         // copy the icon size from old view
394         if (viewCount() > 0)
395                 view->setIconSize(current_view_->iconSize());
396
397         // register view
398         views_[id] = view;
399         updateIds(views_, view_ids_);
400
401         view->show();
402         if (!geometry_arg.isEmpty()) {
403 #ifdef Q_WS_WIN
404                 int x, y;
405                 int w, h;
406                 QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)([+-][0-9]*)){0,1}" );
407                 re.indexIn(geometry_arg);
408                 w = re.cap(1).toInt();
409                 h = re.cap(2).toInt();
410                 x = re.cap(3).toInt();
411                 y = re.cap(4).toInt();
412                 view->setGeometry(x, y, w, h);
413 #endif
414         }
415         view->setFocus();
416         setActiveWindow(view);
417         setCurrentView(*view);
418 }
419
420
421
422
423 Clipboard & GuiApplication::clipboard()
424 {
425         return clipboard_;
426 }
427
428
429 Selection & GuiApplication::selection()
430 {
431         return selection_;
432 }
433
434
435 int GuiApplication::exec()
436 {
437         QTimer::singleShot(1, this, SLOT(execBatchCommands()));
438         return QApplication::exec();
439 }
440
441
442 void GuiApplication::exit(int status)
443 {
444         QApplication::exit(status);
445 }
446
447
448 void GuiApplication::execBatchCommands()
449 {
450         LyX::ref().execBatchCommands();
451 }
452
453
454 void GuiApplication::restoreGuiSession()
455 {
456         if (!lyxrc.load_session)
457                 return;
458
459         Session & session = LyX::ref().session();
460         vector<FileName> const & lastopened = session.lastOpened().getfiles();
461         // do not add to the lastfile list since these files are restored from
462         // last session, and should be already there (regular files), or should
463         // not be added at all (help files).
464         for_each(lastopened.begin(), lastopened.end(),
465                 bind(&GuiView::loadDocument, current_view_, _1, false));
466
467         // clear this list to save a few bytes of RAM
468         session.lastOpened().clear();
469 }
470
471
472 QString const GuiApplication::romanFontName()
473 {
474         QFont font;
475         font.setKerning(false);
476         font.setStyleHint(QFont::Serif);
477         font.setFamily("serif");
478
479         return QFontInfo(font).family();
480 }
481
482
483 QString const GuiApplication::sansFontName()
484 {
485         QFont font;
486         font.setKerning(false);
487         font.setStyleHint(QFont::SansSerif);
488         font.setFamily("sans");
489
490         return QFontInfo(font).family();
491 }
492
493
494 QString const GuiApplication::typewriterFontName()
495 {
496         QFont font;
497         font.setKerning(false);
498         font.setStyleHint(QFont::TypeWriter);
499         font.setFamily("monospace");
500
501         return QFontInfo(font).family();
502 }
503
504
505 void GuiApplication::handleRegularEvents()
506 {
507         ForkedCallsController::handleCompletedProcesses();
508 }
509
510
511 bool GuiApplication::event(QEvent * e)
512 {
513         switch(e->type()) {
514         case QEvent::FileOpen: {
515                 // Open a file; this happens only on Mac OS X for now
516                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
517
518                 if (!current_view_ || !current_view_->view())
519                         // The application is not properly initialized yet.
520                         // So we acknowledge the event and delay the file opening
521                         // until LyX is ready.
522                         // FIXME UNICODE: FileName accept an utf8 encoded string.
523                         LyX::ref().addFileToLoad(fromqstr(foe->file()));
524                 else
525                         lyx::dispatch(FuncRequest(LFUN_FILE_OPEN,
526                                 qstring_to_ucs4(foe->file())));
527
528                 e->accept();
529                 return true;
530         }
531         default:
532                 return QApplication::event(e);
533         }
534 }
535
536
537 bool GuiApplication::notify(QObject * receiver, QEvent * event)
538 {
539         try {
540                 return QApplication::notify(receiver, event);
541         }
542         catch (ExceptionMessage const & e) {
543                 switch(e.type_) { 
544                 case ErrorException:
545                         LyX::cref().emergencyCleanup();
546                         setQuitOnLastWindowClosed(false);
547                         closeAllViews();
548                         Alert::error(e.title_, e.details_);
549 #ifndef NDEBUG
550                         // Properly crash in debug mode in order to get a useful backtrace.
551                         abort();
552 #endif
553                         // In release mode, try to exit gracefully.
554                         this->exit(1);
555
556                 case BufferException: {
557                         Buffer * buf = current_view_->buffer();
558                         docstring details = e.details_ + '\n';
559                         details += theBufferList().emergencyWrite(buf);
560                         theBufferList().release(buf);
561                         details += _("\nThe current document was closed.");
562                         Alert::error(e.title_, details);
563                         return false;
564                 }
565                 case WarningException:
566                         Alert::warning(e.title_, e.details_);
567                         return false;
568                 };
569         }
570         catch (exception const & e) {
571                 docstring s = _("LyX has caught an exception, it will now "
572                         "attempt to save all unsaved documents and exit."
573                         "\n\nException: ");
574                 s += from_ascii(e.what());
575                 Alert::error(_("Software exception Detected"), s);
576                 LyX::cref().exit(1);
577         }
578         catch (...) {
579                 docstring s = _("LyX has caught some really weird exception, it will "
580                         "now attempt to save all unsaved documents and exit.");
581                 Alert::error(_("Software exception Detected"), s);
582                 LyX::cref().exit(1);
583         }
584
585         return false;
586 }
587
588
589 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
590 {
591         QColor const & qcol = color_cache_.get(col);
592         if (!qcol.isValid()) {
593                 rgbcol.r = 0;
594                 rgbcol.g = 0;
595                 rgbcol.b = 0;
596                 return false;
597         }
598         rgbcol.r = qcol.red();
599         rgbcol.g = qcol.green();
600         rgbcol.b = qcol.blue();
601         return true;
602 }
603
604
605 string const GuiApplication::hexName(ColorCode col)
606 {
607         return ltrim(fromqstr(color_cache_.get(col).name()), "#");
608 }
609
610
611 void GuiApplication::updateColor(ColorCode)
612 {
613         // FIXME: Bleh, can't we just clear them all at once ?
614         color_cache_.clear();
615 }
616
617
618 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
619 {
620         SocketNotifier * sn = new SocketNotifier(this, fd, func);
621         socket_notifiers_[fd] = sn;
622         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
623 }
624
625
626 void GuiApplication::socketDataReceived(int fd)
627 {
628         socket_notifiers_[fd]->func_();
629 }
630
631
632 void GuiApplication::unregisterSocketCallback(int fd)
633 {
634         socket_notifiers_.erase(fd);
635 }
636
637
638 void GuiApplication::commitData(QSessionManager & sm)
639 {
640         /// The implementation is required to avoid an application exit
641         /// when session state save is triggered by session manager.
642         /// The default implementation sends a close event to all
643         /// visible top level widgets when session managment allows
644         /// interaction.
645         /// We are changing that to close all wiew one by one.
646         /// FIXME: verify if the default implementation is enough now.
647         if (sm.allowsInteraction() && !closeAllViews())
648                 sm.cancel();
649 }
650
651
652 void GuiApplication::addMenuTranslator()
653 {
654         installTranslator(new MenuTranslator(this));
655 }
656
657
658 bool GuiApplication::unregisterView(int id)
659 {
660         updateIds(views_, view_ids_);
661         BOOST_ASSERT(views_.find(id) != views_.end());
662         BOOST_ASSERT(views_[id]);
663
664         map<int, GuiView *>::iterator it;
665         for (it = views_.begin(); it != views_.end(); ++it) {
666                 if (it->first == id) {
667                         views_.erase(id);
668                         break;
669                 }
670         }
671         updateIds(views_, view_ids_);
672         return true;
673 }
674
675
676 bool GuiApplication::closeAllViews()
677 {
678         updateIds(views_, view_ids_);
679         if (views_.empty())
680                 return true;
681
682         map<int, GuiView*> const cmap = views_;
683         map<int, GuiView*>::const_iterator it;
684         for (it = cmap.begin(); it != cmap.end(); ++it) {
685                 if (!it->second->close())
686                         return false;
687         }
688
689         views_.clear();
690         view_ids_.clear();
691         return true;
692 }
693
694
695 GuiView & GuiApplication::view(int id) const
696 {
697         BOOST_ASSERT(views_.find(id) != views_.end());
698         return *views_.find(id)->second;
699 }
700
701
702 void GuiApplication::hideDialogs(string const & name, Inset * inset) const
703 {
704         vector<int>::const_iterator it = view_ids_.begin();
705         vector<int>::const_iterator const end = view_ids_.end();
706         for (; it != end; ++it)
707                 view(*it).hideDialog(name, inset);
708 }
709
710
711 Buffer const * GuiApplication::updateInset(Inset const * inset) const
712 {
713         Buffer const * buffer_ = 0;
714         vector<int>::const_iterator it = view_ids_.begin();
715         vector<int>::const_iterator const end = view_ids_.end();
716         for (; it != end; ++it) {
717                 Buffer const * ptr = view(*it).updateInset(inset);
718                 if (ptr)
719                         buffer_ = ptr;
720         }
721         return buffer_;
722 }
723
724
725 void GuiApplication::readMenus(Lexer & lex)
726 {
727         menus().read(lex);
728 }
729
730
731 bool GuiApplication::searchMenu(FuncRequest const & func,
732         vector<docstring> & names) const
733 {
734         return menus().searchMenu(func, names);
735 }
736
737
738 void GuiApplication::initGlobalMenu()
739 {
740         if (global_menubar_)
741                 menus().fillMenuBar(global_menubar_, 0);
742 }
743
744
745 void GuiApplication::onLastWindowClosed()
746 {
747         if (global_menubar_)
748                 global_menubar_->grabKeyboard();
749 }
750
751 ////////////////////////////////////////////////////////////////////////
752 // X11 specific stuff goes here...
753 #ifdef Q_WS_X11
754 bool GuiApplication::x11EventFilter(XEvent * xev)
755 {
756         if (!current_view_)
757                 return false;
758
759         switch (xev->type) {
760         case SelectionRequest: {
761                 if (xev->xselectionrequest.selection != XA_PRIMARY)
762                         break;
763                 LYXERR(Debug::GUI, "X requested selection.");
764                 BufferView * bv = current_view_->view();
765                 if (bv) {
766                         docstring const sel = bv->requestSelection();
767                         if (!sel.empty())
768                                 selection_.put(sel);
769                 }
770                 break;
771         }
772         case SelectionClear: {
773                 if (xev->xselectionclear.selection != XA_PRIMARY)
774                         break;
775                 LYXERR(Debug::GUI, "Lost selection.");
776                 BufferView * bv = current_view_->view();
777                 if (bv)
778                         bv->clearSelection();
779                 break;
780         }
781         }
782         return false;
783 }
784 #endif
785
786 } // namespace frontend
787
788
789 ////////////////////////////////////////////////////////////////////
790 //
791 // Font stuff
792 //
793 ////////////////////////////////////////////////////////////////////
794
795 frontend::FontLoader & theFontLoader()
796 {
797         BOOST_ASSERT(frontend::guiApp);
798         return frontend::guiApp->fontLoader();
799 }
800
801
802 frontend::FontMetrics const & theFontMetrics(Font const & f)
803 {
804         return theFontMetrics(f.fontInfo());
805 }
806
807
808 frontend::FontMetrics const & theFontMetrics(FontInfo const & f)
809 {
810         BOOST_ASSERT(frontend::guiApp);
811         return frontend::guiApp->fontLoader().metrics(f);
812 }
813
814
815 frontend::Clipboard & theClipboard()
816 {
817         BOOST_ASSERT(frontend::guiApp);
818         return frontend::guiApp->clipboard();
819 }
820
821
822 frontend::Selection & theSelection()
823 {
824         BOOST_ASSERT(frontend::guiApp);
825         return frontend::guiApp->selection();
826 }
827
828 } // namespace lyx
829
830 #include "GuiApplication_moc.cpp"