]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.h
Introducing Application::getStatus() and Application::dispatch(). Transferring some...
[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 FuncStatus getStatus(FuncRequest const &);
60         virtual void dispatch(FuncRequest const &);
61         virtual void resetGui();
62         virtual Clipboard & clipboard();
63         virtual Selection & selection();
64         virtual FontLoader & fontLoader() { return font_loader_; }
65         virtual int exec();
66         virtual void exit(int status);
67         virtual bool event(QEvent * e);
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         void createView(std::string const & geometry_arg = std::string());
74         //@}
75
76         /// Methods inherited from \c QApplication class
77         //@{
78         bool notify(QObject * receiver, QEvent * event);
79         void commitData(QSessionManager & sm);
80         //@}
81
82         ///
83         GuiView const * currentView() const { return current_view_; }
84         ///
85         GuiView * currentView() { return current_view_; }
86         ///
87         void setCurrentView(GuiView & view) { current_view_ = &view; }
88         ///
89         virtual size_t viewCount() const { return view_ids_.size(); }
90         ///
91         std::vector<int> const & viewIds() { return view_ids_; }
92
93         ///
94         ColorCache & colorCache() { return color_cache_; }
95         ///
96         GuiFontLoader & guiFontLoader() { return font_loader_; }
97
98         /// return a suitable serif font name.
99         virtual QString const romanFontName();
100
101         /// return a suitable sans serif font name.
102         virtual QString const sansFontName();
103
104         /// return a suitable monospaced font name.
105         virtual QString const typewriterFontName();
106         ///
107         virtual bool closeAllViews();
108         ///
109         virtual bool unregisterView(int id);
110         ///
111         virtual GuiView & view(int id) const;
112         ///
113         virtual void hideDialogs(std::string const & name, Inset * inset) const;
114         ///
115         virtual Buffer const * updateInset(Inset const * inset) const;
116
117 private Q_SLOTS:
118         ///
119         void execBatchCommands();
120         ///
121         void socketDataReceived(int fd);
122
123 private:
124         ///
125         GuiClipboard clipboard_;
126         ///
127         GuiSelection selection_;
128         ///
129         GuiFontLoader font_loader_;
130         ///
131         ColorCache color_cache_;
132         ///
133         QTranslator qt_trans_;
134         ///
135         std::map<int, SocketNotifier *> socket_notifiers_;
136
137 #ifdef Q_WS_X11
138 public:
139         bool x11EventFilter(XEvent * ev);
140 #endif
141         /// A translator suitable for the entries in the LyX menu.
142         /// Only needed with Qt/Mac.
143         void addMenuTranslator();
144
145         /// Multiple views container.
146         /**
147         * Warning: This must not be a smart pointer as the destruction of the
148         * object is handled by Qt when the view is closed
149         * \sa Qt::WA_DeleteOnClose attribute.
150         */
151         std::map<int, GuiView *> views_;
152         ///
153         std::vector<int> view_ids_;
154         /// This LyXView is the one receiving Clipboard and Selection
155         /// events
156         GuiView * current_view_;
157 }; // GuiApplication
158
159 extern GuiApplication * guiApp;
160
161 } // namespace frontend
162 } // namespace lyx
163
164 #endif // GUIAPPLICATION_H