]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.h
simplify window creation.
[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 "GuiSelection.h"
20
21 #include "frontends/Application.h"
22
23 #include <QObject>
24 #include <QApplication>
25 #include <QTranslator>
26
27 #include <map>
28 #include <vector>
29
30 class QSessionManager;
31
32 namespace lyx {
33
34 class BufferView;
35
36 namespace frontend {
37
38 class GuiView;
39 class LyXView;
40 class GuiWorkArea;
41 class SocketNotifier;
42
43 /// The Qt main application class
44 /**
45 There should be only one instance of this class. No Qt object
46 initialisation should be done before the instanciation of this class.
47 */
48 class GuiApplication : public QApplication, public Application
49 {
50         Q_OBJECT
51
52 public:
53         GuiApplication(int & argc, char ** argv);
54         ///
55         virtual ~GuiApplication();
56
57         /// Method inherited from \c Application class
58         //@{
59         virtual void resetGui();
60         virtual Clipboard & clipboard();
61         virtual Selection & selection();
62         virtual FontLoader & fontLoader() { return font_loader_; }
63         virtual int exec();
64         virtual void exit(int status);
65         virtual bool event(QEvent * e);
66         virtual bool getRgbColor(ColorCode col, RGBColor & rgbcol);
67         virtual std::string const hexName(ColorCode col);
68         virtual void updateColor(ColorCode col);
69         virtual void registerSocketCallback(int fd, SocketCallback func);
70         void unregisterSocketCallback(int fd);
71         void createView(std::string const & geometry_arg = std::string());
72         //@}
73
74         /// Methods inherited from \c QApplication class
75         //@{
76         bool notify(QObject * receiver, QEvent * event);
77         void commitData(QSessionManager & sm);
78         //@}
79
80         ///
81         GuiView const * currentView() const { return current_view_; }
82         ///
83         GuiView * currentView() { return current_view_; }
84         ///
85         void setCurrentView(GuiView & view) { current_view_ = &view; }
86         ///
87         virtual size_t viewCount() const { return view_ids_.size(); }
88         ///
89         std::vector<int> const & viewIds() { return view_ids_; }
90
91         ///
92         ColorCache & colorCache() { return color_cache_; }
93         ///
94         GuiFontLoader & guiFontLoader() { return font_loader_; }
95
96         /// return a suitable serif font name.
97         virtual QString const romanFontName();
98
99         /// return a suitable sans serif font name.
100         virtual QString const sansFontName();
101
102         /// return a suitable monospaced font name.
103         virtual QString const typewriterFontName();
104         ///
105         virtual bool closeAllViews();
106         ///
107         virtual bool unregisterView(int id);
108         ///
109         virtual GuiView & view(int id) const;
110         ///
111         virtual void hideDialogs(std::string const & name, Inset * inset) const;
112         ///
113         virtual Buffer const * updateInset(Inset const * inset) const;
114
115 private Q_SLOTS:
116         ///
117         void execBatchCommands();
118         ///
119         void socketDataReceived(int fd);
120
121 private:
122         ///
123         GuiClipboard clipboard_;
124         ///
125         GuiSelection selection_;
126         ///
127         GuiFontLoader font_loader_;
128         ///
129         ColorCache color_cache_;
130         ///
131         QTranslator qt_trans_;
132         ///
133         std::map<int, SocketNotifier *> socket_notifiers_;
134
135 #ifdef Q_WS_X11
136 public:
137         bool x11EventFilter(XEvent * ev);
138 #endif
139         /// A translator suitable for the entries in the LyX menu.
140         /// Only needed with Qt/Mac.
141         void addMenuTranslator();
142
143         /// Multiple views container.
144         /**
145         * Warning: This must not be a smart pointer as the destruction of the
146         * object is handled by Qt when the view is closed
147         * \sa Qt::WA_DeleteOnClose attribute.
148         */
149         std::map<int, GuiView *> views_;
150         ///
151         std::vector<int> view_ids_;
152         /// This LyXView is the one receiving Clipboard and Selection
153         /// events
154         GuiView * current_view_;
155 }; // GuiApplication
156
157 extern GuiApplication * guiApp;
158
159 } // namespace frontend
160 } // namespace lyx
161
162 #endif // GUIAPPLICATION_H