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