]> git.lyx.org Git - features.git/blob - src/frontends/qt3/GuiApplication.h
82eca1c87011cf3ed0d176a40490b74ad76eac9d
[features.git] / src / frontends / qt3 / GuiApplication.h
1 /**
2  * \file qt3/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 QT3_APPLICATION_H
14 #define QT3_APPLICATION_H
15
16 #include "frontends/Application.h"
17
18 #include "qfont_loader.h"
19 #include "GuiClipboard.h"
20 #include "GuiImplementation.h"
21 #include "GuiSelection.h"
22
23 #include <qapplication.h>
24
25 ///////////////////////////////////////////////////////////////
26 // Specific stuff
27
28 #ifdef Q_WS_MACX
29 #include <Carbon/Carbon.h>
30 #endif
31 ///////////////////////////////////////////////////////////////
32
33 class BufferView;
34
35 namespace lyx {
36 namespace frontend {
37
38 class GuiWorkArea;
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 \todo The work areas handling could be moved to a base virtual class
46 comon to all frontends.
47 */
48 class GuiApplication : public QApplication, public Application
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 const exec();
61         virtual Gui & gui() { return gui_; }
62         virtual void exit(int status);
63         virtual std::string const romanFontName();
64         virtual std::string const sansFontName();
65         virtual std::string const typewriterFontName();
66         //@}
67
68         ///
69 private:
70         ///
71         GuiImplementation gui_;
72         ///
73         GuiClipboard clipboard_;
74         ///
75         GuiSelection selection_;
76         ///
77         GuiFontLoader font_loader_;
78
79 #ifdef Q_WS_X11
80 public:
81         bool x11EventFilter (XEvent * ev);
82 #endif
83
84 #ifdef Q_WS_MACX
85 public:
86         bool macEventFilter(EventRef event);
87 private:
88 //      static OSStatus handleOpenDocuments(
89         static pascal OSErr     handleOpenDocuments(
90                 const AppleEvent* inEvent, AppleEvent*, long);
91 #endif
92 }; // GuiApplication
93
94 } // namespace frontend
95 } // namespace lyx
96
97 extern lyx::frontend::GuiApplication * guiApp;
98
99
100 #endif // QT3_APPLICATION_H