]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
simplify window creation.
[lyx.git] / src / frontends / qt4 / GuiApplication.cpp
1 /**
2  * \file GuiApplication.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author John Levon
8  * \author Abdelrazak Younes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "GuiApplication.h"
16
17 #include "qt_helpers.h"
18 #include "GuiImage.h"
19 #include "GuiView.h"
20
21 #include "frontends/alert.h"
22 #include "frontends/Application.h"
23 #include "frontends/NoGuiFontLoader.h"
24 #include "frontends/NoGuiFontMetrics.h"
25 #include "frontends/FontLoader.h"
26 #include "frontends/FontMetrics.h"
27
28 #include "graphics/LoaderQueue.h"
29
30 #include "support/ExceptionMessage.h"
31 #include "support/FileName.h"
32 #include "support/lstrings.h"
33 #include "support/os.h"
34 #include "support/Package.h"
35
36 #include "BufferList.h"
37 #include "BufferView.h"
38 #include "debug.h"
39 #include "Font.h"
40 #include "FuncRequest.h"
41 #include "gettext.h"
42 #include "LyX.h"
43 #include "LyXFunc.h"
44 #include "LyXRC.h"
45 #include "version.h"
46
47 #include <QApplication>
48 #include <QClipboard>
49 #include <QEventLoop>
50 #include <QFileOpenEvent>
51 #include <QLocale>
52 #include <QLibraryInfo>
53 #include <QPixmapCache>
54 #include <QRegExp>
55 #include <QSessionManager>
56 #include <QSocketNotifier>
57 #include <QTextCodec>
58 #include <QTimer>
59 #include <QTranslator>
60 #include <QWidget>
61
62 #ifdef Q_WS_X11
63 #include <X11/Xatom.h>
64 #include <X11/Xlib.h>
65 #undef CursorShape
66 #undef None
67 #endif
68
69 #include <boost/bind.hpp>
70
71 #include <exception>
72
73 using std::endl;
74 using std::map;
75 using std::string;
76 using std::vector;
77
78
79 namespace lyx {
80
81 frontend::Application * createApplication(int & argc, char * argv[])
82 {
83         return new frontend::GuiApplication(argc, argv);
84 }
85
86
87 namespace frontend {
88
89 class SocketNotifier : public QSocketNotifier
90 {
91 public:
92         /// connect a connection notification from the LyXServerSocket
93         SocketNotifier(QObject * parent, int fd, Application::SocketCallback func)
94                 : QSocketNotifier(fd, QSocketNotifier::Read, parent), func_(func)
95         {}
96
97 public:
98         /// The callback function
99         Application::SocketCallback func_;
100 };
101
102
103 ////////////////////////////////////////////////////////////////////////
104 // Mac specific stuff goes here...
105
106 class MenuTranslator : public QTranslator
107 {
108 public:
109         MenuTranslator(QObject * parent)
110                 : QTranslator(parent)
111         {}
112
113         QString translate(const char * /*context*/, 
114           const char * sourceText, 
115           const char * /*comment*/ = 0) 
116         {
117                 string const s = sourceText;
118                 if (s == N_("About %1") || s == N_("Preferences") 
119                                 || s == N_("Reconfigure") || s == N_("Quit %1"))
120                         return qt_(s);
121                 else 
122                         return QString();
123         }
124 };
125
126
127 ///////////////////////////////////////////////////////////////
128 // You can find more platform specific stuff
129 // at the end of this file...
130 ///////////////////////////////////////////////////////////////
131
132
133 using support::FileName;
134
135 GuiApplication * guiApp;
136
137
138 GuiApplication::GuiApplication(int & argc, char ** argv)
139         : QApplication(argc, argv), Application(), current_view_(0)
140 {
141         QString app_name = "LyX";
142         QCoreApplication::setOrganizationName(app_name);
143         QCoreApplication::setOrganizationDomain("lyx.org");
144         QCoreApplication::setApplicationName(app_name + "-" + lyx_version);
145
146         // Qt bug? setQuitOnLastWindowClosed(true); does not work
147         setQuitOnLastWindowClosed(false);
148
149 #ifdef Q_WS_X11
150         // doubleClickInterval() is 400 ms on X11 which is just too long.
151         // On Windows and Mac OS X, the operating system's value is used.
152         // On Microsoft Windows, calling this function sets the double
153         // click interval for all applications. So we don't!
154         QApplication::setDoubleClickInterval(300);
155 #endif
156
157         // install translation file for Qt built-in dialogs
158         QString language_name = QString("qt_") + QLocale::system().name();
159         
160         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN). 
161         // Short-named translator can be loaded from a long name, but not the
162         // opposite. Therefore, long name should be used without truncation.
163         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
164         if (qt_trans_.load(language_name,
165                 QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
166         {
167                 installTranslator(&qt_trans_);
168                 // even if the language calls for RtL, don't do that
169                 setLayoutDirection(Qt::LeftToRight);
170                 LYXERR(Debug::GUI, "Successfully installed Qt translations for locale "
171                         << fromqstr(language_name));
172         } else
173                 LYXERR(Debug::GUI, "Could not find  Qt translations for locale "
174                         << fromqstr(language_name));
175
176 #ifdef Q_WS_MACX
177         // This allows to translate the strings that appear in the LyX menu.
178         addMenuTranslator();
179 #endif
180
181         using namespace lyx::graphics;
182
183         Image::newImage = boost::bind(&GuiImage::newImage);
184         Image::loadableFormats = boost::bind(&GuiImage::loadableFormats);
185
186         // needs to be done before reading lyxrc
187         QWidget w;
188         lyxrc.dpi = (w.logicalDpiX() + w.logicalDpiY()) / 2;
189
190         LoaderQueue::setPriority(10,100);
191
192         guiApp = this;
193
194         // Set the cache to 5120 kilobytes which corresponds to screen size of
195         // 1280 by 1024 pixels with a color depth of 32 bits.
196         QPixmapCache::setCacheLimit(5120);
197
198         // Initialize RC Fonts
199         if (lyxrc.roman_font_name.empty())
200                 lyxrc.roman_font_name = fromqstr(romanFontName());
201
202         if (lyxrc.sans_font_name.empty())
203                 lyxrc.sans_font_name = fromqstr(sansFontName());
204
205         if (lyxrc.typewriter_font_name.empty())
206                 lyxrc.typewriter_font_name = fromqstr(typewriterFontName());
207 }
208
209
210 GuiApplication::~GuiApplication()
211 {
212         socket_notifiers_.clear();
213 }
214
215
216 void GuiApplication::resetGui()
217 {
218         map<int, GuiView *>::iterator it;
219         for (it = views_.begin(); it != views_.end(); ++it)
220                 it->second->resetDialogs();
221 }
222
223
224 static void updateIds(map<int, GuiView *> const & stdmap, vector<int> & ids)
225 {
226         ids.clear();
227         map<int, GuiView *>::const_iterator it;
228         for (it = stdmap.begin(); it != stdmap.end(); ++it)
229                 ids.push_back(it->first);
230 }
231
232
233 void GuiApplication::createView(string const & geometry_arg)
234 {
235         updateIds(views_, view_ids_);
236         int id = 0;
237         while (views_.find(id) != views_.end())
238                 id++;
239         views_[id] = new GuiView(id);
240         updateIds(views_, view_ids_);
241
242         GuiView * view  = views_[id];
243         theLyXFunc().setLyXView(view);
244
245         view->show();
246         if (!geometry_arg.empty()) {
247 #ifdef Q_WS_WIN
248                 int x, y;
249                 int w, h;
250                 QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)([+-][0-9]*)){0,1}" );
251                 re.indexIn(toqstr(geometry_arg.c_str()));
252                 w = re.cap(1).toInt();
253                 h = re.cap(2).toInt();
254                 x = re.cap(3).toInt();
255                 y = re.cap(4).toInt();
256                 view->setGeometry(x, y, w, h);
257 #endif
258         }
259         view->setFocus();
260
261         setCurrentView(*view);
262 }
263
264
265
266
267 Clipboard & GuiApplication::clipboard()
268 {
269         return clipboard_;
270 }
271
272
273 Selection & GuiApplication::selection()
274 {
275         return selection_;
276 }
277
278
279 int GuiApplication::exec()
280 {
281         QTimer::singleShot(1, this, SLOT(execBatchCommands()));
282         return QApplication::exec();
283 }
284
285
286 void GuiApplication::exit(int status)
287 {
288         QApplication::exit(status);
289 }
290
291
292 void GuiApplication::execBatchCommands()
293 {
294         LyX::ref().execBatchCommands();
295 }
296
297
298 QString const GuiApplication::romanFontName()
299 {
300         QFont font;
301         font.setKerning(false);
302         font.setStyleHint(QFont::Serif);
303         font.setFamily("serif");
304
305         return QFontInfo(font).family();
306 }
307
308
309 QString const GuiApplication::sansFontName()
310 {
311         QFont font;
312         font.setKerning(false);
313         font.setStyleHint(QFont::SansSerif);
314         font.setFamily("sans");
315
316         return QFontInfo(font).family();
317 }
318
319
320 QString const GuiApplication::typewriterFontName()
321 {
322         QFont font;
323         font.setKerning(false);
324         font.setStyleHint(QFont::TypeWriter);
325         font.setFamily("monospace");
326
327         return QFontInfo(font).family();
328 }
329
330
331 bool GuiApplication::event(QEvent * e)
332 {
333         switch(e->type()) {
334         case QEvent::FileOpen: {
335                 // Open a file; this happens only on Mac OS X for now
336                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
337
338                 if (!current_view_ || !current_view_->view())
339                         // The application is not properly initialized yet.
340                         // So we acknowledge the event and delay the file opening
341                         // until LyX is ready.
342                         // FIXME UNICODE: FileName accept an utf8 encoded string.
343                         LyX::ref().addFileToLoad(FileName(fromqstr(foe->file())));
344                 else
345                         lyx::dispatch(FuncRequest(LFUN_FILE_OPEN,
346                                 qstring_to_ucs4(foe->file())));
347
348                 e->accept();
349                 return true;
350         }
351         default:
352                 return QApplication::event(e);
353         }
354 }
355
356
357 bool GuiApplication::notify(QObject * receiver, QEvent * event)
358 {
359         try {
360                 return QApplication::notify(receiver, event);
361         }
362         catch (support::ExceptionMessage const & e) {
363                 if (e.type_ == support::ErrorException) {
364                         Alert::error(e.title_, e.details_);
365                         LyX::cref().emergencyCleanup();
366                         QApplication::exit(1);
367                 } else if (e.type_ == support::WarningException) {
368                         Alert::warning(e.title_, e.details_);
369                         return false;
370                 }
371         }
372         catch (std::exception const & e) {
373                 docstring s = _("LyX has caught an exception, it will now "
374                         "attemp to save all unsaved documents and exit."
375                         "\n\nException: ");
376                 s += from_ascii(e.what());
377                 Alert::error(_("Software exception Detected"), s);
378                 LyX::cref().emergencyCleanup();
379                 QApplication::exit(1);
380         }
381         catch (...) {
382                 docstring s = _("LyX has caught some really weird exception, it will "
383                         "now attemp to save all unsaved documents and exit.");
384                 Alert::error(_("Software exception Detected"), s);
385                 LyX::cref().emergencyCleanup();
386                 QApplication::exit(1);
387         }
388
389         return false;
390 }
391
392
393 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
394 {
395         QColor const & qcol = color_cache_.get(col);
396         if (!qcol.isValid()) {
397                 rgbcol.r = 0;
398                 rgbcol.g = 0;
399                 rgbcol.b = 0;
400                 return false;
401         }
402         rgbcol.r = qcol.red();
403         rgbcol.g = qcol.green();
404         rgbcol.b = qcol.blue();
405         return true;
406 }
407
408
409 string const GuiApplication::hexName(ColorCode col)
410 {
411         return support::ltrim(fromqstr(color_cache_.get(col).name()), "#");
412 }
413
414
415 void GuiApplication::updateColor(ColorCode)
416 {
417         // FIXME: Bleh, can't we just clear them all at once ?
418         color_cache_.clear();
419 }
420
421
422 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
423 {
424         SocketNotifier * sn = new SocketNotifier(this, fd, func);
425         socket_notifiers_[fd] = sn;
426         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
427 }
428
429
430 void GuiApplication::socketDataReceived(int fd)
431 {
432         socket_notifiers_[fd]->func_();
433 }
434
435
436 void GuiApplication::unregisterSocketCallback(int fd)
437 {
438         socket_notifiers_.erase(fd);
439 }
440
441
442 void GuiApplication::commitData(QSessionManager & sm)
443 {
444         /// The implementation is required to avoid an application exit
445         /// when session state save is triggered by session manager.
446         /// The default implementation sends a close event to all
447         /// visible top level widgets when session managment allows
448         /// interaction.
449         /// We are changing that to write all unsaved buffers...
450         if (sm.allowsInteraction() && !theBufferList().quitWriteAll())
451                 sm.cancel();
452 }
453
454
455 void GuiApplication::addMenuTranslator()
456 {
457         installTranslator(new MenuTranslator(this));
458 }
459
460
461 bool GuiApplication::unregisterView(int id)
462 {
463         updateIds(views_, view_ids_);
464         BOOST_ASSERT(views_.find(id) != views_.end());
465         BOOST_ASSERT(views_[id]);
466
467         map<int, GuiView *>::iterator it;
468         for (it = views_.begin(); it != views_.end(); ++it) {
469                 if (it->first == id) {
470                         views_.erase(id);
471                         break;
472                 }
473         }
474         updateIds(views_, view_ids_);
475         return true;
476 }
477
478
479 bool GuiApplication::closeAllViews()
480 {
481         updateIds(views_, view_ids_);
482         if (views_.empty()) {
483                 // quit in CloseEvent will not be triggert
484                 qApp->quit();
485                 return true;
486         }
487
488         map<int, GuiView*> const cmap = views_;
489         map<int, GuiView*>::const_iterator it;
490         for (it = cmap.begin(); it != cmap.end(); ++it) {
491                 // TODO: return false when close event was ignored
492                 //       e.g. quitWriteAll()->'Cancel'
493                 //       maybe we need something like 'bool closeView()'
494                 it->second->close();
495                 // unregisterd by the CloseEvent
496         }
497
498         views_.clear();
499         view_ids_.clear();
500         return true;
501 }
502
503
504 GuiView & GuiApplication::view(int id) const
505 {
506         BOOST_ASSERT(views_.find(id) != views_.end());
507         return *views_.find(id)->second;
508 }
509
510
511 void GuiApplication::hideDialogs(string const & name, Inset * inset) const
512 {
513         vector<int>::const_iterator it = view_ids_.begin();
514         vector<int>::const_iterator const end = view_ids_.end();
515         for (; it != end; ++it)
516                 view(*it).hideDialog(name, inset);
517 }
518
519
520 Buffer const * GuiApplication::updateInset(Inset const * inset) const
521 {
522         Buffer const * buffer_ = 0;
523         vector<int>::const_iterator it = view_ids_.begin();
524         vector<int>::const_iterator const end = view_ids_.end();
525         for (; it != end; ++it) {
526                 Buffer const * ptr = view(*it).updateInset(inset);
527                 if (ptr)
528                         buffer_ = ptr;
529         }
530         return buffer_;
531 }
532
533
534 ////////////////////////////////////////////////////////////////////////
535 // X11 specific stuff goes here...
536 #ifdef Q_WS_X11
537 bool GuiApplication::x11EventFilter(XEvent * xev)
538 {
539         if (!current_view_)
540                 return false;
541
542         switch (xev->type) {
543         case SelectionRequest: {
544                 if (xev->xselectionrequest.selection != XA_PRIMARY)
545                         break;
546                 LYXERR(Debug::GUI, "X requested selection.");
547                 BufferView * bv = current_view_->view();
548                 if (bv) {
549                         docstring const sel = bv->requestSelection();
550                         if (!sel.empty())
551                                 selection_.put(sel);
552                 }
553                 break;
554         }
555         case SelectionClear: {
556                 if (xev->xselectionclear.selection != XA_PRIMARY)
557                         break;
558                 LYXERR(Debug::GUI, "Lost selection.");
559                 BufferView * bv = current_view_->view();
560                 if (bv)
561                         bv->clearSelection();
562                 break;
563         }
564         }
565         return false;
566 }
567 #endif
568
569 } // namespace frontend
570
571
572 ////////////////////////////////////////////////////////////////////
573 //
574 // Font stuff
575 //
576 ////////////////////////////////////////////////////////////////////
577
578 frontend::FontLoader & theFontLoader()
579 {
580         static frontend::NoGuiFontLoader no_gui_font_loader;
581
582         if (!use_gui)
583                 return no_gui_font_loader;
584
585         BOOST_ASSERT(frontend::guiApp);
586         return frontend::guiApp->fontLoader();
587 }
588
589
590 frontend::FontMetrics const & theFontMetrics(Font const & f)
591 {
592         return theFontMetrics(f.fontInfo());
593 }
594
595
596 frontend::FontMetrics const & theFontMetrics(FontInfo const & f)
597 {
598         static frontend::NoGuiFontMetrics no_gui_font_metrics;
599
600         if (!use_gui)
601                 return no_gui_font_metrics;
602
603         BOOST_ASSERT(frontend::guiApp);
604         return frontend::guiApp->fontLoader().metrics(f);
605 }
606
607
608 frontend::Clipboard & theClipboard()
609 {
610         BOOST_ASSERT(frontend::guiApp);
611         return frontend::guiApp->clipboard();
612 }
613
614
615 frontend::Selection & theSelection()
616 {
617         BOOST_ASSERT(frontend::guiApp);
618         return frontend::guiApp->selection();
619 }
620
621 } // namespace lyx
622
623 #include "GuiApplication_moc.cpp"