]> git.lyx.org Git - lyx.git/blob - src/frontends/GUIRunTime.h
Fix xforms menus display problems
[lyx.git] / src / frontends / GUIRunTime.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2000 The LyX Team.
8  *
9  * ====================================================== */
10
11 #ifndef GUIRUNTIME_H
12 #define GUIRUNTIME_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 class LyXView;
19
20 /** The LyX GUI independent guiruntime class
21     The GUI interface is implemented in the corresponding
22     frontends GUIRunTime.C file.
23 */
24 class GUIRunTime {
25 public:
26         static
27         int initApplication(int argc, char * argv[]);
28         ///
29         static
30         void processEvents();
31         ///
32         static
33         void runTime();
34         /// This is run first in the LyXGUI constructor.
35         static
36         void setDefaults();
37 };
38 #endif