]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_gui.C
Fix fuer #209
[lyx.git] / src / lyx_gui.C
index 6003d6368069507dc6275ac9f7d3f5d877e9d2b0..50ebac4742f04aa117abf3ecc2a87a34e46ce975 100644 (file)
@@ -4,26 +4,19 @@
  *           LyX, The Document Processor
  *      
  *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+ *          Copyright 1995-2001 The LyX Team.
  *
  * ====================================================== */
 
 #include <config.h>
-#include <cstdlib>
-#include <clocale>
 
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <fcntl.h>
 #include "lyx_gui.h"
 #include FORMS_H_LOCATION
-#include "support/filetools.h"
-#include "combox.h"
-#include "lyx.h"
-#include "form1.h"
-#include "layout_forms.h"
+#include "figure_form.h"
 #include "print_form.h"
 #include "tex-strings.h"
 #include "lyx_main.h"
@@ -31,6 +24,7 @@
 #include "version.h"
 #include "LyXView.h"
 #include "buffer.h"
+#include "BufferView.h"
 #include "lyxserver.h"
 #include "lyxrc.h"
 #include "gettext.h"
 #include "lyxlookup.h"
 #endif
 #include "bufferlist.h"
-#include "language.h"
 #include "ColorHandler.h"
-#include "frontends/Dialogs.h"
+
 #include "frontends/GUIRunTime.h"
-#include "frontends/xforms/xform_helpers.h" // for XformColor
+#include "frontends/xforms/xforms_helpers.h" // for XformColor
+
+#include "support/filetools.h"
+#include "support/os.h"
+#include "support/lyxlib.h"
+
+#include <cstdlib>
+#include <fcntl.h>
 
 using std::endl;
 
-FD_form_character * fd_form_character;
-FD_form_preamble * fd_form_preamble;
 FD_form_sendto * fd_form_sendto;
 FD_form_figure * fd_form_figure;
-Combox * combo_language;
-Combox * combo_language2;
 
 extern LyXServer * lyxserver;
 extern bool finished;  // flag, that we are quitting the program
 extern BufferList bufferlist;
-extern GUIRunTime guiruntime;
 extern string user_lyxdir;
 
 FL_CMD_OPT cmdopt[] =
@@ -65,11 +60,15 @@ FL_CMD_OPT cmdopt[] =
        {"-geometry", "*.geometry", XrmoptionSepArg, "690x510"}
 };
 
-static int width  = 690;
-static int height = 510;
-static int xpos   = -1;
-static int ypos   = -1;
-static char geometry[40];
+namespace {
+
+int width  = 690;
+int height = 510;
+int xpos   = -1;
+int ypos   = -1;
+char geometry[40];
+
+} // namespace anon
 
 
 FL_resource res[] =
@@ -78,12 +77,13 @@ FL_resource res[] =
 };
 
 
-extern "C"
+extern "C" {
+       
+static
 int LyX_XErrHandler(Display * display, XErrorEvent * xeev)
 {
-       // emergency save
-       if (!bufferlist.empty())
-               bufferlist.emergencyWriteAll();
+       // emergency cleanup
+       LyX::emergencyCleanup();
 
        // Get the reason for the crash.
        char etxt[513];
@@ -93,6 +93,8 @@ int LyX_XErrHandler(Display * display, XErrorEvent * xeev)
        lyx::abort();
        return 0; // Solaris CC wants us to return something
 }
+       
+}
 
 
 LyXGUI::LyXGUI(LyX * owner, int * argc, char * argv[], bool GUI)
@@ -109,7 +111,7 @@ LyXGUI::LyXGUI(LyX * owner, int * argc, char * argv[], bool GUI)
        fl_initialize(argc, argv, "LyX", cmdopt, num_res);
        // It appears that, in xforms >=0.89.5, fl_initialize()
        // calls setlocale() and ruins our LC_NUMERIC setting.
-       setlocale(LC_NUMERIC, "C");
+       locale_init();
        fl_get_app_resources(res, num_res);
 
        static const int geometryBitmask =
@@ -122,6 +124,7 @@ LyXGUI::LyXGUI(LyX * owner, int * argc, char * argv[], bool GUI)
        Display * display = fl_get_display();
        if (!display) {
                lyxerr << "LyX: unable to access X display, exiting" << endl;
+               os::warn("Unable to access X display, exiting");
                exit(1);
        }
        fcntl(ConnectionNumber(display), F_SETFD, FD_CLOEXEC);
@@ -136,28 +139,30 @@ LyXGUI::LyXGUI(LyX * owner, int * argc, char * argv[], bool GUI)
        
        // If width is not set by geometry, check it against monitor width
        if (!(geometryBitmask & 4)) {
-               Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen); //DefaultScreen(fl_get_display());
+               Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen);
                if (WidthOfScreen(scr) - 8 < width)
                        width = WidthOfScreen(scr) - 8;
        }
 
        // If height is not set by geometry, check it against monitor height
        if (!(geometryBitmask & 8)) {
-               Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen); //DefaultScreen(fl_get_display());
+               Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen);
                if (HeightOfScreen(scr) - 24 < height)
                        height = HeightOfScreen(scr) - 24;
        }
 
        // Recalculate xpos if it's negative
        if (geometryBitmask & 16)
-               xpos += WidthOfScreen(ScreenOfDisplay(fl_get_display(), fl_screen)) - width; //DefaultScreen(fl_get_display())) - width;
+               xpos += WidthOfScreen(ScreenOfDisplay(fl_get_display(),
+                                                     fl_screen)) - width;
 
        // Recalculate ypos if it's negative
        if (geometryBitmask & 32)
-               ypos += HeightOfScreen(ScreenOfDisplay(fl_get_display(), fl_screen)) - height; //DefaultScreen(fl_get_display())) - height;
+               ypos += HeightOfScreen(ScreenOfDisplay(fl_get_display(),
+                                                      fl_screen)) - height;
 
        // Initialize the LyXColorHandler
-       lyxColorHandler = new LyXColorHandler;
+       lyxColorHandler.reset(new LyXColorHandler);
 }
 
 
@@ -189,16 +194,16 @@ void LyXGUI::init()
 
        create_forms();
 
-       if (lyxrc.font_norm_menu.empty())
-               lyxrc.font_norm_menu = lyxrc.font_norm;
+       if (lyxrc.popup_font_encoding.empty())
+               lyxrc.popup_font_encoding = lyxrc.font_norm;
        // Set the font name for popups and menus
-        string boldfontname = lyxrc.menu_font_name 
+        string boldfontname = lyxrc.popup_bold_font
                               + "-*-*-*-?-*-*-*-*-"  
-                              + lyxrc.font_norm_menu;
+                              + lyxrc.popup_font_encoding;
                // "?" means "scale that font"
-        string fontname = lyxrc.popup_font_name 
+        string fontname = lyxrc.popup_normal_font 
                               + "-*-*-*-?-*-*-*-*-"  
-                              + lyxrc.font_norm_menu;
+                              + lyxrc.popup_font_encoding;
 
        int bold = fl_set_font_name(FL_BOLD_STYLE, boldfontname.c_str());
        int normal = fl_set_font_name(FL_NORMAL_STYLE, fontname.c_str());
@@ -236,6 +241,11 @@ void LyXGUI::init()
        fl_setpup_fontsize(FL_NORMAL_SIZE);
        fl_setpup_color(FL_MCOL, FL_BLACK);
        fl_set_goodies_font(FL_NORMAL_STYLE, FL_NORMAL_SIZE);
+#if FL_REVISION < 89 
+       fl_set_oneliner_font(FL_NORMAL_STYLE, FL_NORMAL_SIZE);
+#else
+       fl_set_tooltip_font(FL_NORMAL_STYLE, FL_NORMAL_SIZE);
+#endif
 
         // all lyxrc settings has to be done here as lyxrc has not yet
         // been read when the GUI is created (Jug)
@@ -270,7 +280,7 @@ void LyXGUI::init()
 void LyXGUI::create_forms()
 {
        lyxerr[Debug::INIT] << "Initializing LyXView..." << endl;
-       lyxViews = new LyXView(width, height);
+       lyxViews = GUIRunTime::createMainView(width, height);
        lyxerr[Debug::INIT] << "Initializing LyXView...done" << endl;
 
        // From here down should be done by somebody else. (Lgb)
@@ -279,58 +289,6 @@ void LyXGUI::create_forms()
        // Create forms
        //
 
-       // the character form
-       fd_form_character = create_form_form_character();
-       fl_set_form_atclose(fd_form_character->form_character,
-                           CancelCloseBoxCB, 0);
-       fl_addto_choice(fd_form_character->choice_family, 
-                       _(" No change %l| Roman | Sans Serif | Typewriter %l| Reset "));
-       fl_addto_choice(fd_form_character->choice_series, 
-                       _(" No change %l| Medium | Bold %l| Reset "));
-       fl_addto_choice(fd_form_character->choice_shape,
-                       _(" No change %l| Upright | Italic | Slanted | Small Caps "
-                       "%l| Reset "));
-       fl_addto_choice(fd_form_character->choice_size, 
-                       _(" No change %l| Tiny | Smallest | Smaller | Small "
-                       "| Normal | Large | Larger | Largest | Huge | Huger "
-                       "%l| Increase | Decrease | Reset "));
-       fl_addto_choice(fd_form_character->choice_bar, 
-                       _(" No change %l| Emph | Underbar | Noun | LaTeX mode %l| Reset "));
-       fl_addto_choice(fd_form_character->choice_color, 
-                       _(" No change %l| No color | Black | White | Red | Green "
-                       "| Blue | Cyan | Magenta | Yellow %l| Reset "));
-       // Appears to need initialising to avoid seg fault when dialog is
-       // launched. Over-written by combo_language2, below
-       fl_addto_choice(fd_form_character->choice_language,
-                       _(" English %l| German | French "));
-       fl_set_form_minsize(fd_form_character->form_character,
-                           fd_form_character->form_character->w,
-                           fd_form_character->form_character->h);
-       lyxerr[Debug::INIT] << "Initializing form_character::combox..." << endl;
-       fl_addto_form(fd_form_character->form_character);
-       combo_language2 = new Combox(FL_COMBOX_DROPLIST);
-       FL_OBJECT * ob = fd_form_character->choice_language;
-       combo_language2->add(ob->x, ob->y, ob->w, ob->h, 250);
-       combo_language2->shortcut("#L", 1);
-       fl_end_form();
-       lyxerr[Debug::INIT] << "Initializing form_character...done" << endl;
-
-       // build up the combox entries
-       combo_language2->addline(_("No change"));
-       combo_language2->addline(_("Reset"));
-       for (Languages::const_iterator cit = languages.begin();
-           cit != languages.end(); ++cit) {
-#ifdef DO_USE_DEFAULT_LANGUAGE
-           if ((*cit).second.lang() != "default")
-#endif
-               combo_language2->addto((*cit).second.lang());
-       }
-
-       // the preamble form
-       fd_form_preamble = create_form_form_preamble();
-       fl_set_form_atclose(fd_form_preamble->form_preamble,
-                           CancelCloseBoxCB, 0);
-
        // the sendto form
        fd_form_sendto = create_form_form_sendto();
        fl_set_form_atclose(fd_form_sendto->form_sendto, CancelCloseBoxCB, 0);
@@ -343,10 +301,8 @@ void LyXGUI::create_forms()
 
        // This is probably as good a time as any to map the xform colours,
        // should a mapping exist.
-       {
-               string filename = AddName(user_lyxdir, "preferences.xform");
-               XformColor::read( filename );
-       }
+       string const filename = AddName(user_lyxdir, "preferences.xform");
+       XformsColor::read( filename );
        
        // Show the main & title form
        int main_placement = FL_PLACE_CENTER | FL_FREE_SIZE;
@@ -357,9 +313,6 @@ void LyXGUI::create_forms()
        }
 
        lyxViews->show(main_placement, FL_FULLBORDER, "LyX");
-
-       if (lyxrc.show_banner)
-               lyxViews->getDialogs()->showSplash();
 }
 
 
@@ -367,7 +320,7 @@ void LyXGUI::runTime()
 {
        if (!gui) return;
 
-       guiruntime.runTime();
+       GUIRunTime::runTime();
 }