]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/GUIRunTime.C
first steps of gnome frontend rebirth
[lyx.git] / src / frontends / gnome / GUIRunTime.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 2000 The LyX Team.
7  *
8  *======================================================*/
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include FORMS_H_LOCATION
17
18 #include "GUIRunTime.h"
19 #include "debug.h"
20
21 #include <gnome--/main.h>
22 #include <glade/glade.h>
23
24 using std::endl;
25
26 // I keep these here so that it will be processed as early in
27 // the compilation process as possible.
28 #if !defined(FL_REVISION) || FL_REVISION < 88 || FL_VERSION != 0
29 #error LyX will not compile with this version of XForms.\
30        Please get version 0.89.\
31        If you want to try to compile anyway, delete this test in src/frontends/gnome/GUIRunTime.C.
32 #endif
33
34 extern bool finished;
35
36 namespace {
37
38 int const xforms_include_version = FL_INCLUDE_VERSION;
39
40 } // namespace anon
41
42
43 int GUIRunTime::initApplication(int &, char * argv[])
44 {
45         // Check the XForms version in the forms.h header against
46         // the one in the libforms. If they don't match quit the
47         // execution of LyX. Better with a clean fast exit than
48         // a strange segfault later.
49         // I realize that this check have to be moved when we
50         // support several toolkits, but IMO all the toolkits
51         // should try to have the same kind of check. This could
52         // be done by having a CheckHeaderAndLib function in
53         // all the toolkit implementations, this function is
54         // responsible for notifing the user.
55         // if (!CheckHeaderAndLib()) {
56         //         // header vs. lib version failed
57         //         return 1;
58         // }
59         int xforms_lib_version = fl_library_version(0, 0);
60         if (xforms_include_version != xforms_lib_version) {
61                 cerr << "You are either running LyX with wrong "
62                         "version of a dynamic XForms library\n"
63                         "or you have build LyX with conflicting header "
64                         "and library (different\n"
65                         "versions of XForms. Sorry but there is no point "
66                         "in continuing executing LyX!" << endl;
67                 return 1;
68         }
69
70         // I belive that this should be done at a later stage, in
71         // lyx_gui, the same place as xforms does the same. (Lgb)
72         string app_id(PACKAGE);
73         string app_version(VERSION);
74         static Gnome::Main  a(app_id, app_version, 1, argv);
75         glade_gnome_init(); // Initialize the glade library.
76
77         return 0;
78 }
79
80 void GUIRunTime::processEvents() 
81 {
82         while (Gnome::Main::instance()->events_pending())
83                 Gnome::Main::instance()->iteration(FALSE);
84 }
85
86
87 void GUIRunTime::runTime()
88 {
89         XEvent ev;
90         while (!finished) {
91                 processEvents();
92                 if (fl_check_forms() == FL_EVENT) {
93                         fl_XNextEvent(&ev);
94                         lyxerr << "Received unhandled X11 event" << endl;
95                         lyxerr << "Type: 0x" << hex << ev.xany.type <<
96                                 "Target: 0x" << hex << ev.xany.window << endl;
97                 }
98         }
99 }
100
101
102 void GUIRunTime::setDefaults()
103 {
104         FL_IOPT cntl;
105         cntl.buttonFontSize = FL_NORMAL_SIZE;
106         cntl.browserFontSize = FL_NORMAL_SIZE;
107         cntl.labelFontSize = FL_NORMAL_SIZE;
108         cntl.choiceFontSize = FL_NORMAL_SIZE;
109         cntl.inputFontSize = FL_NORMAL_SIZE;
110         cntl.menuFontSize  = FL_NORMAL_SIZE;
111         cntl.borderWidth = -1;
112         cntl.vclass = FL_DefaultVisual;
113         fl_set_defaults(FL_PDVisual
114                         | FL_PDButtonFontSize
115                         | FL_PDBrowserFontSize
116                         | FL_PDLabelFontSize
117                         | FL_PDChoiceFontSize
118                         | FL_PDInputFontSize
119                         | FL_PDMenuFontSize
120                         | FL_PDBorderWidth, &cntl);
121 }
122
123
124 #include "XFormsView.h"
125 LyXView * GUIRunTime::createMainView(int w, int h)
126 {
127         return new XFormsView(w, h);
128 }
129
130         
131 Display * GUIRunTime::x11Display()
132 {
133         return fl_get_display();
134 }
135
136
137 int GUIRunTime::x11Screen()
138 {
139         return fl_screen;
140 }
141
142
143 Colormap GUIRunTime::x11Colormap()
144 {
145         return fl_state[fl_get_vclass()].colormap;
146 }
147
148
149 int GUIRunTime::x11VisualDepth()
150 {
151         return fl_get_visual_depth();
152 }
153
154 float GUIRunTime::getScreenDPI()
155 {
156         Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen);
157         return ((HeightOfScreen(scr) * 25.4 / HeightMMOfScreen(scr)) +
158                 (WidthOfScreen(scr) * 25.4 / WidthMMOfScreen(scr))) / 2;
159 }