]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.h
move view_ids from Application to GuiApplication
[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 Clipboard & clipboard();
60         virtual Selection & selection();
61         virtual FontLoader & fontLoader() { return font_loader_; }
62         virtual int exec();
63         virtual void exit(int status);
64         virtual bool event(QEvent * e);
65         void syncEvents();
66         virtual std::string const romanFontName();
67         virtual std::string const sansFontName();
68         virtual std::string const typewriterFontName();
69         virtual bool getRgbColor(ColorCode col, RGBColor & rgbcol);
70         virtual std::string const hexName(ColorCode col);
71         virtual void updateColor(ColorCode col);
72         virtual void registerSocketCallback(int fd, SocketCallback func);
73         void unregisterSocketCallback(int fd);
74         LyXView & createView(std::string const & geometry_arg);
75         //@}
76
77         /// Methods inherited from \c QApplication class
78         //@{
79         bool notify(QObject * receiver, QEvent * event);
80         void commitData(QSessionManager & sm);
81         //@}
82
83         virtual size_t viewCount() const { return view_ids_.size(); }
84         std::vector<int> const & viewIds() { return view_ids_; }
85
86         ///
87         ColorCache & colorCache() { return color_cache_; }
88         ///
89         GuiFontLoader & guiFontLoader() { return font_loader_; }
90
91
92         virtual int createRegisteredView();
93         virtual bool closeAllViews();
94         virtual bool unregisterView(int id);
95
96         virtual LyXView & view(int id) const;
97         ///
98         virtual void hideDialogs(std::string const & name, Inset * inset) const;
99         ///
100         virtual Buffer const * updateInset(Inset const * inset) const;
101
102 private Q_SLOTS:
103         ///
104         void execBatchCommands();
105         ///
106         void socketDataReceived(int fd);
107
108 private:
109         ///
110         GuiClipboard clipboard_;
111         ///
112         GuiSelection selection_;
113         ///
114         GuiFontLoader font_loader_;
115         ///
116         ColorCache color_cache_;
117         ///
118         QTranslator qt_trans_;
119         ///
120         std::map<int, SocketNotifier *> socket_notifiers_;
121
122 #ifdef Q_WS_X11
123 public:
124         bool x11EventFilter(XEvent * ev);
125 #endif
126         /// A translator suitable for the entries in the LyX menu.
127         /// Only needed with Qt/Mac.
128         void addMenuTranslator();
129
130         /// Multiple views container.
131         /**
132         * Warning: This must not be a smart pointer as the destruction of the
133         * object is handled by Qt when the view is closed
134         * \sa Qt::WA_DeleteOnClose attribute.
135         */
136         std::map<int, GuiView *> views_;
137         ///
138         std::vector<int> view_ids_;
139 }; // GuiApplication
140
141 extern GuiApplication * guiApp;
142
143 } // namespace frontend
144 } // namespace lyx
145
146 #endif // GUIAPPLICATION_H