]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.h
Transfer createView() from Application to GuiApplication and get rid of LyXView:...
[lyx.git] / src / frontends / qt4 / GuiApplication.h
1 /**
2  * \file GuiApplication.h
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 #ifndef GUIAPPLICATION_H
14 #define GUIAPPLICATION_H
15
16 #include "ColorCache.h"
17 #include "GuiFontLoader.h"
18 #include "GuiClipboard.h"
19 #include "GuiImplementation.h"
20 #include "GuiSelection.h"
21
22 #include "frontends/Application.h"
23
24 #include <QApplication>
25 #include <QTranslator>
26
27 class QSessionManager;
28
29 namespace lyx {
30
31 class BufferView;
32
33 namespace frontend {
34
35 class GuiWorkArea;
36 class SocketNotifier;
37
38 /// The Qt main application class
39 /**
40 There should be only one instance of this class. No Qt object
41 initialisation should be done before the instanciation of this class.
42
43 \todo The work areas handling could be moved to a base virtual class
44 comon to all frontends.
45 */
46 class GuiApplication : public QApplication, public Application
47 {
48         Q_OBJECT
49
50 public:
51         GuiApplication(int & argc, char ** argv);
52         ///
53         virtual ~GuiApplication();
54
55         /// Method inherited from \c Application class
56         //@{
57         virtual Clipboard & clipboard();
58         virtual Selection & selection();
59         virtual FontLoader & fontLoader() { return font_loader_; }
60         virtual int exec();
61         virtual Gui & gui() { return gui_; }
62         virtual void exit(int status);
63         virtual bool event(QEvent * e);
64         void syncEvents();
65         virtual std::string const romanFontName();
66         virtual std::string const sansFontName();
67         virtual std::string const typewriterFontName();
68         virtual bool getRgbColor(ColorCode col, RGBColor & rgbcol);
69         virtual std::string const hexName(ColorCode col);
70         virtual void updateColor(ColorCode col);
71         virtual void registerSocketCallback(int fd, SocketCallback func);
72         void unregisterSocketCallback(int fd);
73         /// Create the main window with given geometry settings.
74         LyXView & createView(unsigned int width, unsigned int height,
75                 int posx, int posy, int maximized,
76                 unsigned int iconSizeXY, const std::string & geometryArg);
77         //@}
78
79         /// Methods inherited from \c QApplication class
80         //@{
81         bool notify(QObject * receiver, QEvent * event);
82         void commitData(QSessionManager & sm);
83         //@}
84
85         ///
86         ColorCache & colorCache() { return color_cache_; }
87         ///
88         ///
89         GuiFontLoader & guiFontLoader() { return font_loader_; }
90
91 private Q_SLOTS:
92         ///
93         void execBatchCommands();
94         ///
95         void socketDataReceived(int fd);
96
97 private:
98         ///
99         GuiImplementation gui_;
100         ///
101         GuiClipboard clipboard_;
102         ///
103         GuiSelection selection_;
104         ///
105         GuiFontLoader font_loader_;
106         ///
107         ColorCache color_cache_;
108         ///
109         QTranslator qt_trans_;
110         ///
111         std::map<int, SocketNotifier *> socket_notifiers_;
112
113 #ifdef Q_WS_X11
114 public:
115         bool x11EventFilter(XEvent * ev);
116 #endif
117         /// A translator suitable for the entries in the LyX menu.
118         /// Only needed with Qt/Mac.
119         void addMenuTranslator();
120 }; // GuiApplication
121
122 extern GuiApplication * guiApp;
123
124 } // namespace frontend
125 } // namespace lyx
126
127 #endif // GUIAPPLICATION_H