]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiApplication.h
Get rid of GuiApplication::readMenus().
[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 "frontends/Application.h"
17
18 #include <QApplication>
19 #include <QObject>
20 #include <QList>
21
22 class QSessionManager;
23 class QAbstractItemModel;
24 class QSortFilterProxyModel;
25
26 namespace lyx {
27
28 class BufferView;
29 class ColorCache;
30
31 namespace frontend {
32
33 class GuiView;
34 class LyXView;
35 class GlobalMenuBar;
36 class GuiWorkArea;
37 class Menus;
38 class SocketNotifier;
39
40 /// The Qt main application class
41 /**
42 There should be only one instance of this class. No Qt object
43 initialisation should be done before the instanciation of this class.
44 */
45 class GuiApplication : public QApplication, public Application
46 {
47         Q_OBJECT
48
49 public:
50         GuiApplication(int & argc, char ** argv);
51         ~GuiApplication();
52
53         /// Method inherited from \c Application class
54         //@{
55         bool getStatus(FuncRequest const & cmd, FuncStatus & flag) const;
56         bool dispatch(FuncRequest const &);
57         void resetGui();
58         void restoreGuiSession();
59         Clipboard & clipboard();
60         Selection & selection();
61         FontLoader & fontLoader();
62         int exec();
63         void exit(int status);
64         bool event(QEvent * e);
65         bool getRgbColor(ColorCode col, RGBColor & rgbcol);
66         std::string const hexName(ColorCode col);
67         void registerSocketCallback(int fd, SocketCallback func);
68         void unregisterSocketCallback(int fd);
69         bool searchMenu(FuncRequest const & func, std::vector<docstring> & names) const;
70         void hideDialogs(std::string const & name, Inset * inset) const;
71         Buffer const * updateInset(Inset const * inset) const;
72         //@}
73
74         Menus const & menus() const;
75         Menus & menus();
76         /// Methods inherited from \c QApplication class
77         //@{
78         bool notify(QObject * receiver, QEvent * event);
79         void commitData(QSessionManager & sm);
80 #ifdef Q_WS_X11
81         bool x11EventFilter(XEvent * ev);
82 #endif
83         //@}
84
85         /// Create the main window with given geometry settings.
86         /// \param geometry_arg: only for Windows platform.
87         void createView(QString const & geometry_arg = QString(),
88                 bool autoShow = true);
89         ///
90         GuiView const * currentView() const { return current_view_; }
91         ///
92         GuiView * currentView() { return current_view_; }
93         ///
94         void setCurrentView(GuiView * view) { current_view_ = view; }
95         ///
96         QList<int> viewIds() const;
97
98         ///
99         ColorCache & colorCache();
100
101         QAbstractItemModel * languageModel();
102
103         /// return a suitable serif font name.
104         QString const romanFontName();
105
106         /// return a suitable sans serif font name.
107         QString const sansFontName();
108
109         /// return a suitable monospaced font name.
110         QString const typewriterFontName();
111         ///
112         void unregisterView(GuiView * gv);
113         ///
114         GuiView & view(int id) const;
115
116 private Q_SLOTS:
117         ///
118         void execBatchCommands();
119         ///
120         void socketDataReceived(int fd);
121         /// events to be triggered by general_timer_ should go here
122         void handleRegularEvents();
123         ///
124         void onLastWindowClosed();
125         
126 private:
127         ///
128         bool closeAllViews();
129         /// read the given ui (menu/toolbar) file
130         bool readUIFile(std::string const & name, bool include = false);
131
132         /// This LyXView is the one receiving Clipboard and Selection
133         /// events
134         GuiView * current_view_;
135         ///
136         struct Private;
137         Private * const d;
138 }; // GuiApplication
139
140 extern GuiApplication * guiApp;
141
142 } // namespace frontend
143 } // namespace lyx
144
145 #endif // GUIAPPLICATION_H