]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
Now ESC cancels long Advanced Find and Replace operations.
[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 "CmdDef.h"
37 #include "Color.h"
38 #include "Font.h"
39 #include "FuncRequest.h"
40 #include "FuncStatus.h"
41 #include "Intl.h"
42 #include "KeyMap.h"
43 #include "Language.h"
44 #include "LaTeXPackages.h"
45 #include "Lexer.h"
46 #include "LyX.h"
47 #include "LyXAction.h"
48 #include "LyXRC.h"
49 #include "Paragraph.h"
50 #include "Server.h"
51 #include "Session.h"
52 #include "SpellChecker.h"
53 #include "Thesaurus.h"
54 #include "version.h"
55
56 #include "support/convert.h"
57 #include "support/debug.h"
58 #include "support/ExceptionMessage.h"
59 #include "support/FileName.h"
60 #include "support/filetools.h"
61 #include "support/foreach.h"
62 #include "support/ForkedCalls.h"
63 #include "support/gettext.h"
64 #include "support/lassert.h"
65 #include "support/lstrings.h"
66 #include "support/lyxalgo.h" // sorted
67 #include "support/Messages.h"
68 #include "support/os.h"
69 #include "support/Package.h"
70 #include "support/Path.h"
71 #include "support/Systemcall.h"
72
73 #ifdef Q_WS_MACX
74 #include "support/linkback/LinkBackProxy.h"
75 #endif
76
77 #include <queue>
78
79 #include <QByteArray>
80 #include <QClipboard>
81 #include <QDateTime>
82 #include <QDir>
83 #include <QEvent>
84 #include <QEventLoop>
85 #include <QFileOpenEvent>
86 #include <QFileInfo>
87 #include <QHash>
88 #include <QIcon>
89 #include <QImageReader>
90 #include <QKeyEvent>
91 #include <QLocale>
92 #include <QLibraryInfo>
93 #include <QList>
94 #include <QMacPasteboardMime>
95 #include <QMenuBar>
96 #include <QMimeData>
97 #include <QObject>
98 #include <QPixmap>
99 #include <QPixmapCache>
100 #include <QRegExp>
101 #include <QSessionManager>
102 #include <QSettings>
103 #include <QShowEvent>
104 #include <QSocketNotifier>
105 #include <QSortFilterProxyModel>
106 #include <QStandardItemModel>
107 #include <QTextCodec>
108 #include <QTimer>
109 #include <QTranslator>
110 #if QT_VERSION >= 0x040400
111 #include <QThreadPool>
112 #endif
113 #include <QWidget>
114
115 #ifdef Q_WS_X11
116 #include <X11/Xatom.h>
117 #include <X11/Xlib.h>
118 #undef CursorShape
119 #undef None
120 #endif
121
122 #ifdef Q_WS_WIN
123 #include <QWindowsMime>
124 #ifdef Q_CC_GNU
125 #include <wtypes.h>
126 #endif
127 #include <objidl.h>
128 #endif // Q_WS_WIN
129
130 #include "support/bind.h"
131 #include <boost/crc.hpp>
132
133 #include <exception>
134 #include <sstream>
135 #include <vector>
136
137 using namespace std;
138 using namespace lyx::support;
139
140
141 static void initializeResources()
142 {
143         static bool initialized = false;
144         if (!initialized) {
145                 Q_INIT_RESOURCE(Resources);
146                 initialized = true;
147         }
148 }
149
150
151 namespace lyx {
152
153 frontend::Application * createApplication(int & argc, char * argv[])
154 {
155 #ifndef Q_WS_X11
156         // prune -geometry argument(s) by shifting
157         // the following ones 2 places down.
158         for (int i = 0 ; i < argc ; ++i) {
159                 if (strcmp(argv[i], "-geometry") == 0) {
160                         int const remove = (i+1) < argc ? 2 : 1;
161                         argc -= remove;
162                         for (int j = i; j < argc; ++j)
163                                 argv[j] = argv[j + remove];
164                         --i;
165                 }
166         }
167 #endif
168         frontend::GuiApplication * guiApp = new frontend::GuiApplication(argc, argv);
169         // I'd rather do that in the constructor, but I do not think that
170         // the palette is accessible there.
171         guiApp->colorCache().setPalette(guiApp->palette());
172         return guiApp;
173 }
174
175 namespace frontend {
176
177
178 /// Return the list of loadable formats.
179 vector<string> loadableImageFormats()
180 {
181         vector<string> fmts;
182
183         QList<QByteArray> qt_formats = QImageReader::supportedImageFormats();
184
185         LYXERR(Debug::GRAPHICS,
186                 "\nThe image loader can load the following directly:\n");
187
188         if (qt_formats.empty())
189                 LYXERR(Debug::GRAPHICS, "\nQt4 Problem: No Format available!");
190
191         for (QList<QByteArray>::const_iterator it = qt_formats.begin(); it != qt_formats.end(); ++it) {
192
193                 LYXERR(Debug::GRAPHICS, (const char *) *it << ", ");
194
195                 string ext = ascii_lowercase((const char *) *it);
196                 // special case
197                 if (ext == "jpeg")
198                         ext = "jpg";
199                 fmts.push_back(ext);
200         }
201
202         return fmts;
203 }
204
205
206 ////////////////////////////////////////////////////////////////////////
207 //
208 // Icon loading support code
209 //
210 ////////////////////////////////////////////////////////////////////////
211
212 namespace {
213
214 struct PngMap {
215         QString key;
216         QString value;
217 };
218
219
220 bool operator<(PngMap const & lhs, PngMap const & rhs)
221 {
222         return lhs.key < rhs.key;
223 }
224
225
226 class CompareKey {
227 public:
228         CompareKey(QString const & name) : name_(name) {}
229         bool operator()(PngMap const & other) const { return other.key == name_; }
230 private:
231         QString const name_;
232 };
233
234
235 // this must be sorted alphabetically
236 // Upper case comes before lower case
237 PngMap sorted_png_map[] = {
238         { "Bumpeq", "bumpeq2" },
239         { "Cap", "cap2" },
240         { "Cup", "cup2" },
241         { "Delta", "delta2" },
242         { "Diamond", "diamond2" },
243         { "Downarrow", "downarrow2" },
244         { "Gamma", "gamma2" },
245         { "Lambda", "lambda2" },
246         { "Leftarrow", "leftarrow2" },
247         { "Leftrightarrow", "leftrightarrow2" },
248         { "Longleftarrow", "longleftarrow2" },
249         { "Longleftrightarrow", "longleftrightarrow2" },
250         { "Longrightarrow", "longrightarrow2" },
251         { "Omega", "omega2" },
252         { "Phi", "phi2" },
253         { "Pi", "pi2" },
254         { "Psi", "psi2" },
255         { "Rightarrow", "rightarrow2" },
256         { "Sigma", "sigma2" },
257         { "Subset", "subset2" },
258         { "Supset", "supset2" },
259         { "Theta", "theta2" },
260         { "Uparrow", "uparrow2" },
261         { "Updownarrow", "updownarrow2" },
262         { "Upsilon", "upsilon2" },
263         { "Vdash", "vdash3" },
264         { "Vert", "vert2" },
265         { "Xi", "xi2" },
266         { "nLeftarrow", "nleftarrow2" },
267         { "nLeftrightarrow", "nleftrightarrow2" },
268         { "nRightarrow", "nrightarrow2" },
269         { "nVDash", "nvdash3" },
270         { "nvDash", "nvdash2" },
271         { "textrm \\AA", "textrm_AA"},
272         { "textrm \\O", "textrm_O"},
273         { "vDash", "vdash2" }
274 };
275
276 size_t const nr_sorted_png_map = sizeof(sorted_png_map) / sizeof(PngMap);
277
278
279 QString findPng(QString const & name)
280 {
281         PngMap const * const begin = sorted_png_map;
282         PngMap const * const end = begin + nr_sorted_png_map;
283         LASSERT(sorted(begin, end), /**/);
284
285         PngMap const * const it = find_if(begin, end, CompareKey(name));
286
287         QString png_name;
288         if (it != end) {
289                 png_name = it->value;
290         } else {
291                 png_name = name;
292                 png_name.replace('_', "underscore");
293                 png_name.replace(' ', '_');
294
295                 // This way we can have "math-delim { }" on the toolbar.
296                 png_name.replace('(', "lparen");
297                 png_name.replace(')', "rparen");
298                 png_name.replace('[', "lbracket");
299                 png_name.replace(']', "rbracket");
300                 png_name.replace('{', "lbrace");
301                 png_name.replace('}', "rbrace");
302                 png_name.replace('|', "bars");
303                 png_name.replace(',', "thinspace");
304                 png_name.replace(':', "mediumspace");
305                 png_name.replace(';', "thickspace");
306                 png_name.replace('!', "negthinspace");
307         }
308
309         LYXERR(Debug::GUI, "findPng(" << name << ")\n"
310                 << "Looking for math PNG called \"" << png_name << '"');
311         return png_name;
312 }
313
314 } // namespace anon
315
316
317 QString iconName(FuncRequest const & f, bool unknown)
318 {
319         initializeResources();
320         QString name1;
321         QString name2;
322         QString path;
323         switch (f.action()) {
324         case LFUN_MATH_INSERT:
325                 if (!f.argument().empty()) {
326                         path = "math/";
327                         name1 = findPng(toqstr(f.argument()).mid(1));
328                 }
329                 break;
330         case LFUN_MATH_DELIM:
331         case LFUN_MATH_BIGDELIM:
332                 path = "math/";
333                 name1 = findPng(toqstr(f.argument()));
334                 break;
335         case LFUN_CALL:
336                 path = "commands/";
337                 name1 = toqstr(f.argument());
338                 break;
339         case LFUN_COMMAND_ALTERNATIVES: {
340                 // use the first of the alternative commands
341                 docstring firstcom;
342                 docstring dummy = split(f.argument(), firstcom, ';');
343                 name1 = toqstr(firstcom);
344                 // FIXME: we should rename the icons to tabular-xxx instead of
345                 // "tabular-feature-xxx"
346                 name1.replace("inset-modify tabular", "tabular-feature");
347                 name1.replace(' ', '_');
348                 break;
349         }
350         case LFUN_INSET_MODIFY: {
351                 // FIXME: we should rename the icons to tabular-xxx instead of
352                 // "tabular-feature-xxx" and generalize this naming to all
353                 // insets, not to tabular using ones.
354                 string inset_name;
355                 string const command = split(to_utf8(f.argument()), inset_name, ' ');
356                 if (insetCode(inset_name) == TABULAR_CODE) {
357                         name1 = "tabular-feature "+ toqstr(command);
358                         name1.replace(' ', '_');
359                         break;
360                 }
361         }
362         default:
363                 name2 = toqstr(lyxaction.getActionName(f.action()));
364                 name1 = name2;
365
366                 if (!f.argument().empty()) {
367                         name1 = name2 + ' ' + toqstr(f.argument());
368                         name1.replace(' ', '_');
369                         name1.replace('\\', "backslash");
370                 }
371         }
372
373         QString imagedir = "images/" + path;
374         FileName fname = imageLibFileSearch(imagedir, name1, "png");
375         if (fname.exists())
376                 return toqstr(fname.absFileName());
377
378         fname = imageLibFileSearch(imagedir, name2, "png");
379         if (fname.exists())
380                 return toqstr(fname.absFileName());
381
382         path = ":/images/" + path;
383         QDir res(path);
384         if (!res.exists()) {
385                 LYXERR0("Directory " << path << " not found in resource!");
386                 return QString();
387         }
388         name1 += ".png";
389         if (res.exists(name1))
390                 return path + name1;
391
392         name2 += ".png";
393         if (res.exists(name2))
394                 return path + name2;
395
396         LYXERR(Debug::GUI, "Cannot find icon with filename "
397                            << "\"" << name1 << "\""
398                            << " or filename "
399                            << "\"" << name2 << "\""
400                            << " for command \""
401                            << lyxaction.getActionName(f.action())
402                            << '(' << to_utf8(f.argument()) << ")\"");
403
404         if (unknown) {
405                 imagedir = "images/";
406                 fname = imageLibFileSearch(imagedir, "unknown", "png");
407                 if (fname.exists())
408                         return toqstr(fname.absFileName());
409                 return QString(":/images/unknown.png");
410         }
411
412         return QString();
413 }
414
415 QPixmap getPixmap(QString const & path, QString const & name, QString const & ext)
416 {
417         QPixmap pixmap;
418         QString imagedir = path;
419         FileName fname = imageLibFileSearch(imagedir, name, ext);
420         QString path1 = toqstr(fname.absFileName());
421         QString path2 = ":/" + path + name + "." + ext;
422
423         if (pixmap.load(path1)) {
424                 return pixmap;
425         }
426         else if (pixmap.load(path2)) {
427                 return pixmap;
428         }
429
430         LYXERR0("Cannot load pixmap \""
431                 << path << name << '.' << ext
432                 << "\", please verify resource system!");
433
434         return QPixmap();
435 }
436
437 QIcon getIcon(FuncRequest const & f, bool unknown)
438 {
439         QString icon = iconName(f, unknown);
440         if (icon.isEmpty())
441                 return QIcon();
442
443         //LYXERR(Debug::GUI, "Found icon: " << icon);
444         QPixmap pm;
445         if (!pm.load(icon)) {
446                 LYXERR0("Cannot load icon " << icon << " please verify resource system!");
447                 return QIcon();
448         }
449
450         return QIcon(pm);
451 }
452
453
454 ////////////////////////////////////////////////////////////////////////
455 //
456 // LyX server support code.
457 //
458 ////////////////////////////////////////////////////////////////////////
459
460 class SocketNotifier : public QSocketNotifier
461 {
462 public:
463         /// connect a connection notification from the LyXServerSocket
464         SocketNotifier(QObject * parent, int fd, Application::SocketCallback func)
465                 : QSocketNotifier(fd, QSocketNotifier::Read, parent), func_(func)
466         {}
467
468 public:
469         /// The callback function
470         Application::SocketCallback func_;
471 };
472
473
474 ////////////////////////////////////////////////////////////////////////
475 //
476 // Mac specific stuff goes here...
477 //
478 ////////////////////////////////////////////////////////////////////////
479
480 class MenuTranslator : public QTranslator
481 {
482 public:
483         MenuTranslator(QObject * parent)
484                 : QTranslator(parent)
485         {}
486
487         QString translate(const char * /*context*/,
488           const char * sourceText,
489           const char * /*comment*/ = 0)
490         {
491                 string const s = sourceText;
492                 if (s == N_("About %1") || s == N_("Preferences")
493                                 || s == N_("Reconfigure") || s == N_("Quit %1"))
494                         return qt_(s);
495                 else
496                         return QString();
497         }
498 };
499
500 class GlobalMenuBar : public QMenuBar
501 {
502 public:
503         ///
504         GlobalMenuBar() : QMenuBar(0) {}
505
506         ///
507         bool event(QEvent * e)
508         {
509                 if (e->type() == QEvent::ShortcutOverride) {
510                         //          && activeWindow() == 0) {
511                         QKeyEvent * ke = static_cast<QKeyEvent*>(e);
512                         KeySymbol sym;
513                         setKeySymbol(&sym, ke);
514                         guiApp->processKeySym(sym, q_key_state(ke->modifiers()));
515                         e->accept();
516                         return true;
517                 }
518                 return false;
519         }
520 };
521
522 #ifdef Q_WS_MACX
523 // QMacPasteboardMimeGraphics can only be compiled on Mac.
524
525 class QMacPasteboardMimeGraphics : public QMacPasteboardMime
526 {
527 public:
528         QMacPasteboardMimeGraphics()
529                 : QMacPasteboardMime(MIME_QT_CONVERTOR|MIME_ALL)
530         {}
531
532         QString convertorName() { return "Graphics"; }
533
534         QString flavorFor(QString const & mime)
535         {
536                 LYXERR(Debug::ACTION, "flavorFor " << mime);
537                 if (mime == pdfMimeType())
538                         return QLatin1String("com.adobe.pdf");
539                 return QString();
540         }
541
542         QString mimeFor(QString flav)
543         {
544                 LYXERR(Debug::ACTION, "mimeFor " << flav);
545                 if (flav == QLatin1String("com.adobe.pdf"))
546                         return pdfMimeType();
547                 return QString();
548         }
549
550         bool canConvert(QString const & mime, QString flav)
551         {
552                 return mimeFor(flav) == mime;
553         }
554
555         QVariant convertToMime(QString const & /*mime*/, QList<QByteArray> data,
556                 QString /*flav*/)
557         {
558                 if(data.count() > 1)
559                         qWarning("QMacPasteboardMimeGraphics: Cannot handle multiple member data");
560                 return data.first();
561         }
562
563         QList<QByteArray> convertFromMime(QString const & /*mime*/,
564                 QVariant data, QString /*flav*/)
565         {
566                 QList<QByteArray> ret;
567                 ret.append(data.toByteArray());
568                 return ret;
569         }
570 };
571 #endif
572
573 ///////////////////////////////////////////////////////////////
574 //
575 // You can find more platform specific stuff at the end of this file...
576 //
577 ///////////////////////////////////////////////////////////////
578
579 ////////////////////////////////////////////////////////////////////////
580 // Windows specific stuff goes here...
581
582 #ifdef Q_WS_WIN
583 // QWindowsMimeMetafile can only be compiled on Windows.
584
585 static FORMATETC cfFromMime(QString const & mimetype)
586 {
587         FORMATETC formatetc;
588         if (mimetype == emfMimeType()) {
589                 formatetc.cfFormat = CF_ENHMETAFILE;
590                 formatetc.tymed = TYMED_ENHMF;
591         } else if (mimetype == wmfMimeType()) {
592                 formatetc.cfFormat = CF_METAFILEPICT;
593                 formatetc.tymed = TYMED_MFPICT;
594         }
595         formatetc.ptd = 0;
596         formatetc.dwAspect = DVASPECT_CONTENT;
597         formatetc.lindex = -1;
598         return formatetc;
599 }
600
601
602 class QWindowsMimeMetafile : public QWindowsMime {
603 public:
604         QWindowsMimeMetafile() {}
605
606         bool canConvertFromMime(FORMATETC const & formatetc,
607                 QMimeData const * mimedata) const
608         {
609                 return false;
610         }
611
612         bool canConvertToMime(QString const & mimetype,
613                 IDataObject * pDataObj) const
614         {
615                 if (mimetype != emfMimeType() && mimetype != wmfMimeType())
616                         return false;
617                 FORMATETC formatetc = cfFromMime(mimetype);
618                 return pDataObj->QueryGetData(&formatetc) == S_OK;
619         }
620
621         bool convertFromMime(FORMATETC const & formatetc,
622                 const QMimeData * mimedata, STGMEDIUM * pmedium) const
623         {
624                 return false;
625         }
626
627         QVariant convertToMime(QString const & mimetype, IDataObject * pDataObj,
628                 QVariant::Type preferredType) const
629         {
630                 QByteArray data;
631                 if (!canConvertToMime(mimetype, pDataObj))
632                         return data;
633
634                 FORMATETC formatetc = cfFromMime(mimetype);
635                 STGMEDIUM s;
636                 if (pDataObj->GetData(&formatetc, &s) != S_OK)
637                         return data;
638
639                 int dataSize;
640                 if (s.tymed == TYMED_ENHMF) {
641                         dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, 0, 0);
642                         data.resize(dataSize);
643                         dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, dataSize,
644                                 (LPBYTE)data.data());
645                 } else if (s.tymed == TYMED_MFPICT) {
646                         dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, 0, 0);
647                         data.resize(dataSize);
648                         dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, dataSize,
649                                 (LPBYTE)data.data());
650                 }
651                 data.detach();
652                 ReleaseStgMedium(&s);
653
654                 return data;
655         }
656
657
658         QVector<FORMATETC> formatsForMime(QString const & mimetype,
659                 QMimeData const * mimedata) const
660         {
661                 QVector<FORMATETC> formats;
662                 if (mimetype == emfMimeType() || mimetype == wmfMimeType())
663                         formats += cfFromMime(mimetype);
664                 return formats;
665         }
666
667         QString mimeForFormat(FORMATETC const & formatetc) const
668         {
669                 switch (formatetc.cfFormat) {
670                 case CF_ENHMETAFILE:
671                         return emfMimeType();
672                 case CF_METAFILEPICT:
673                         return wmfMimeType();
674                 }
675                 return QString();
676         }
677 };
678
679 #endif // Q_WS_WIN
680
681
682 /// Allows to check whether ESC was pressed during a long operation
683 class KeyChecker : public QObject {
684 private:
685         bool pressed_;
686 public:
687         KeyChecker() {
688                 pressed_ = false;
689         }
690         void start() {
691                 QCoreApplication::instance()->installEventFilter(this);
692                 pressed_ = false;
693         }
694         void stop() {
695                 QCoreApplication::instance()->removeEventFilter(this);
696         }
697         bool pressed() {
698                 QCoreApplication::processEvents();
699                 return pressed_;
700         }
701         bool eventFilter(QObject *obj, QEvent *event) {
702                 LYXERR(Debug::ACTION, "Event Type: " << event->type());
703                 switch (event->type()) {
704                 case QEvent::Show:
705                 case QEvent::Hide:
706                 case QEvent::Resize:
707                         return QObject::eventFilter(obj, event);
708                 default:
709                         QKeyEvent *keyEvent = dynamic_cast<QKeyEvent*>(event);
710                         if (keyEvent && keyEvent->key() == Qt::Key_Escape)
711                                 pressed_ = true;
712                         return true;
713                 }
714         }
715 };
716
717
718 ////////////////////////////////////////////////////////////////////////
719 // GuiApplication::Private definition and implementation.
720 ////////////////////////////////////////////////////////////////////////
721
722 struct GuiApplication::Private
723 {
724         Private(): language_model_(0), meta_fake_bit(NoModifier),
725                 global_menubar_(0)
726         {
727         #ifdef Q_WS_WIN
728                 /// WMF Mime handler for Windows clipboard.
729                 wmf_mime_ = new QWindowsMimeMetafile();
730         #endif
731                 initKeySequences(&theTopLevelKeymap());
732         }
733
734         void initKeySequences(KeyMap * kb)
735         {
736                 keyseq = KeySequence(kb, kb);
737                 cancel_meta_seq = KeySequence(kb, kb);
738         }
739
740         ///
741         QSortFilterProxyModel * language_model_;
742         ///
743         GuiClipboard clipboard_;
744         ///
745         GuiSelection selection_;
746         ///
747         FontLoader font_loader_;
748         ///
749         ColorCache color_cache_;
750         ///
751         QTranslator qt_trans_;
752         ///
753         QHash<int, SocketNotifier *> socket_notifiers_;
754         ///
755         Menus menus_;
756         ///
757         /// The global instance
758         Toolbars toolbars_;
759
760         /// this timer is used for any regular events one wants to
761         /// perform. at present it is used to check if forked processes
762         /// are done.
763         QTimer general_timer_;
764
765         /// delayed FuncRequests
766         std::queue<FuncRequest> func_request_queue_;
767
768         ///
769         KeySequence keyseq;
770         ///
771         KeySequence cancel_meta_seq;
772         ///
773         KeyModifier meta_fake_bit;
774
775         /// Multiple views container.
776         /**
777         * Warning: This must not be a smart pointer as the destruction of the
778         * object is handled by Qt when the view is closed
779         * \sa Qt::WA_DeleteOnClose attribute.
780         */
781         QHash<int, GuiView *> views_;
782
783         /// Only used on mac.
784         GlobalMenuBar * global_menubar_;
785
786 #ifdef Q_WS_MACX
787         /// Linkback mime handler for MacOSX.
788         QMacPasteboardMimeGraphics mac_pasteboard_mime_;
789 #endif
790
791 #ifdef Q_WS_WIN
792         /// WMF Mime handler for Windows clipboard.
793         QWindowsMimeMetafile * wmf_mime_;
794 #endif
795
796         /// Allows to check whether ESC was pressed during a long operation
797         KeyChecker key_checker_;
798 };
799
800
801 GuiApplication * guiApp;
802
803 GuiApplication::~GuiApplication()
804 {
805 #ifdef Q_WS_MACX
806         closeAllLinkBackLinks();
807 #endif
808         delete d;
809 }
810
811
812 GuiApplication::GuiApplication(int & argc, char ** argv)
813         : QApplication(argc, argv), current_view_(0),
814           d(new GuiApplication::Private)
815 {
816         QString app_name = "LyX";
817         QCoreApplication::setOrganizationName(app_name);
818         QCoreApplication::setOrganizationDomain("lyx.org");
819         QCoreApplication::setApplicationName(lyx_package);
820
821         // Install translator for GUI elements.
822         installTranslator(&d->qt_trans_);
823
824         // FIXME: quitOnLastWindowClosed is true by default. We should have a
825         // lyxrc setting for this in order to let the application stay resident.
826         // But then we need some kind of dock icon, at least on Windows.
827         /*
828         if (lyxrc.quit_on_last_window_closed)
829                 setQuitOnLastWindowClosed(false);
830         */
831 #ifdef Q_WS_MACX
832         // FIXME: Do we need a lyxrc setting for this on Mac? This behaviour
833         // seems to be the default case for applications like LyX.
834         setQuitOnLastWindowClosed(false);
835         // This allows to translate the strings that appear in the LyX menu.
836         /// A translator suitable for the entries in the LyX menu.
837         /// Only needed with Qt/Mac.
838         installTranslator(new MenuTranslator(this));
839 #endif
840
841 #ifdef Q_WS_X11
842         // doubleClickInterval() is 400 ms on X11 which is just too long.
843         // On Windows and Mac OS X, the operating system's value is used.
844         // On Microsoft Windows, calling this function sets the double
845         // click interval for all applications. So we don't!
846         QApplication::setDoubleClickInterval(300);
847 #endif
848
849         connect(this, SIGNAL(lastWindowClosed()), this, SLOT(onLastWindowClosed()));
850
851         // needs to be done before reading lyxrc
852         QWidget w;
853         lyxrc.dpi = (w.logicalDpiX() + w.logicalDpiY()) / 2;
854
855         guiApp = this;
856
857         // Set the cache to 5120 kilobytes which corresponds to screen size of
858         // 1280 by 1024 pixels with a color depth of 32 bits.
859         QPixmapCache::setCacheLimit(5120);
860
861         // Initialize RC Fonts
862         if (lyxrc.roman_font_name.empty())
863                 lyxrc.roman_font_name = fromqstr(romanFontName());
864
865         if (lyxrc.sans_font_name.empty())
866                 lyxrc.sans_font_name = fromqstr(sansFontName());
867
868         if (lyxrc.typewriter_font_name.empty())
869                 lyxrc.typewriter_font_name = fromqstr(typewriterFontName());
870
871         d->general_timer_.setInterval(500);
872         connect(&d->general_timer_, SIGNAL(timeout()),
873                 this, SLOT(handleRegularEvents()));
874         d->general_timer_.start();
875
876 #if QT_VERSION >= 0x040400
877         // maxThreadCount() defaults in general to 2 on single or dual-processor.
878         // This is clearly not enough in a time where we use threads for
879         // document preview and/or export. 20 should be OK.
880         QThreadPool::globalInstance()->setMaxThreadCount(20);
881 #endif
882 }
883
884
885 GuiApplication * theGuiApp()
886 {
887         return dynamic_cast<GuiApplication *>(theApp());
888 }
889
890
891 void GuiApplication::clearSession()
892 {
893         QSettings settings;
894         settings.clear();
895 }
896
897
898 docstring Application::iconName(FuncRequest const & f, bool unknown)
899 {
900         return qstring_to_ucs4(lyx::frontend::iconName(f, unknown));
901 }
902
903
904 FuncStatus GuiApplication::getStatus(FuncRequest const & cmd) const
905 {
906         FuncStatus status;
907
908         BufferView * bv = 0;
909         BufferView * doc_bv = 0;
910
911         if (cmd.action() == LFUN_NOACTION) {
912                 status.message(from_utf8(N_("Nothing to do")));
913                 status.setEnabled(false);
914         }
915
916         else if (cmd.action() == LFUN_UNKNOWN_ACTION) {
917                 status.setUnknown(true);
918                 status.message(from_utf8(N_("Unknown action")));
919                 status.setEnabled(false);
920         }
921
922         // Does the GuiApplication know something?
923         else if (getStatus(cmd, status)) { }
924
925         // If we do not have a GuiView, then other functions are disabled
926         else if (!current_view_)
927                 status.setEnabled(false);
928
929         // Does the GuiView know something?
930         else if (current_view_->getStatus(cmd, status)) { }
931
932         // In LyX/Mac, when a dialog is open, the menus of the
933         // application can still be accessed without giving focus to
934         // the main window. In this case, we want to disable the menu
935         // entries that are buffer or view-related.
936         //FIXME: Abdel (09/02/10) This has very bad effect on Linux, don't know why...
937         /*
938         else if (cmd.origin() == FuncRequest::MENU && !current_view_->hasFocus())
939                 status.setEnabled(false);
940         */
941
942         // If we do not have a BufferView, then other functions are disabled
943         else if (!(bv = current_view_->currentBufferView()))
944                 status.setEnabled(false);
945
946         // Does the current BufferView know something?
947         else if (bv->getStatus(cmd, status)) { }
948
949         // Does the current Buffer know something?
950         else if (bv->buffer().getStatus(cmd, status)) { }
951
952         // If we do not have a document BufferView, different from the
953         // current BufferView, then other functions are disabled
954         else if (!(doc_bv = current_view_->documentBufferView()) || doc_bv == bv)
955                 status.setEnabled(false);
956
957         // Does the document Buffer know something?
958         else if (doc_bv->buffer().getStatus(cmd, status)) { }
959
960         else {
961                 LYXERR(Debug::ACTION, "LFUN not handled in getStatus(): " << cmd);
962                 status.message(from_utf8(N_("Command not handled")));
963                 status.setEnabled(false);
964         }
965
966         // the default error message if we disable the command
967         if (!status.enabled() && status.message().empty())
968                 status.message(from_utf8(N_("Command disabled")));
969
970         return status;
971 }
972
973
974 bool GuiApplication::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
975 {
976         // I would really like to avoid having this switch and rather try to
977         // encode this in the function itself.
978         // -- And I'd rather let an inset decide which LFUNs it is willing
979         // to handle (Andre')
980         bool enable = true;
981         switch (cmd.action()) {
982
983         // This could be used for the no-GUI version. The GUI version is handled in
984         // GuiView::getStatus(). See above.
985         /*
986         case LFUN_BUFFER_WRITE:
987         case LFUN_BUFFER_WRITE_AS: {
988                 Buffer * b = theBufferList().getBuffer(FileName(cmd.getArg(0)));
989                 enable = b && (b->isUnnamed() || !b->isClean());
990                 break;
991         }
992         */
993
994         case LFUN_BOOKMARK_GOTO: {
995                 const unsigned int num = convert<unsigned int>(to_utf8(cmd.argument()));
996                 enable = theSession().bookmarks().isValid(num);
997                 break;
998         }
999
1000         case LFUN_BOOKMARK_CLEAR:
1001                 enable = theSession().bookmarks().hasValid();
1002                 break;
1003
1004         // this one is difficult to get right. As a half-baked
1005         // solution, we consider only the first action of the sequence
1006         case LFUN_COMMAND_SEQUENCE: {
1007                 // argument contains ';'-terminated commands
1008                 string const firstcmd = token(to_utf8(cmd.argument()), ';', 0);
1009                 FuncRequest func(lyxaction.lookupFunc(firstcmd));
1010                 func.setOrigin(cmd.origin());
1011                 flag = getStatus(func);
1012                 break;
1013         }
1014
1015         // we want to check if at least one of these is enabled
1016         case LFUN_COMMAND_ALTERNATIVES: {
1017                 // argument contains ';'-terminated commands
1018                 string arg = to_utf8(cmd.argument());
1019                 while (!arg.empty()) {
1020                         string first;
1021                         arg = split(arg, first, ';');
1022                         FuncRequest func(lyxaction.lookupFunc(first));
1023                         func.setOrigin(cmd.origin());
1024                         flag = getStatus(func);
1025                         // if this one is enabled, the whole thing is
1026                         if (flag.enabled())
1027                                 break;
1028                 }
1029                 break;
1030         }
1031
1032         case LFUN_CALL: {
1033                 FuncRequest func;
1034                 string name = to_utf8(cmd.argument());
1035                 if (theTopLevelCmdDef().lock(name, func)) {
1036                         func.setOrigin(cmd.origin());
1037                         flag = getStatus(func);
1038                         theTopLevelCmdDef().release(name);
1039                 } else {
1040                         // catch recursion or unknown command
1041                         // definition. all operations until the
1042                         // recursion or unknown command definition
1043                         // occurs are performed, so set the state to
1044                         // enabled
1045                         enable = true;
1046                 }
1047                 break;
1048         }
1049
1050         case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
1051         case LFUN_REPEAT:
1052         case LFUN_PREFERENCES_SAVE:
1053         case LFUN_BUFFER_SAVE_AS_DEFAULT:
1054         case LFUN_DEBUG_LEVEL_SET:
1055                 // these are handled in our dispatch()
1056                 break;
1057
1058         case LFUN_WINDOW_CLOSE:
1059                 enable = d->views_.size() > 0;
1060                 break;
1061
1062         case LFUN_BUFFER_NEW:
1063         case LFUN_BUFFER_NEW_TEMPLATE:
1064         case LFUN_FILE_OPEN:
1065         case LFUN_HELP_OPEN:
1066         case LFUN_SCREEN_FONT_UPDATE:
1067         case LFUN_SET_COLOR:
1068         case LFUN_WINDOW_NEW:
1069         case LFUN_LYX_QUIT:
1070         case LFUN_LYXRC_APPLY:
1071         case LFUN_COMMAND_PREFIX:
1072         case LFUN_CANCEL:
1073         case LFUN_META_PREFIX:
1074         case LFUN_RECONFIGURE:
1075         case LFUN_SERVER_GET_FILENAME:
1076         case LFUN_SERVER_NOTIFY:
1077                 enable = true;
1078                 break;
1079
1080         default:
1081                 return false;
1082         }
1083
1084         if (!enable)
1085                 flag.setEnabled(false);
1086         return true;
1087 }
1088
1089 /// make a post-dispatch status message
1090 static docstring makeDispatchMessage(docstring const & msg,
1091                                      FuncRequest const & cmd)
1092 {
1093         const bool verbose = (cmd.origin() == FuncRequest::MENU
1094                               || cmd.origin() == FuncRequest::TOOLBAR
1095                               || cmd.origin() == FuncRequest::COMMANDBUFFER);
1096
1097         if (cmd.action() == LFUN_SELF_INSERT || !verbose) {
1098                 LYXERR(Debug::ACTION, "dispatch msg is " << msg);
1099                 return msg;
1100         }
1101
1102         docstring dispatch_msg = msg;
1103         if (!dispatch_msg.empty())
1104                 dispatch_msg += ' ';
1105
1106         docstring comname = from_utf8(lyxaction.getActionName(cmd.action()));
1107
1108         bool argsadded = false;
1109
1110         if (!cmd.argument().empty()) {
1111                 if (cmd.action() != LFUN_UNKNOWN_ACTION) {
1112                         comname += ' ' + cmd.argument();
1113                         argsadded = true;
1114                 }
1115         }
1116         docstring const shortcuts = theTopLevelKeymap().
1117                 printBindings(cmd, KeySequence::ForGui);
1118
1119         if (!shortcuts.empty())
1120                 comname += ": " + shortcuts;
1121         else if (!argsadded && !cmd.argument().empty())
1122                 comname += ' ' + cmd.argument();
1123
1124         if (!comname.empty()) {
1125                 comname = rtrim(comname);
1126                 dispatch_msg += '(' + rtrim(comname) + ')';
1127         }
1128         LYXERR(Debug::ACTION, "verbose dispatch msg " << to_utf8(dispatch_msg));
1129         return dispatch_msg;
1130 }
1131
1132
1133 void GuiApplication::dispatch(FuncRequest const & cmd)
1134 {
1135         if (current_view_ && current_view_->currentBufferView())
1136                 current_view_->currentBufferView()->cursor().saveBeforeDispatchPosXY();
1137
1138         DispatchResult dr;
1139         // redraw the screen at the end (first of the two drawing steps).
1140         // This is done unless explicitly requested otherwise
1141         dr.screenUpdate(Update::FitCursor);
1142         dispatch(cmd, dr);
1143
1144         if (!current_view_)
1145                 return;
1146
1147         BufferView * bv = current_view_->currentBufferView();
1148         if (bv) {
1149                 if (dr.needBufferUpdate()) {
1150                         bv->cursor().clearBufferUpdate();
1151                         bv->buffer().updateBuffer();
1152                 }
1153                 // BufferView::update() updates the ViewMetricsInfo and
1154                 // also initializes the position cache for all insets in
1155                 // (at least partially) visible top-level paragraphs.
1156                 // We will redraw the screen only if needed.
1157                 bv->processUpdateFlags(dr.screenUpdate());
1158
1159                 // Do we have a selection?
1160                 theSelection().haveSelection(bv->cursor().selection());
1161
1162                 // update gui
1163                 current_view_->restartCursor();
1164         }
1165         if (dr.needMessageUpdate()) {
1166                 // Some messages may already be translated, so we cannot use _()
1167                 current_view_->message(makeDispatchMessage(
1168                                 translateIfPossible(dr.message()), cmd));
1169         }
1170 }
1171
1172
1173 void GuiApplication::gotoBookmark(unsigned int idx, bool openFile,
1174         bool switchToBuffer)
1175 {
1176         if (!theSession().bookmarks().isValid(idx))
1177                 return;
1178         BookmarksSection::Bookmark const & bm =
1179                 theSession().bookmarks().bookmark(idx);
1180         LASSERT(!bm.filename.empty(), /**/);
1181         string const file = bm.filename.absFileName();
1182         // if the file is not opened, open it.
1183         if (!theBufferList().exists(bm.filename)) {
1184                 if (openFile)
1185                         dispatch(FuncRequest(LFUN_FILE_OPEN, file));
1186                 else
1187                         return;
1188         }
1189         // open may fail, so we need to test it again
1190         if (!theBufferList().exists(bm.filename))
1191                 return;
1192
1193         // bm can be changed when saving
1194         BookmarksSection::Bookmark tmp = bm;
1195
1196         // Special case idx == 0 used for back-from-back jump navigation
1197         if (idx == 0)
1198                 dispatch(FuncRequest(LFUN_BOOKMARK_SAVE, "0"));
1199
1200         // if the current buffer is not that one, switch to it.
1201         BufferView * doc_bv = current_view_ ?
1202                 current_view_->documentBufferView() : 0;
1203         if (!doc_bv || doc_bv->buffer().fileName() != tmp.filename) {
1204                 if (switchToBuffer) {
1205                         dispatch(FuncRequest(LFUN_BUFFER_SWITCH, file));
1206                         if (!current_view_)
1207                                 return;
1208                         doc_bv = current_view_->documentBufferView();
1209                 } else
1210                         return;
1211         }
1212
1213         // moveToPosition try paragraph id first and then paragraph (pit, pos).
1214         if (!doc_bv->moveToPosition(
1215                         tmp.bottom_pit, tmp.bottom_pos, tmp.top_id, tmp.top_pos))
1216                 return;
1217
1218         // bm changed
1219         if (idx == 0)
1220                 return;
1221
1222         // Cursor jump succeeded!
1223         Cursor const & cur = doc_bv->cursor();
1224         pit_type new_pit = cur.pit();
1225         pos_type new_pos = cur.pos();
1226         int new_id = cur.paragraph().id();
1227
1228         // if bottom_pit, bottom_pos or top_id has been changed, update bookmark
1229         // see http://www.lyx.org/trac/ticket/3092
1230         if (bm.bottom_pit != new_pit || bm.bottom_pos != new_pos
1231                 || bm.top_id != new_id) {
1232                 const_cast<BookmarksSection::Bookmark &>(bm).updatePos(
1233                         new_pit, new_pos, new_id);
1234         }
1235 }
1236
1237 // This function runs "configure" and then rereads lyx.defaults to
1238 // reconfigure the automatic settings.
1239 void GuiApplication::reconfigure(string const & option)
1240 {
1241         // emit message signal.
1242         if (current_view_)
1243                 current_view_->message(_("Running configure..."));
1244
1245         // Run configure in user lyx directory
1246         PathChanger p(package().user_support());
1247         string configure_command = package().configure_command();
1248         configure_command += option;
1249         Systemcall one;
1250         int ret = one.startscript(Systemcall::Wait, configure_command);
1251         p.pop();
1252         // emit message signal.
1253         if (current_view_)
1254                 current_view_->message(_("Reloading configuration..."));
1255         lyxrc.read(libFileSearch(QString(), "lyxrc.defaults"), false);
1256         // Re-read packages.lst
1257         LaTeXPackages::getAvailable();
1258
1259         if (ret)
1260                 Alert::information(_("System reconfiguration failed"),
1261                            _("The system reconfiguration has failed.\n"
1262                                   "Default textclass is used but LyX may "
1263                                   "not be able to work properly.\n"
1264                                   "Please reconfigure again if needed."));
1265         else
1266                 Alert::information(_("System reconfigured"),
1267                            _("The system has been reconfigured.\n"
1268                              "You need to restart LyX to make use of any\n"
1269                              "updated document class specifications."));
1270 }
1271
1272 void GuiApplication::validateCurrentView()
1273 {
1274         if (!d->views_.empty() && !current_view_) {
1275                 // currently at least one view exists but no view has the focus.
1276                 // choose the last view to make it current.
1277                 // a view without any open document is preferred.
1278                 GuiView * candidate = 0;
1279                 QHash<int, GuiView *>::const_iterator it = d->views_.begin();
1280                 QHash<int, GuiView *>::const_iterator end = d->views_.end();
1281                 for (; it != end; ++it) {
1282                         candidate = *it;
1283                         if (!candidate->documentBufferView())
1284                                 break;
1285                 }
1286                 setCurrentView(candidate);
1287         }
1288 }
1289
1290 void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
1291 {
1292         string const argument = to_utf8(cmd.argument());
1293         FuncCode const action = cmd.action();
1294
1295         LYXERR(Debug::ACTION, "cmd: " << cmd);
1296
1297         // we have not done anything wrong yet.
1298         dr.setError(false);
1299
1300         FuncStatus const flag = getStatus(cmd);
1301         if (!flag.enabled()) {
1302                 // We cannot use this function here
1303                 LYXERR(Debug::ACTION, "action "
1304                        << lyxaction.getActionName(action)
1305                        << " [" << action << "] is disabled at this location");
1306                 dr.setMessage(flag.message());
1307                 dr.setError(true);
1308                 dr.dispatched(false);
1309                 dr.screenUpdate(Update::None);
1310                 dr.clearBufferUpdate();
1311                 return;
1312         };
1313
1314         // Assumes that the action will be dispatched.
1315         dr.dispatched(true);
1316
1317         switch (cmd.action()) {
1318
1319         case LFUN_WINDOW_NEW:
1320                 createView(toqstr(cmd.argument()));
1321                 break;
1322
1323         case LFUN_WINDOW_CLOSE:
1324                 // update bookmark pit of the current buffer before window close
1325                 for (size_t i = 0; i < theSession().bookmarks().size(); ++i)
1326                         gotoBookmark(i+1, false, false);
1327                 // clear the last opened list, because
1328                 // maybe this will end the session
1329                 theSession().lastOpened().clear();
1330                 // check for valid current_view_
1331                 validateCurrentView();
1332                 if (current_view_)
1333                         current_view_->closeScheduled();
1334                 break;
1335
1336         case LFUN_LYX_QUIT:
1337                 // quitting is triggered by the gui code
1338                 // (leaving the event loop).
1339                 if (current_view_)
1340                         current_view_->message(from_utf8(N_("Exiting.")));
1341                 if (closeAllViews())
1342                         quit();
1343                 break;
1344
1345         case LFUN_SCREEN_FONT_UPDATE: {
1346                 // handle the screen font changes.
1347                 d->font_loader_.update();
1348                 // Backup current_view_
1349                 GuiView * view = current_view_;
1350                 // Set current_view_ to zero to forbid GuiWorkArea::redraw()
1351                 // to skip the refresh.
1352                 current_view_ = 0;
1353                 theBufferList().changed(false);
1354                 // Restore current_view_
1355                 current_view_ = view;
1356                 break;
1357         }
1358
1359         case LFUN_BUFFER_NEW:
1360                 validateCurrentView();
1361                 if (d->views_.empty()
1362                    || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
1363                         createView(QString(), false); // keep hidden
1364                         current_view_->newDocument(to_utf8(cmd.argument()), false);
1365                         current_view_->show();
1366                         setActiveWindow(current_view_);
1367                 } else {
1368                         current_view_->newDocument(to_utf8(cmd.argument()), false);
1369                 }
1370                 break;
1371
1372         case LFUN_BUFFER_NEW_TEMPLATE:
1373                 validateCurrentView();
1374                 if (d->views_.empty()
1375                    || (!lyxrc.open_buffers_in_tabs && current_view_->documentBufferView() != 0)) {
1376                         createView();
1377                         current_view_->newDocument(to_utf8(cmd.argument()), true);
1378                         if (!current_view_->documentBufferView())
1379                                 current_view_->close();
1380                 } else {
1381                         current_view_->newDocument(to_utf8(cmd.argument()), true);
1382                 }
1383                 break;
1384
1385         case LFUN_FILE_OPEN: {
1386                 validateCurrentView();
1387                 // FIXME: create a new method shared with LFUN_HELP_OPEN.
1388                 string const fname = to_utf8(cmd.argument());
1389                 if (d->views_.empty() || (!lyxrc.open_buffers_in_tabs
1390                           && current_view_->documentBufferView() != 0)) {
1391                         // We want the ui session to be saved per document and not per
1392                         // window number. The filename crc is a good enough identifier.
1393                         boost::crc_32_type crc;
1394                         crc = for_each(fname.begin(), fname.end(), crc);
1395                         createView(crc.checksum());
1396                         current_view_->openDocument(fname);
1397                         if (current_view_ && !current_view_->documentBufferView())
1398                                 current_view_->close();
1399                 } else
1400                         current_view_->openDocument(fname);
1401                 break;
1402         }
1403
1404         case LFUN_HELP_OPEN: {
1405                 // FIXME: create a new method shared with LFUN_FILE_OPEN.
1406                 if (current_view_ == 0)
1407                         createView();
1408                 string const arg = to_utf8(cmd.argument());
1409                 if (arg.empty()) {
1410                         current_view_->message(_("Missing argument"));
1411                         break;
1412                 }
1413                 FileName fname = i18nLibFileSearch("doc", arg, "lyx");
1414                 if (fname.empty())
1415                         fname = i18nLibFileSearch("examples", arg, "lyx");
1416
1417                 if (fname.empty()) {
1418                         lyxerr << "LyX: unable to find documentation file `"
1419                                << arg << "'. Bad installation?" << endl;
1420                         break;
1421                 }
1422                 current_view_->message(bformat(_("Opening help file %1$s..."),
1423                                                makeDisplayPath(fname.absFileName())));
1424                 Buffer * buf = current_view_->loadDocument(fname, false);
1425
1426 #ifndef DEVEL_VERSION
1427                 if (buf)
1428                         buf->setReadonly(true);
1429 #else
1430                 (void) buf;
1431 #endif
1432                 break;
1433         }
1434
1435         case LFUN_SET_COLOR: {
1436                 string lyx_name;
1437                 string const x11_name = split(to_utf8(cmd.argument()), lyx_name, ' ');
1438                 if (lyx_name.empty() || x11_name.empty()) {
1439                         if (current_view_)
1440                                 current_view_->message(
1441                                         _("Syntax: set-color <lyx_name> <x11_name>"));
1442                         break;
1443                 }
1444
1445 #if 0
1446                 // FIXME: The graphics cache no longer has a changeDisplay method.
1447                 string const graphicsbg = lcolor.getLyXName(Color_graphicsbg);
1448                 bool const graphicsbg_changed =
1449                                 lyx_name == graphicsbg && x11_name != graphicsbg;
1450                 if (graphicsbg_changed)
1451                         graphics::GCache::get().changeDisplay(true);
1452 #endif
1453
1454                 if (!lcolor.setColor(lyx_name, x11_name)) {
1455                         if (current_view_)
1456                                 current_view_->message(
1457                                         bformat(_("Set-color \"%1$s\" failed "
1458                                         "- color is undefined or "
1459                                         "may not be redefined"),
1460                                         from_utf8(lyx_name)));
1461                         break;
1462                 }
1463                 // Make sure we don't keep old colors in cache.
1464                 d->color_cache_.clear();
1465                 break;
1466         }
1467
1468         case LFUN_LYXRC_APPLY: {
1469                 // reset active key sequences, since the bindings
1470                 // are updated (bug 6064)
1471                 d->keyseq.reset();
1472                 LyXRC const lyxrc_orig = lyxrc;
1473
1474                 istringstream ss(to_utf8(cmd.argument()));
1475                 bool const success = lyxrc.read(ss);
1476
1477                 if (!success) {
1478                         lyxerr << "Warning in LFUN_LYXRC_APPLY!\n"
1479                                         << "Unable to read lyxrc data"
1480                                         << endl;
1481                         break;
1482                 }
1483
1484                 actOnUpdatedPrefs(lyxrc_orig, lyxrc);
1485                 resetGui();
1486
1487                 break;
1488         }
1489
1490         case LFUN_COMMAND_PREFIX:
1491                 dispatch(FuncRequest(LFUN_MESSAGE, d->keyseq.printOptions(true)));
1492                 break;
1493
1494         case LFUN_CANCEL: {
1495                 d->keyseq.reset();
1496                 d->meta_fake_bit = NoModifier;
1497                 GuiView * gv = currentView();
1498                 if (gv && gv->currentBufferView())
1499                         // cancel any selection
1500                         processFuncRequest(FuncRequest(LFUN_MARK_OFF));
1501                 dr.setMessage(from_ascii(N_("Cancel")));
1502                 break;
1503         }
1504         case LFUN_META_PREFIX:
1505                 d->meta_fake_bit = AltModifier;
1506                 dr.setMessage(d->keyseq.print(KeySequence::ForGui));
1507                 break;
1508
1509         // --- Menus -----------------------------------------------
1510         case LFUN_RECONFIGURE:
1511                 // argument is any additional parameter to the configure.py command
1512                 reconfigure(to_utf8(cmd.argument()));
1513                 break;
1514
1515         // --- lyxserver commands ----------------------------
1516         case LFUN_SERVER_GET_FILENAME: {
1517                 if (current_view_ && current_view_->documentBufferView()) {
1518                         docstring const fname = from_utf8(
1519                                 current_view_->documentBufferView()->buffer().absFileName());
1520                         dr.setMessage(fname);
1521                         LYXERR(Debug::INFO, "FNAME[" << fname << ']');
1522                 } else {
1523                         dr.setMessage(docstring());
1524                         LYXERR(Debug::INFO, "No current file for LFUN_SERVER_GET_FILENAME");
1525                 }
1526                 break;
1527         }
1528
1529         case LFUN_SERVER_NOTIFY: {
1530                 docstring const dispatch_buffer = d->keyseq.print(KeySequence::Portable);
1531                 dr.setMessage(dispatch_buffer);
1532                 theServer().notifyClient(to_utf8(dispatch_buffer));
1533                 break;
1534         }
1535
1536         case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
1537                 lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
1538                 break;
1539
1540         case LFUN_REPEAT: {
1541                 // repeat command
1542                 string countstr;
1543                 string rest = split(argument, countstr, ' ');
1544                 istringstream is(countstr);
1545                 int count = 0;
1546                 is >> count;
1547                 //lyxerr << "repeat: count: " << count << " cmd: " << rest << endl;
1548                 for (int i = 0; i < count; ++i)
1549                         dispatch(lyxaction.lookupFunc(rest));
1550                 break;
1551         }
1552
1553         case LFUN_COMMAND_SEQUENCE: {
1554                 // argument contains ';'-terminated commands
1555                 string arg = argument;
1556                 // FIXME: this LFUN should also work without any view.
1557                 Buffer * buffer = (current_view_ && current_view_->documentBufferView())
1558                                   ? &(current_view_->documentBufferView()->buffer()) : 0;
1559                 if (buffer)
1560                         buffer->undo().beginUndoGroup();
1561                 while (!arg.empty()) {
1562                         string first;
1563                         arg = split(arg, first, ';');
1564                         FuncRequest func(lyxaction.lookupFunc(first));
1565                         func.setOrigin(cmd.origin());
1566                         dispatch(func);
1567                 }
1568                 // the buffer may have been closed by one action
1569                 if (theBufferList().isLoaded(buffer))
1570                         buffer->undo().endUndoGroup();
1571                 break;
1572         }
1573
1574         case LFUN_COMMAND_ALTERNATIVES: {
1575                 // argument contains ';'-terminated commands
1576                 string arg = argument;
1577                 while (!arg.empty()) {
1578                         string first;
1579                         arg = split(arg, first, ';');
1580                         FuncRequest func(lyxaction.lookupFunc(first));
1581                         func.setOrigin(cmd.origin());
1582                         FuncStatus const stat = getStatus(func);
1583                         if (stat.enabled()) {
1584                                 dispatch(func);
1585                                 break;
1586                         }
1587                 }
1588                 break;
1589         }
1590
1591         case LFUN_CALL: {
1592                 FuncRequest func;
1593                 if (theTopLevelCmdDef().lock(argument, func)) {
1594                         func.setOrigin(cmd.origin());
1595                         dispatch(func);
1596                         theTopLevelCmdDef().release(argument);
1597                 } else {
1598                         if (func.action() == LFUN_UNKNOWN_ACTION) {
1599                                 // unknown command definition
1600                                 lyxerr << "Warning: unknown command definition `"
1601                                                 << argument << "'"
1602                                                 << endl;
1603                         } else {
1604                                 // recursion detected
1605                                 lyxerr << "Warning: Recursion in the command definition `"
1606                                                 << argument << "' detected"
1607                                                 << endl;
1608                         }
1609                 }
1610                 break;
1611         }
1612
1613         case LFUN_PREFERENCES_SAVE:
1614                 lyxrc.write(support::makeAbsPath("preferences",
1615                         package().user_support().absFileName()), false);
1616                 break;
1617
1618         case LFUN_BUFFER_SAVE_AS_DEFAULT: {
1619                 string const fname = addName(addPath(package().user_support().absFileName(),
1620                         "templates/"), "defaults.lyx");
1621                 Buffer defaults(fname);
1622
1623                 istringstream ss(argument);
1624                 Lexer lex;
1625                 lex.setStream(ss);
1626                 int const unknown_tokens = defaults.readHeader(lex);
1627
1628                 if (unknown_tokens != 0) {
1629                         lyxerr << "Warning in LFUN_BUFFER_SAVE_AS_DEFAULT!\n"
1630                                << unknown_tokens << " unknown token"
1631                                << (unknown_tokens == 1 ? "" : "s")
1632                                << endl;
1633                 }
1634
1635                 if (defaults.writeFile(FileName(defaults.absFileName())))
1636                         dr.setMessage(bformat(_("Document defaults saved in %1$s"),
1637                                               makeDisplayPath(fname)));
1638                 else {
1639                         dr.setError(true);
1640                         dr.setMessage(from_ascii(N_("Unable to save document defaults")));
1641                 }
1642                 break;
1643         }
1644
1645         case LFUN_BOOKMARK_GOTO:
1646                 // go to bookmark, open unopened file and switch to buffer if necessary
1647                 gotoBookmark(convert<unsigned int>(to_utf8(cmd.argument())), true, true);
1648                 dr.screenUpdate(Update::Force | Update::FitCursor);
1649                 break;
1650
1651         case LFUN_BOOKMARK_CLEAR:
1652                 theSession().bookmarks().clear();
1653                 break;
1654
1655         case LFUN_DEBUG_LEVEL_SET:
1656                 lyxerr.setLevel(Debug::value(to_utf8(cmd.argument())));
1657                 break;
1658
1659         default:
1660                 // The LFUN must be for one of GuiView, BufferView, Buffer or Cursor;
1661                 // let's try that:
1662                 if (current_view_)
1663                         current_view_->dispatch(cmd, dr);
1664                 break;
1665         }
1666 }
1667
1668
1669 docstring GuiApplication::viewStatusMessage()
1670 {
1671         // When meta-fake key is pressed, show the key sequence so far + "M-".
1672         if (d->meta_fake_bit != NoModifier)
1673                 return d->keyseq.print(KeySequence::ForGui) + "M-";
1674
1675         // Else, when a non-complete key sequence is pressed,
1676         // show the available options.
1677         if (d->keyseq.length() > 0 && !d->keyseq.deleted())
1678                 return d->keyseq.printOptions(true);
1679
1680         return docstring();
1681 }
1682
1683
1684 void GuiApplication::handleKeyFunc(FuncCode action)
1685 {
1686         char_type c = 0;
1687
1688         if (d->keyseq.length())
1689                 c = 0;
1690         GuiView * gv = currentView();
1691         LASSERT(gv && gv->currentBufferView(), return);
1692         BufferView * bv = gv->currentBufferView();
1693         bv->getIntl().getTransManager().deadkey(
1694                 c, get_accent(action).accent, bv->cursor().innerText(),
1695                 bv->cursor());
1696         // Need to clear, in case the minibuffer calls these
1697         // actions
1698         d->keyseq.clear();
1699         // copied verbatim from do_accent_char
1700         bv->cursor().resetAnchor();
1701 }
1702
1703
1704 void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state)
1705 {
1706         LYXERR(Debug::KEY, "KeySym is " << keysym.getSymbolName());
1707
1708         // Do nothing if we have nothing (JMarc)
1709         if (!keysym.isOK()) {
1710                 LYXERR(Debug::KEY, "Empty kbd action (probably composing)");
1711                 if (current_view_)
1712                         current_view_->restartCursor();
1713                 return;
1714         }
1715
1716         if (keysym.isModifier()) {
1717                 if (current_view_)
1718                         current_view_->restartCursor();
1719                 return;
1720         }
1721
1722         char_type encoded_last_key = keysym.getUCSEncoded();
1723
1724         // Do a one-deep top-level lookup for
1725         // cancel and meta-fake keys. RVDK_PATCH_5
1726         d->cancel_meta_seq.reset();
1727
1728         FuncRequest func = d->cancel_meta_seq.addkey(keysym, state);
1729         LYXERR(Debug::KEY, "action first set to [" << func.action() << ']');
1730
1731         // When not cancel or meta-fake, do the normal lookup.
1732         // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
1733         // Mostly, meta_fake_bit = NoModifier. RVDK_PATCH_5.
1734         if ((func.action() != LFUN_CANCEL) && (func.action() != LFUN_META_PREFIX)) {
1735                 // remove Caps Lock and Mod2 as a modifiers
1736                 func = d->keyseq.addkey(keysym, (state | d->meta_fake_bit));
1737                 LYXERR(Debug::KEY, "action now set to [" << func.action() << ']');
1738         }
1739
1740         // Dont remove this unless you know what you are doing.
1741         d->meta_fake_bit = NoModifier;
1742
1743         // Can this happen now ?
1744         if (func.action() == LFUN_NOACTION)
1745                 func = FuncRequest(LFUN_COMMAND_PREFIX);
1746
1747         LYXERR(Debug::KEY, " Key [action=" << func.action() << "]["
1748                 << d->keyseq.print(KeySequence::Portable) << ']');
1749
1750         // already here we know if it any point in going further
1751         // why not return already here if action == -1 and
1752         // num_bytes == 0? (Lgb)
1753
1754         if (d->keyseq.length() > 1 && current_view_)
1755                 current_view_->message(d->keyseq.print(KeySequence::ForGui));
1756
1757
1758         // Maybe user can only reach the key via holding down shift.
1759         // Let's see. But only if shift is the only modifier
1760         if (func.action() == LFUN_UNKNOWN_ACTION && state == ShiftModifier) {
1761                 LYXERR(Debug::KEY, "Trying without shift");
1762                 func = d->keyseq.addkey(keysym, NoModifier);
1763                 LYXERR(Debug::KEY, "Action now " << func.action());
1764         }
1765
1766         if (func.action() == LFUN_UNKNOWN_ACTION) {
1767                 // Hmm, we didn't match any of the keysequences. See
1768                 // if it's normal insertable text not already covered
1769                 // by a binding
1770                 if (keysym.isText() && d->keyseq.length() == 1) {
1771                         LYXERR(Debug::KEY, "isText() is true, inserting.");
1772                         func = FuncRequest(LFUN_SELF_INSERT,
1773                                            FuncRequest::KEYBOARD);
1774                 } else {
1775                         LYXERR(Debug::KEY, "Unknown, !isText() - giving up");
1776                         if (current_view_) {
1777                                 current_view_->message(_("Unknown function."));
1778                                 current_view_->restartCursor();
1779                         }
1780                         return;
1781                 }
1782         }
1783
1784         if (func.action() == LFUN_SELF_INSERT) {
1785                 if (encoded_last_key != 0) {
1786                         docstring const arg(1, encoded_last_key);
1787                         processFuncRequest(FuncRequest(LFUN_SELF_INSERT, arg,
1788                                              FuncRequest::KEYBOARD));
1789                         LYXERR(Debug::KEY, "SelfInsert arg[`" << to_utf8(arg) << "']");
1790                 }
1791         } else
1792                 processFuncRequest(func);
1793 }
1794
1795
1796 void GuiApplication::processFuncRequest(FuncRequest const & func)
1797 {
1798         lyx::dispatch(func);
1799 }
1800
1801
1802 void GuiApplication::processFuncRequestAsync(FuncRequest const & func)
1803 {
1804         addToFuncRequestQueue(func);
1805         processFuncRequestQueueAsync();
1806 }
1807
1808
1809 void GuiApplication::processFuncRequestQueue()
1810 {
1811         while (!d->func_request_queue_.empty()) {
1812                 processFuncRequest(d->func_request_queue_.front());
1813                 d->func_request_queue_.pop();
1814         }
1815 }
1816
1817
1818 void GuiApplication::processFuncRequestQueueAsync()
1819 {
1820         QTimer::singleShot(0, this, SLOT(slotProcessFuncRequestQueue()));
1821 }
1822
1823
1824 void GuiApplication::addToFuncRequestQueue(FuncRequest const & func)
1825 {
1826         d->func_request_queue_.push(func);
1827 }
1828
1829
1830 void GuiApplication::resetGui()
1831 {
1832         // Set the language defined by the user.
1833         setGuiLanguage();
1834
1835         // Read menus
1836         if (!readUIFile(toqstr(lyxrc.ui_file)))
1837                 // Gives some error box here.
1838                 return;
1839
1840         if (d->global_menubar_)
1841                 d->menus_.fillMenuBar(d->global_menubar_, 0, false);
1842
1843         QHash<int, GuiView *>::iterator it;
1844         for (it = d->views_.begin(); it != d->views_.end(); ++it) {
1845                 GuiView * gv = *it;
1846                 setCurrentView(gv);
1847                 gv->setLayoutDirection(layoutDirection());
1848                 gv->resetDialogs();
1849         }
1850
1851         processFuncRequest(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
1852 }
1853
1854
1855 void GuiApplication::createView(int view_id)
1856 {
1857         createView(QString(), true, view_id);
1858 }
1859
1860
1861 void GuiApplication::createView(QString const & geometry_arg, bool autoShow,
1862         int view_id)
1863 {
1864         // release the keyboard which might have been grabed by the global
1865         // menubar on Mac to catch shortcuts even without any GuiView.
1866         if (d->global_menubar_)
1867                 d->global_menubar_->releaseKeyboard();
1868
1869         // create new view
1870         int id = view_id;
1871         while (d->views_.find(id) != d->views_.end())
1872                 id++;
1873
1874         LYXERR(Debug::GUI, "About to create new window with ID " << id);
1875         GuiView * view = new GuiView(id);
1876         // register view
1877         d->views_[id] = view;
1878
1879         if (autoShow) {
1880                 view->show();
1881                 setActiveWindow(view);
1882         }
1883
1884         if (!geometry_arg.isEmpty()) {
1885 #ifdef Q_WS_WIN
1886                 int x, y;
1887                 int w, h;
1888                 QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)([+-][0-9]*)){0,1}" );
1889                 re.indexIn(geometry_arg);
1890                 w = re.cap(1).toInt();
1891                 h = re.cap(2).toInt();
1892                 x = re.cap(3).toInt();
1893                 y = re.cap(4).toInt();
1894                 view->setGeometry(x, y, w, h);
1895 #endif
1896         }
1897         view->setFocus();
1898 }
1899
1900
1901 Clipboard & GuiApplication::clipboard()
1902 {
1903         return d->clipboard_;
1904 }
1905
1906
1907 Selection & GuiApplication::selection()
1908 {
1909         return d->selection_;
1910 }
1911
1912
1913 FontLoader & GuiApplication::fontLoader()
1914 {
1915         return d->font_loader_;
1916 }
1917
1918
1919 Toolbars const & GuiApplication::toolbars() const
1920 {
1921         return d->toolbars_;
1922 }
1923
1924
1925 Toolbars & GuiApplication::toolbars()
1926 {
1927         return d->toolbars_;
1928 }
1929
1930
1931 Menus const & GuiApplication::menus() const
1932 {
1933         return d->menus_;
1934 }
1935
1936
1937 Menus & GuiApplication::menus()
1938 {
1939         return d->menus_;
1940 }
1941
1942
1943 QList<int> GuiApplication::viewIds() const
1944 {
1945         return d->views_.keys();
1946 }
1947
1948
1949 ColorCache & GuiApplication::colorCache()
1950 {
1951         return d->color_cache_;
1952 }
1953
1954
1955 int GuiApplication::exec()
1956 {
1957         // asynchronously handle batch commands. This event will be in
1958         // the event queue in front of other asynchronous events. Hence,
1959         // we can assume in the latter that the gui is setup already.
1960         QTimer::singleShot(0, this, SLOT(execBatchCommands()));
1961
1962         return QApplication::exec();
1963 }
1964
1965
1966 void GuiApplication::exit(int status)
1967 {
1968         QApplication::exit(status);
1969 }
1970
1971
1972 void GuiApplication::setGuiLanguage()
1973 {
1974         // Set the language defined by the user.
1975         setRcGuiLanguage();
1976
1977         QString const default_language = toqstr(Messages::defaultLanguage());
1978         LYXERR(Debug::LOCALE, "Trying to set default locale to: " << default_language);
1979         QLocale const default_locale(default_language);
1980         QLocale::setDefault(default_locale);
1981
1982         // install translation file for Qt built-in dialogs
1983         QString const language_name = QString("qt_") + default_locale.name();
1984
1985         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN).
1986         // Short-named translator can be loaded from a long name, but not the
1987         // opposite. Therefore, long name should be used without truncation.
1988         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
1989         if (!d->qt_trans_.load(language_name,
1990                         QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
1991                 LYXERR(Debug::LOCALE, "Could not find Qt translations for locale "
1992                         << language_name);
1993         } else {
1994                 LYXERR(Debug::LOCALE, "Successfully installed Qt translations for locale "
1995                         << language_name);
1996         }
1997
1998         switch (default_locale.language()) {
1999         case QLocale::Arabic :
2000         case QLocale::Hebrew :
2001         case QLocale::Persian :
2002         case QLocale::Urdu :
2003                 setLayoutDirection(Qt::RightToLeft);
2004                 break;
2005         default:
2006                 setLayoutDirection(Qt::LeftToRight);
2007         }
2008 }
2009
2010
2011 void GuiApplication::execBatchCommands()
2012 {
2013         setGuiLanguage();
2014
2015         // Read menus
2016         if (!readUIFile(toqstr(lyxrc.ui_file)))
2017                 // Gives some error box here.
2018                 return;
2019
2020 #ifdef Q_WS_MACX
2021 #if QT_VERSION > 0x040600
2022         setAttribute(Qt::AA_MacDontSwapCtrlAndMeta,lyxrc.mac_dontswap_ctrl_meta);
2023 #endif
2024         // Create the global default menubar which is shown for the dialogs
2025         // and if no GuiView is visible.
2026         // This must be done after the session was recovered to know the "last files".
2027         d->global_menubar_ = new GlobalMenuBar();
2028         d->menus_.fillMenuBar(d->global_menubar_, 0, true);
2029 #endif
2030
2031         lyx::execBatchCommands();
2032 }
2033
2034
2035 QAbstractItemModel * GuiApplication::languageModel()
2036 {
2037         if (d->language_model_)
2038                 return d->language_model_;
2039
2040         QStandardItemModel * lang_model = new QStandardItemModel(this);
2041         lang_model->insertColumns(0, 3);
2042         int current_row;
2043         QIcon speller(getPixmap("images/", "dialog-show_spellchecker", "png"));
2044         QIcon saurus(getPixmap("images/", "thesaurus-entry", "png"));
2045         Languages::const_iterator it = lyx::languages.begin();
2046         Languages::const_iterator end = lyx::languages.end();
2047         for (; it != end; ++it) {
2048                 current_row = lang_model->rowCount();
2049                 lang_model->insertRows(current_row, 1);
2050                 QModelIndex pl_item = lang_model->index(current_row, 0);
2051                 QModelIndex sp_item = lang_model->index(current_row, 1);
2052                 QModelIndex th_item = lang_model->index(current_row, 2);
2053                 lang_model->setData(pl_item, qt_(it->second.display()), Qt::DisplayRole);
2054                 lang_model->setData(pl_item, toqstr(it->second.lang()), Qt::UserRole);
2055                 lang_model->setData(sp_item, qt_(it->second.display()), Qt::DisplayRole);
2056                 lang_model->setData(sp_item, toqstr(it->second.lang()), Qt::UserRole);
2057                 if (theSpellChecker() && theSpellChecker()->hasDictionary(&it->second))
2058                         lang_model->setData(sp_item, speller, Qt::DecorationRole);
2059                 lang_model->setData(th_item, qt_(it->second.display()), Qt::DisplayRole);
2060                 lang_model->setData(th_item, toqstr(it->second.lang()), Qt::UserRole);
2061                 if (thesaurus.thesaurusInstalled(from_ascii(it->second.code())))
2062                         lang_model->setData(th_item, saurus, Qt::DecorationRole);
2063         }
2064         d->language_model_ = new QSortFilterProxyModel(this);
2065         d->language_model_->setSourceModel(lang_model);
2066 #if QT_VERSION >= 0x040300
2067         d->language_model_->setSortLocaleAware(true);
2068 #endif
2069         return d->language_model_;
2070 }
2071
2072
2073 void GuiApplication::restoreGuiSession()
2074 {
2075         if (!lyxrc.load_session)
2076                 return;
2077
2078         Session & session = theSession();
2079         LastOpenedSection::LastOpened const & lastopened =
2080                 session.lastOpened().getfiles();
2081
2082         validateCurrentView();
2083
2084         FileName active_file;
2085         // do not add to the lastfile list since these files are restored from
2086         // last session, and should be already there (regular files), or should
2087         // not be added at all (help files).
2088         for (size_t i = 0; i < lastopened.size(); ++i) {
2089                 FileName const & file_name = lastopened[i].file_name;
2090                 if (d->views_.empty() || (!lyxrc.open_buffers_in_tabs
2091                           && current_view_->documentBufferView() != 0)) {
2092                         boost::crc_32_type crc;
2093                         string const & fname = file_name.absFileName();
2094                         crc = for_each(fname.begin(), fname.end(), crc);
2095                         createView(crc.checksum());
2096                 }
2097                 current_view_->loadDocument(file_name, false);
2098
2099                 if (lastopened[i].active)
2100                         active_file = file_name;
2101         }
2102
2103         // Restore last active buffer
2104         Buffer * buffer = theBufferList().getBuffer(active_file);
2105         if (buffer && current_view_)
2106                 current_view_->setBuffer(buffer);
2107
2108         // clear this list to save a few bytes of RAM
2109         session.lastOpened().clear();
2110 }
2111
2112
2113 QString const GuiApplication::romanFontName()
2114 {
2115         QFont font;
2116         font.setKerning(false);
2117         font.setStyleHint(QFont::Serif);
2118         font.setFamily("serif");
2119
2120         return QFontInfo(font).family();
2121 }
2122
2123
2124 QString const GuiApplication::sansFontName()
2125 {
2126         QFont font;
2127         font.setKerning(false);
2128         font.setStyleHint(QFont::SansSerif);
2129         font.setFamily("sans");
2130
2131         return QFontInfo(font).family();
2132 }
2133
2134
2135 QString const GuiApplication::typewriterFontName()
2136 {
2137         QFont font;
2138         font.setKerning(false);
2139         font.setStyleHint(QFont::TypeWriter);
2140         font.setFamily("monospace");
2141
2142         return QFontInfo(font).family();
2143 }
2144
2145
2146 void GuiApplication::handleRegularEvents()
2147 {
2148         ForkedCallsController::handleCompletedProcesses();
2149 }
2150
2151
2152 bool GuiApplication::event(QEvent * e)
2153 {
2154         switch(e->type()) {
2155         case QEvent::FileOpen: {
2156                 // Open a file; this happens only on Mac OS X for now.
2157                 //
2158                 // We do this asynchronously because on startup the batch
2159                 // commands are not executed here yet and the gui is not ready
2160                 // therefore.
2161                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
2162                 FuncRequest const fr(LFUN_FILE_OPEN, qstring_to_ucs4(foe->file()));
2163                 processFuncRequestAsync(fr);
2164                 e->accept();
2165                 return true;
2166         }
2167         default:
2168                 return QApplication::event(e);
2169         }
2170 }
2171
2172
2173 bool GuiApplication::notify(QObject * receiver, QEvent * event)
2174 {
2175         try {
2176                 return QApplication::notify(receiver, event);
2177         }
2178         catch (ExceptionMessage const & e) {
2179                 switch(e.type_) {
2180                 case ErrorException:
2181                         emergencyCleanup();
2182                         setQuitOnLastWindowClosed(false);
2183                         closeAllViews();
2184                         Alert::error(e.title_, e.details_);
2185 #ifndef NDEBUG
2186                         // Properly crash in debug mode in order to get a useful backtrace.
2187                         abort();
2188 #endif
2189                         // In release mode, try to exit gracefully.
2190                         this->exit(1);
2191
2192                 case BufferException: {
2193                         if (!current_view_ || !current_view_->documentBufferView())
2194                                 return false;
2195                         Buffer * buf = &current_view_->documentBufferView()->buffer();
2196                         docstring details = e.details_ + '\n';
2197                         details += buf->emergencyWrite();
2198                         theBufferList().release(buf);
2199                         details += "\n" + _("The current document was closed.");
2200                         Alert::error(e.title_, details);
2201                         return false;
2202                 }
2203                 case WarningException:
2204                         Alert::warning(e.title_, e.details_);
2205                         return false;
2206                 }
2207         }
2208         catch (exception const & e) {
2209                 docstring s = _("LyX has caught an exception, it will now "
2210                         "attempt to save all unsaved documents and exit."
2211                         "\n\nException: ");
2212                 s += from_ascii(e.what());
2213                 Alert::error(_("Software exception Detected"), s);
2214                 lyx_exit(1);
2215         }
2216         catch (...) {
2217                 docstring s = _("LyX has caught some really weird exception, it will "
2218                         "now attempt to save all unsaved documents and exit.");
2219                 Alert::error(_("Software exception Detected"), s);
2220                 lyx_exit(1);
2221         }
2222
2223         return false;
2224 }
2225
2226
2227 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
2228 {
2229         QColor const & qcol = d->color_cache_.get(col);
2230         if (!qcol.isValid()) {
2231                 rgbcol.r = 0;
2232                 rgbcol.g = 0;
2233                 rgbcol.b = 0;
2234                 return false;
2235         }
2236         rgbcol.r = qcol.red();
2237         rgbcol.g = qcol.green();
2238         rgbcol.b = qcol.blue();
2239         return true;
2240 }
2241
2242
2243 bool Application::getRgbColorUncached(ColorCode col, RGBColor & rgbcol)
2244 {
2245         QColor const qcol(lcolor.getX11Name(col).c_str());
2246         if (!qcol.isValid()) {
2247                 rgbcol.r = 0;
2248                 rgbcol.g = 0;
2249                 rgbcol.b = 0;
2250                 return false;
2251         }
2252         rgbcol.r = qcol.red();
2253         rgbcol.g = qcol.green();
2254         rgbcol.b = qcol.blue();
2255         return true;
2256 }
2257
2258
2259 string const GuiApplication::hexName(ColorCode col)
2260 {
2261         return ltrim(fromqstr(d->color_cache_.get(col).name()), "#");
2262 }
2263
2264
2265 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
2266 {
2267         SocketNotifier * sn = new SocketNotifier(this, fd, func);
2268         d->socket_notifiers_[fd] = sn;
2269         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
2270 }
2271
2272
2273 void GuiApplication::socketDataReceived(int fd)
2274 {
2275         d->socket_notifiers_[fd]->func_();
2276 }
2277
2278
2279 void GuiApplication::unregisterSocketCallback(int fd)
2280 {
2281         d->socket_notifiers_.take(fd)->setEnabled(false);
2282 }
2283
2284
2285 void GuiApplication::commitData(QSessionManager & sm)
2286 {
2287         /// The implementation is required to avoid an application exit
2288         /// when session state save is triggered by session manager.
2289         /// The default implementation sends a close event to all
2290         /// visible top level widgets when session managment allows
2291         /// interaction.
2292         /// We are changing that to close all wiew one by one.
2293         /// FIXME: verify if the default implementation is enough now.
2294         #ifdef QT_NO_SESSIONMANAGER
2295                 #warning Qt is compiled without session manager
2296                 (void) sm;
2297         #else
2298                 if (sm.allowsInteraction() && !closeAllViews())
2299                         sm.cancel();
2300         #endif
2301 }
2302
2303
2304 void GuiApplication::unregisterView(GuiView * gv)
2305 {
2306         LASSERT(d->views_[gv->id()] == gv, /**/);
2307         d->views_.remove(gv->id());
2308         if (current_view_ == gv)
2309                 current_view_ = 0;
2310 }
2311
2312
2313 bool GuiApplication::closeAllViews()
2314 {
2315         if (d->views_.empty())
2316                 return true;
2317
2318         // When a view/window was closed before without quitting LyX, there
2319         // are already entries in the lastOpened list.
2320         theSession().lastOpened().clear();
2321
2322         QList<GuiView *> views = d->views_.values();
2323         foreach (GuiView * view, views) {
2324                 if (!view->closeScheduled())
2325                         return false;
2326         }
2327
2328         d->views_.clear();
2329         return true;
2330 }
2331
2332
2333 GuiView & GuiApplication::view(int id) const
2334 {
2335         LASSERT(d->views_.contains(id), /**/);
2336         return *d->views_.value(id);
2337 }
2338
2339
2340 void GuiApplication::hideDialogs(string const & name, Inset * inset) const
2341 {
2342         QList<GuiView *> views = d->views_.values();
2343         foreach (GuiView * view, views)
2344                 view->hideDialog(name, inset);
2345 }
2346
2347
2348 Buffer const * GuiApplication::updateInset(Inset const * inset) const
2349 {
2350         Buffer const * buffer_ = 0;
2351         QHash<int, GuiView *>::iterator end = d->views_.end();
2352         for (QHash<int, GuiView *>::iterator it = d->views_.begin(); it != end; ++it) {
2353                 if (Buffer const * ptr = (*it)->updateInset(inset))
2354                         buffer_ = ptr;
2355         }
2356         return buffer_;
2357 }
2358
2359
2360 bool GuiApplication::searchMenu(FuncRequest const & func,
2361         docstring_list & names) const
2362 {
2363         return d->menus_.searchMenu(func, names);
2364 }
2365
2366
2367 // Ensure that a file is read only once (prevents include loops)
2368 static QStringList uifiles;
2369 // store which ui files define Toolbars
2370 static QStringList toolbar_uifiles;
2371
2372
2373 GuiApplication::ReturnValues GuiApplication::readUIFile(FileName ui_path)
2374 {
2375         enum {
2376                 ui_menuset = 1,
2377                 ui_toolbars,
2378                 ui_toolbarset,
2379                 ui_include,
2380                 ui_format,
2381                 ui_last
2382         };
2383
2384         LexerKeyword uitags[] = {
2385                 { "format", ui_format },
2386                 { "include", ui_include },
2387                 { "menuset", ui_menuset },
2388                 { "toolbars", ui_toolbars },
2389                 { "toolbarset", ui_toolbarset }
2390         };
2391
2392         Lexer lex(uitags);
2393         lex.setFile(ui_path);
2394         if (!lex.isOK()) {
2395                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
2396                                          << endl;
2397         }
2398
2399         if (lyxerr.debugging(Debug::PARSER))
2400                 lex.printTable(lyxerr);
2401
2402         bool error = false;
2403         // format before introduction of format tag
2404         unsigned int format = 0;
2405         while (lex.isOK()) {
2406                 int const status = lex.lex();
2407
2408                 // we have to do this check here, outside the switch,
2409                 // because otherwise we would start reading include files,
2410                 // e.g., if the first tag we hit was an include tag.
2411                 if (status == ui_format)
2412                         if (lex.next()) {
2413                                 format = lex.getInteger();
2414                                 continue;
2415                         }
2416
2417                 // this will trigger unless the first tag we hit is a format
2418                 // tag, with the right format.
2419                 if (format != LFUN_FORMAT)
2420                         return FormatMismatch;
2421
2422                 switch (status) {
2423                 case Lexer::LEX_FEOF:
2424                         continue;
2425
2426                 case ui_include: {
2427                         lex.next(true);
2428                         QString const file = toqstr(lex.getString());
2429                         bool const success = readUIFile(file, true);
2430                         if (!success) {
2431                                 LYXERR0("Failed to read inlcuded file: " << fromqstr(file));
2432                                 return ReadError;
2433                         }
2434                         break;
2435                 }
2436
2437                 case ui_menuset:
2438                         d->menus_.read(lex);
2439                         break;
2440
2441                 case ui_toolbarset:
2442                         d->toolbars_.readToolbars(lex);
2443                         break;
2444
2445                 case ui_toolbars:
2446                         d->toolbars_.readToolbarSettings(lex);
2447                         toolbar_uifiles.push_back(toqstr(ui_path.absFileName()));
2448                         break;
2449
2450                 default:
2451                         if (!rtrim(lex.getString()).empty())
2452                                 lex.printError("LyX::ReadUIFile: "
2453                                                "Unknown menu tag: `$$Token'");
2454                         else
2455                                 LYXERR0("Error with status: " << status);
2456                         error = true;
2457                         break;
2458                 }
2459
2460         }
2461         return (error ? ReadError : ReadOK);
2462 }
2463
2464
2465 bool GuiApplication::readUIFile(QString const & name, bool include)
2466 {
2467         LYXERR(Debug::INIT, "About to read " << name << "...");
2468
2469         FileName ui_path;
2470         if (include) {
2471                 ui_path = libFileSearch("ui", name, "inc");
2472                 if (ui_path.empty())
2473                         ui_path = libFileSearch("ui", changeExtension(name, "inc"));
2474         } else {
2475                 ui_path = libFileSearch("ui", name, "ui");
2476         }
2477
2478         if (ui_path.empty()) {
2479                 static const QString defaultUIFile = "default";
2480                 LYXERR(Debug::INIT, "Could not find " << name);
2481                 if (include) {
2482                         Alert::warning(_("Could not find UI definition file"),
2483                                 bformat(_("Error while reading the included file\n%1$s\n"
2484                                         "Please check your installation."), qstring_to_ucs4(name)));
2485                         return false;
2486                 }
2487                 if (name == defaultUIFile) {
2488                         LYXERR(Debug::INIT, "Could not find default UI file!!");
2489                         Alert::warning(_("Could not find default UI file"),
2490                                 _("LyX could not find the default UI file!\n"
2491                                   "Please check your installation."));
2492                         return false;
2493                 }
2494                 Alert::warning(_("Could not find UI definition file"),
2495                 bformat(_("Error while reading the configuration file\n%1$s\n"
2496                         "Falling back to default.\n"
2497                         "Please look under Tools>Preferences>User Interface and\n"
2498                         "check which User Interface file you are using."), qstring_to_ucs4(name)));
2499                 return readUIFile(defaultUIFile, false);
2500         }
2501
2502         QString const uifile = toqstr(ui_path.absFileName());
2503         if (uifiles.contains(uifile)) {
2504                 if (!include) {
2505                         // We are reading again the top uifile so reset the safeguard:
2506                         uifiles.clear();
2507                         d->menus_.reset();
2508                         d->toolbars_.reset();
2509                 } else {
2510                         LYXERR(Debug::INIT, "UI file '" << name << "' has been read already. "
2511                                 << "Is this an include loop?");
2512                         return false;
2513                 }
2514         }
2515         uifiles.push_back(uifile);
2516
2517         LYXERR(Debug::INIT, "Found " << name << " in " << ui_path);
2518
2519         ReturnValues retval = readUIFile(ui_path);
2520
2521         if (retval == FormatMismatch) {
2522                 LYXERR(Debug::FILES, "Converting ui file to format " << LFUN_FORMAT);
2523                 FileName const tempfile = FileName::tempName("convert_ui");
2524                 bool const success = prefs2prefs(ui_path, tempfile, true);
2525                 if (!success) {
2526                         LYXERR0("Unable to convert " << ui_path.absFileName() <<
2527                                 " to format " << LFUN_FORMAT << ".");
2528                 } else {
2529                         retval = readUIFile(tempfile);
2530                         tempfile.removeFile();
2531                 }
2532         }
2533
2534         if (retval != ReadOK) {
2535                 LYXERR0("Unable to read UI file: " << ui_path.absFileName());
2536                 return false;
2537         }
2538
2539         if (include)
2540                 return true;
2541
2542         QSettings settings;
2543         settings.beginGroup("ui_files");
2544         bool touched = false;
2545         for (int i = 0; i != uifiles.size(); ++i) {
2546                 QFileInfo fi(uifiles[i]);
2547                 QDateTime const date_value = fi.lastModified();
2548                 QString const name_key = QString::number(i);
2549                 // if an ui file which defines Toolbars has changed,
2550                 // we have to reset the settings
2551                 if (toolbar_uifiles.contains(uifiles[i])
2552                  && (!settings.contains(name_key)
2553                  || settings.value(name_key).toString() != uifiles[i]
2554                  || settings.value(name_key + "/date").toDateTime() != date_value)) {
2555                         touched = true;
2556                         settings.setValue(name_key, uifiles[i]);
2557                         settings.setValue(name_key + "/date", date_value);
2558                 }
2559         }
2560         settings.endGroup();
2561         if (touched)
2562                 settings.remove("views");
2563
2564         return true;
2565 }
2566
2567
2568 void GuiApplication::onLastWindowClosed()
2569 {
2570         if (d->global_menubar_)
2571                 d->global_menubar_->grabKeyboard();
2572 }
2573
2574
2575 void GuiApplication::startLongOperation() {
2576         d->key_checker_.start();
2577 }
2578
2579
2580 bool GuiApplication::longOperationCancelled() {
2581         return d->key_checker_.pressed();
2582 }
2583
2584
2585 void GuiApplication::stopLongOperation() {
2586         d->key_checker_.stop();
2587 }
2588
2589
2590 ////////////////////////////////////////////////////////////////////////
2591 //
2592 // X11 specific stuff goes here...
2593
2594 #ifdef Q_WS_X11
2595 bool GuiApplication::x11EventFilter(XEvent * xev)
2596 {
2597         if (!current_view_)
2598                 return false;
2599
2600         switch (xev->type) {
2601         case SelectionRequest: {
2602                 if (xev->xselectionrequest.selection != XA_PRIMARY)
2603                         break;
2604                 LYXERR(Debug::SELECTION, "X requested selection.");
2605                 BufferView * bv = current_view_->currentBufferView();
2606                 if (bv) {
2607                         docstring const sel = bv->requestSelection();
2608                         if (!sel.empty())
2609                                 d->selection_.put(sel);
2610                 }
2611                 break;
2612         }
2613         case SelectionClear: {
2614                 if (xev->xselectionclear.selection != XA_PRIMARY)
2615                         break;
2616                 LYXERR(Debug::SELECTION, "Lost selection.");
2617                 BufferView * bv = current_view_->currentBufferView();
2618                 if (bv)
2619                         bv->clearSelection();
2620                 break;
2621         }
2622         }
2623         return false;
2624 }
2625 #endif
2626
2627 } // namespace frontend
2628
2629
2630 void hideDialogs(std::string const & name, Inset * inset)
2631 {
2632         if (theApp())
2633                 frontend::guiApp->hideDialogs(name, inset);
2634 }
2635
2636
2637 ////////////////////////////////////////////////////////////////////
2638 //
2639 // Font stuff
2640 //
2641 ////////////////////////////////////////////////////////////////////
2642
2643 frontend::FontLoader & theFontLoader()
2644 {
2645         LASSERT(frontend::guiApp, /**/);
2646         return frontend::guiApp->fontLoader();
2647 }
2648
2649
2650 frontend::FontMetrics const & theFontMetrics(Font const & f)
2651 {
2652         return theFontMetrics(f.fontInfo());
2653 }
2654
2655
2656 frontend::FontMetrics const & theFontMetrics(FontInfo const & f)
2657 {
2658         LASSERT(frontend::guiApp, /**/);
2659         return frontend::guiApp->fontLoader().metrics(f);
2660 }
2661
2662
2663 ////////////////////////////////////////////////////////////////////
2664 //
2665 // Misc stuff
2666 //
2667 ////////////////////////////////////////////////////////////////////
2668
2669 frontend::Clipboard & theClipboard()
2670 {
2671         LASSERT(frontend::guiApp, /**/);
2672         return frontend::guiApp->clipboard();
2673 }
2674
2675
2676 frontend::Selection & theSelection()
2677 {
2678         LASSERT(frontend::guiApp, /**/);
2679         return frontend::guiApp->selection();
2680 }
2681
2682
2683 } // namespace lyx
2684
2685 #include "moc_GuiApplication.cpp"