]> git.lyx.org Git - lyx.git/blob - src/lyx_gui.C
add missing writeNormal() methods to some insets
[lyx.git] / src / lyx_gui.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *          Copyright 1995 Matthias Ettrich
7  *          Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12 #include <cstdlib>
13 #include <fcntl.h>
14
15 #ifdef __GNUG__
16 #pragma implementation
17 #endif
18
19 #include "lyx_gui.h"
20 #include FORMS_H_LOCATION
21 #include "support/filetools.h"
22 #include "support/os.h"
23 #include "support/lyxlib.h"
24 #include "figure_form.h"
25 #include "print_form.h"
26 #include "tex-strings.h"
27 #include "lyx_main.h"
28 #include "debug.h"
29 #include "version.h"
30 #include "LyXView.h"
31 #include "buffer.h"
32 #include "BufferView.h"
33 #include "lyxserver.h"
34 #include "lyxrc.h"
35 #include "gettext.h"
36 #include "lyx_gui_misc.h"
37 #if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
38 #include "lyxlookup.h"
39 #endif
40 #include "bufferlist.h"
41 #include "ColorHandler.h"
42 #include "frontends/GUIRunTime.h"
43 #include "frontends/xforms/xforms_helpers.h" // for XformColor
44
45 using std::endl;
46
47 FD_form_sendto * fd_form_sendto;
48 FD_form_figure * fd_form_figure;
49
50 extern LyXServer * lyxserver;
51 extern bool finished;   // flag, that we are quitting the program
52 extern BufferList bufferlist;
53 extern string user_lyxdir;
54
55 FL_CMD_OPT cmdopt[] =
56 {
57         {"-geometry", "*.geometry", XrmoptionSepArg, "690x510"}
58 };
59
60 namespace {
61
62 int width  = 690;
63 int height = 510;
64 int xpos   = -1;
65 int ypos   = -1;
66 char geometry[40];
67
68 } // namespace anon
69
70
71 FL_resource res[] =
72 {
73         {"geometry", "geometryClass", FL_STRING, geometry, "", 40}
74 };
75
76
77 extern "C" {
78         
79 static
80 int LyX_XErrHandler(Display * display, XErrorEvent * xeev)
81 {
82         // emergency cleanup
83         LyX::emergencyCleanup();
84
85         // Get the reason for the crash.
86         char etxt[513];
87         XGetErrorText(display, xeev->error_code, etxt, 512);
88         lyxerr << etxt << endl;
89         // By doing an abort we get a nice backtrace. (hopefully)
90         lyx::abort();
91         return 0; // Solaris CC wants us to return something
92 }
93         
94 }
95
96
97 LyXGUI::LyXGUI(LyX * owner, int * argc, char * argv[], bool GUI)
98         : _owner(owner), lyxViews(0)
99 {
100         gui = GUI;
101         if (!gui)
102                 return;
103
104         // 
105         setDefaults();
106         
107         static const int num_res = sizeof(res)/sizeof(FL_resource);
108         fl_initialize(argc, argv, "LyX", cmdopt, num_res);
109         // It appears that, in xforms >=0.89.5, fl_initialize()
110         // calls setlocale() and ruins our LC_NUMERIC setting.
111         locale_init();
112         fl_get_app_resources(res, num_res);
113
114         static const int geometryBitmask =
115                 XParseGeometry( geometry,
116                                 &xpos,
117                                 &ypos,
118                                 reinterpret_cast<unsigned int *>(&width),
119                                 reinterpret_cast<unsigned int *>(&height));
120
121         Display * display = fl_get_display();
122         if (!display) {
123                 lyxerr << "LyX: unable to access X display, exiting" << endl;
124                 os::warn("Unable to access X display, exiting");
125                 exit(1);
126         }
127         fcntl(ConnectionNumber(display), F_SETFD, FD_CLOEXEC);
128         // X Error handler install goes here
129         XSetErrorHandler(LyX_XErrHandler);
130
131         // A width less than 590 pops up an awkward main window
132         // The minimal values of width/height (590/400) are defined in
133         // src/lyx.C  
134         if (width < 590) width = 590;
135         if (height < 400) height = 400;
136         
137         // If width is not set by geometry, check it against monitor width
138         if (!(geometryBitmask & 4)) {
139                 Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen); //DefaultScreen(fl_get_display());
140                 if (WidthOfScreen(scr) - 8 < width)
141                         width = WidthOfScreen(scr) - 8;
142         }
143
144         // If height is not set by geometry, check it against monitor height
145         if (!(geometryBitmask & 8)) {
146                 Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen); //DefaultScreen(fl_get_display());
147                 if (HeightOfScreen(scr) - 24 < height)
148                         height = HeightOfScreen(scr) - 24;
149         }
150
151         // Recalculate xpos if it's negative
152         if (geometryBitmask & 16)
153                 xpos += WidthOfScreen(ScreenOfDisplay(fl_get_display(), fl_screen)) - width; //DefaultScreen(fl_get_display())) - width;
154
155         // Recalculate ypos if it's negative
156         if (geometryBitmask & 32)
157                 ypos += HeightOfScreen(ScreenOfDisplay(fl_get_display(), fl_screen)) - height; //DefaultScreen(fl_get_display())) - height;
158
159         // Initialize the LyXColorHandler
160         lyxColorHandler.reset(new LyXColorHandler);
161 }
162
163
164 // A destructor is always necessary  (asierra-970604)
165 LyXGUI::~LyXGUI()
166 {
167         // Lyxserver was created in this class so should be destroyed
168         // here.  asierra-970604
169         delete lyxserver;
170         lyxserver = 0;
171         delete lyxViews;
172 #if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
173         CloseLyXLookup();
174 #endif
175 }
176
177
178 void LyXGUI::setDefaults()
179 {
180         GUIRunTime::setDefaults();
181 }
182
183
184 // This is called after we have parsed lyxrc
185 void LyXGUI::init()
186 {
187         if (!gui)
188                 return;
189
190         create_forms();
191
192         if (lyxrc.font_norm_menu.empty())
193                 lyxrc.font_norm_menu = lyxrc.font_norm;
194         // Set the font name for popups and menus
195         string boldfontname = lyxrc.menu_font_name 
196                                + "-*-*-*-?-*-*-*-*-"  
197                                + lyxrc.font_norm_menu;
198                 // "?" means "scale that font"
199         string fontname = lyxrc.popup_font_name 
200                                + "-*-*-*-?-*-*-*-*-"  
201                                + lyxrc.font_norm_menu;
202
203         int bold = fl_set_font_name(FL_BOLD_STYLE, boldfontname.c_str());
204         int normal = fl_set_font_name(FL_NORMAL_STYLE, fontname.c_str());
205         if (bold < 0)
206                 lyxerr << "Could not set menu font to "
207                        << boldfontname << endl;
208
209         if (normal < 0)
210                 lyxerr << "Could not set popup font to "
211                        << fontname << endl;
212
213         if (bold < 0 && normal < 0) {
214                 lyxerr << "Using 'helvetica' font for menus" << endl;
215                 boldfontname = "-*-helvetica-bold-r-*-*-*-?-*-*-*-*-iso8859-1";
216                 fontname = "-*-helvetica-medium-r-*-*-*-?-*-*-*-*-iso8859-1";
217                 bold = fl_set_font_name(FL_BOLD_STYLE, boldfontname.c_str());
218                 normal = fl_set_font_name(FL_NORMAL_STYLE, fontname.c_str());
219
220                 if (bold < 0 && normal < 0) {
221                         lyxerr << "Could not find helvetica font. Using 'fixed'." << endl;
222                         fl_set_font_name(FL_NORMAL_STYLE, "fixed");
223                         normal = bold = 0;
224                 }
225         }
226         if (bold < 0)
227                 fl_set_font_name(FL_BOLD_STYLE, fontname.c_str());
228         else if (normal < 0)
229                 fl_set_font_name(FL_NORMAL_STYLE, boldfontname.c_str());
230
231         // put here (after fl_initialize) to avoid segfault. Cannot be done
232         // in setDefaults() (Matthias 140496)
233         // Moved from ::LyXGUI to ::init to allow popup font customization 
234         // (petr 120997).
235         fl_setpup_fontstyle(FL_NORMAL_STYLE);
236         fl_setpup_fontsize(FL_NORMAL_SIZE);
237         fl_setpup_color(FL_MCOL, FL_BLACK);
238         fl_set_goodies_font(FL_NORMAL_STYLE, FL_NORMAL_SIZE);
239
240         // all lyxrc settings has to be done here as lyxrc has not yet
241         // been read when the GUI is created (Jug)
242
243         // the sendto form
244         if (!lyxrc.custom_export_command.empty())
245                 fl_set_input(fd_form_sendto->input_cmd,
246                              lyxrc.custom_export_command.c_str());
247         if (lyxrc.custom_export_format == "lyx")
248                 fl_set_button(fd_form_sendto->radio_ftype_lyx, 1);
249         else if (lyxrc.custom_export_format == "tex")
250                 fl_set_button(fd_form_sendto->radio_ftype_latex, 1);
251         else if (lyxrc.custom_export_format == "dvi")
252                 fl_set_button(fd_form_sendto->radio_ftype_dvi, 1);
253         else if (lyxrc.custom_export_format == "ps")
254                 fl_set_button(fd_form_sendto->radio_ftype_ps, 1);
255         else if (lyxrc.custom_export_format == "ascii")
256                 fl_set_button(fd_form_sendto->radio_ftype_ascii, 1);
257
258         // Update parameters.
259         lyxViews->redraw();
260
261         // Initialize the views.
262         lyxViews->init();
263
264         // in 0.12 the initialisation of the LyXServer must be done here
265         // 0.13 it should be moved again...
266         lyxserver = new LyXServer(lyxViews->getLyXFunc(), lyxrc.lyxpipes);
267 }
268
269
270 void LyXGUI::create_forms()
271 {
272         lyxerr[Debug::INIT] << "Initializing LyXView..." << endl;
273         lyxViews = GUIRunTime::createMainView(width, height);
274         lyxerr[Debug::INIT] << "Initializing LyXView...done" << endl;
275
276         // From here down should be done by somebody else. (Lgb)
277
278         //
279         // Create forms
280         //
281
282         // the sendto form
283         fd_form_sendto = create_form_form_sendto();
284         fl_set_form_atclose(fd_form_sendto->form_sendto, CancelCloseBoxCB, 0);
285
286         // the figure form
287         fd_form_figure = create_form_form_figure();
288         fl_set_form_atclose(fd_form_figure->form_figure,
289                             CancelCloseBoxCB, 0);
290         fl_set_button(fd_form_figure->radio_postscript, 1);
291
292         // This is probably as good a time as any to map the xform colours,
293         // should a mapping exist.
294         {
295                 string filename = AddName(user_lyxdir, "preferences.xform");
296                 XformsColor::read( filename );
297         }
298         
299         // Show the main & title form
300         int main_placement = FL_PLACE_CENTER | FL_FREE_SIZE;
301         // Did we get a valid position?
302         if (xpos >= 0 && ypos >= 0) {
303                 lyxViews->setPosition(xpos, ypos);
304                 main_placement = FL_PLACE_POSITION;
305         }
306
307         lyxViews->show(main_placement, FL_FULLBORDER, "LyX");
308 }
309
310
311 void LyXGUI::runTime()
312 {
313         if (!gui) return;
314
315         GUIRunTime::runTime();
316 }
317
318
319 void LyXGUI::regBuf(Buffer * b)
320 {
321         lyxViews->view()->buffer(b);
322 }
323
324
325 LyXView * LyXGUI::getLyXView() const
326 {
327         return lyxViews;
328 }