]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.cpp
Transfer geometry related session code from LyX::newLyXView() to GuiView::setGeometry().
[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 "GuiView.h"
18 #include "qt_helpers.h"
19 #include "GuiImage.h"
20
21 #include "frontends/alert.h"
22
23 #include "graphics/LoaderQueue.h"
24
25 #include "support/ExceptionMessage.h"
26 #include "support/FileName.h"
27 #include "support/lstrings.h"
28 #include "support/os.h"
29 #include "support/Package.h"
30
31 #include "BufferList.h"
32 #include "BufferView.h"
33 #include "debug.h"
34 #include "FuncRequest.h"
35 #include "gettext.h"
36 #include "LyX.h"
37 #include "LyXFunc.h"
38 #include "LyXRC.h"
39
40 #include <QApplication>
41 #include <QClipboard>
42 #include <QEventLoop>
43 #include <QFileOpenEvent>
44 #include <QLocale>
45 #include <QLibraryInfo>
46 #include <QPixmapCache>
47 #include <QSessionManager>
48 #include <QSocketNotifier>
49 #include <QTextCodec>
50 #include <QTimer>
51 #include <QTranslator>
52 #include <QWidget>
53
54 #ifdef Q_WS_X11
55 #include <X11/Xatom.h>
56 #include <X11/Xlib.h>
57 #undef CursorShape
58 #undef None
59 #endif
60
61 #include <boost/bind.hpp>
62
63 #include <exception>
64
65 using std::string;
66 using std::endl;
67
68
69 namespace lyx {
70
71 frontend::Application * createApplication(int & argc, char * argv[])
72 {
73         return new frontend::GuiApplication(argc, argv);
74 }
75
76
77 namespace frontend {
78
79 class SocketNotifier : public QSocketNotifier
80 {
81 public:
82         /// connect a connection notification from the LyXServerSocket
83         SocketNotifier(QObject * parent, int fd, Application::SocketCallback func)
84                 : QSocketNotifier(fd, QSocketNotifier::Read, parent), func_(func)
85         {}
86
87 public:
88         /// The callback function
89         Application::SocketCallback func_;
90 };
91
92
93 ////////////////////////////////////////////////////////////////////////
94 // Mac specific stuff goes here...
95
96 class MenuTranslator : public QTranslator
97 {
98 public:
99         MenuTranslator(QObject * parent)
100                 : QTranslator(parent)
101         {}
102
103         QString translate(const char * /*context*/, 
104           const char * sourceText, 
105           const char * /*comment*/ = 0) 
106         {
107                 string const s = sourceText;
108                 if (s == N_("About %1") || s == N_("Preferences") 
109                                 || s == N_("Reconfigure") || s == N_("Quit %1"))
110                         return qt_(s);
111                 else 
112                         return QString();
113         }
114 };
115
116
117 ///////////////////////////////////////////////////////////////
118 // You can find more platform specific stuff
119 // at the end of this file...
120 ///////////////////////////////////////////////////////////////
121
122
123 using support::FileName;
124
125 GuiApplication * guiApp;
126
127
128 GuiApplication::GuiApplication(int & argc, char ** argv)
129         : QApplication(argc, argv), Application()
130 {
131         QCoreApplication::setOrganizationName("The LyX Community");
132         QCoreApplication::setOrganizationDomain("lyx.org");
133         QCoreApplication::setApplicationName("LyX");
134
135         // Qt bug? setQuitOnLastWindowClosed(true); does not work
136         setQuitOnLastWindowClosed(false);
137
138 #ifdef Q_WS_X11
139         // doubleClickInterval() is 400 ms on X11 which is just too long.
140         // On Windows and Mac OS X, the operating system's value is used.
141         // On Microsoft Windows, calling this function sets the double
142         // click interval for all applications. So we don't!
143         QApplication::setDoubleClickInterval(300);
144 #endif
145
146         // install translation file for Qt built-in dialogs
147         QString language_name = QString("qt_") + QLocale::system().name();
148         
149         // language_name can be short (e.g. qt_zh) or long (e.g. qt_zh_CN). 
150         // Short-named translator can be loaded from a long name, but not the
151         // opposite. Therefore, long name should be used without truncation.
152         // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
153         if (qt_trans_.load(language_name,
154                 QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
155         {
156                 installTranslator(&qt_trans_);
157                 // even if the language calls for RtL, don't do that
158                 setLayoutDirection(Qt::LeftToRight);
159                 LYXERR(Debug::GUI)
160                         << "Successfully installed Qt translations for locale "
161                         << fromqstr(language_name) << std::endl;
162         } else
163                 LYXERR(Debug::GUI)
164                         << "Could not find  Qt translations for locale "
165                         << fromqstr(language_name) << std::endl;
166
167 #ifdef Q_WS_MACX
168         // This allows to translate the strings that appear in the LyX menu.
169         addMenuTranslator();
170 #endif
171
172         using namespace lyx::graphics;
173
174         Image::newImage = boost::bind(&GuiImage::newImage);
175         Image::loadableFormats = boost::bind(&GuiImage::loadableFormats);
176
177         // needs to be done before reading lyxrc
178         QWidget w;
179         lyxrc.dpi = (w.logicalDpiX() + w.logicalDpiY()) / 2;
180
181         LoaderQueue::setPriority(10,100);
182
183         guiApp = this;
184
185         // Set the cache to 5120 kilobytes which corresponds to screen size of
186         // 1280 by 1024 pixels with a color depth of 32 bits.
187         QPixmapCache::setCacheLimit(5120);
188 }
189
190
191 GuiApplication::~GuiApplication()
192 {
193         socket_notifiers_.clear();
194 }
195
196
197 LyXView & GuiApplication::createView(string const & geometryArg)
198 {
199         int const id = gui_.createRegisteredView();
200         GuiView & view = static_cast<GuiView &>(gui_.view(id));
201         theLyXFunc().setLyXView(&view);
202
203         view.init();
204         view.setGeometry(geometryArg);
205         view.setFocus();
206
207         setCurrentView(view);
208
209         return view;
210 }
211
212
213
214
215 Clipboard & GuiApplication::clipboard()
216 {
217         return clipboard_;
218 }
219
220
221 Selection & GuiApplication::selection()
222 {
223         return selection_;
224 }
225
226
227 int GuiApplication::exec()
228 {
229         QTimer::singleShot(1, this, SLOT(execBatchCommands()));
230         return QApplication::exec();
231 }
232
233
234 void GuiApplication::exit(int status)
235 {
236         QApplication::exit(status);
237 }
238
239
240 void GuiApplication::execBatchCommands()
241 {
242         LyX::ref().execBatchCommands();
243 }
244
245
246 string const GuiApplication::romanFontName()
247 {
248         QFont font;
249         font.setKerning(false);
250         font.setStyleHint(QFont::Serif);
251         font.setFamily("serif");
252
253         return fromqstr(QFontInfo(font).family());
254 }
255
256
257 string const GuiApplication::sansFontName()
258 {
259         QFont font;
260         font.setKerning(false);
261         font.setStyleHint(QFont::SansSerif);
262         font.setFamily("sans");
263
264         return fromqstr(QFontInfo(font).family());
265 }
266
267
268 string const GuiApplication::typewriterFontName()
269 {
270         QFont font;
271         font.setKerning(false);
272         font.setStyleHint(QFont::TypeWriter);
273         font.setFamily("monospace");
274
275         return fromqstr(QFontInfo(font).family());
276 }
277
278
279 bool GuiApplication::event(QEvent * e)
280 {
281         switch(e->type()) {
282         case QEvent::FileOpen: {
283                 // Open a file; this happens only on Mac OS X for now
284                 QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
285
286                 if (!currentView() || !currentView()->view())
287                         // The application is not properly initialized yet.
288                         // So we acknowledge the event and delay the file opening
289                         // until LyX is ready.
290                         // FIXME UNICODE: FileName accept an utf8 encoded string.
291                         LyX::ref().addFileToLoad(FileName(fromqstr(foe->file())));
292                 else
293                         lyx::dispatch(FuncRequest(LFUN_FILE_OPEN,
294                                 qstring_to_ucs4(foe->file())));
295
296                 e->accept();
297                 return true;
298         }
299         default:
300                 return QApplication::event(e);
301         }
302 }
303
304
305 bool GuiApplication::notify(QObject * receiver, QEvent * event)
306 {
307         try {
308                 return QApplication::notify(receiver, event);
309         }
310         catch (support::ExceptionMessage const & e) {
311                 if (e.type_ == support::ErrorException) {
312                         Alert::error(e.title_, e.details_);
313                         LyX::cref().emergencyCleanup();
314                         QApplication::exit(1);
315                 } else if (e.type_ == support::WarningException) {
316                         Alert::warning(e.title_, e.details_);
317                         return false;
318                 }
319         }
320         catch (std::exception const & e) {
321                 docstring s = _("LyX has caught an exception, it will now "
322                         "attemp to save all unsaved documents and exit."
323                         "\n\nException: ");
324                 s += from_ascii(e.what());
325                 Alert::error(_("Software exception Detected"), s);
326                 LyX::cref().emergencyCleanup();
327                 QApplication::exit(1);
328         }
329         catch (...) {
330                 docstring s = _("LyX has caught some really weird exception, it will "
331                         "now attemp to save all unsaved documents and exit.");
332                 Alert::error(_("Software exception Detected"), s);
333                 LyX::cref().emergencyCleanup();
334                 QApplication::exit(1);
335         }
336
337         return false;
338 }
339
340
341 void GuiApplication::syncEvents()
342 {
343         // This is the ONLY place where processEvents may be called.
344         // During screen update/ redraw, this method is disabled to
345         // prevent keyboard events being handed to the LyX core, where
346         // they could cause re-entrant calls to screen update.
347         processEvents(QEventLoop::ExcludeUserInputEvents);
348 }
349
350
351 bool GuiApplication::getRgbColor(ColorCode col, RGBColor & rgbcol)
352 {
353         QColor const & qcol = color_cache_.get(col);
354         if (!qcol.isValid()) {
355                 rgbcol.r = 0;
356                 rgbcol.g = 0;
357                 rgbcol.b = 0;
358                 return false;
359         }
360         rgbcol.r = qcol.red();
361         rgbcol.g = qcol.green();
362         rgbcol.b = qcol.blue();
363         return true;
364 }
365
366
367 string const GuiApplication::hexName(ColorCode col)
368 {
369         return support::ltrim(fromqstr(color_cache_.get(col).name()), "#");
370 }
371
372
373 void GuiApplication::updateColor(ColorCode)
374 {
375         // FIXME: Bleh, can't we just clear them all at once ?
376         color_cache_.clear();
377 }
378
379
380 void GuiApplication::registerSocketCallback(int fd, SocketCallback func)
381 {
382         SocketNotifier * sn = new SocketNotifier(this, fd, func);
383         socket_notifiers_[fd] = sn;
384         connect(sn, SIGNAL(activated(int)), this, SLOT(socketDataReceived(int)));
385 }
386
387
388 void GuiApplication::socketDataReceived(int fd)
389 {
390         socket_notifiers_[fd]->func_();
391 }
392
393
394 void GuiApplication::unregisterSocketCallback(int fd)
395 {
396         socket_notifiers_.erase(fd);
397 }
398
399
400 void GuiApplication::commitData(QSessionManager & sm)
401 {
402         /// The implementation is required to avoid an application exit
403         /// when session state save is triggered by session manager.
404         /// The default implementation sends a close event to all
405         /// visible top level widgets when session managment allows
406         /// interaction.
407         /// We are changing that to write all unsaved buffers...
408         if (sm.allowsInteraction() && !theBufferList().quitWriteAll())
409                 sm.cancel();
410 }
411
412
413 ////////////////////////////////////////////////////////////////////////
414 // X11 specific stuff goes here...
415 #ifdef Q_WS_X11
416 bool GuiApplication::x11EventFilter(XEvent * xev)
417 {
418         if (!currentView())
419                 return false;
420
421         switch (xev->type) {
422         case SelectionRequest: {
423                 if (xev->xselectionrequest.selection != XA_PRIMARY)
424                         break;
425                 LYXERR(Debug::GUI) << "X requested selection." << endl;
426                 BufferView * bv = currentView()->view();
427                 if (bv) {
428                         docstring const sel = bv->requestSelection();
429                         if (!sel.empty())
430                                 selection_.put(sel);
431                 }
432                 break;
433         }
434         case SelectionClear: {
435                 if (xev->xselectionclear.selection != XA_PRIMARY)
436                         break;
437                 LYXERR(Debug::GUI) << "Lost selection." << endl;
438                 BufferView * bv = currentView()->view();
439                 if (bv)
440                         bv->clearSelection();
441                 break;
442         }
443         }
444         return false;
445 }
446 #endif
447
448 void GuiApplication::addMenuTranslator()
449 {
450         installTranslator(new MenuTranslator(this));
451 }
452
453
454 } // namespace frontend
455 } // namespace lyx
456
457 #include "GuiApplication_moc.cpp"