]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/lyx_gui.C
fix crash with "save as"
[lyx.git] / src / frontends / xforms / lyx_gui.C
index 66fd9c84d37ac6be17e0d86ce4970555407b5b34..7713c528225e2613f92bb6836ebecece61a31729 100644 (file)
@@ -1,25 +1,28 @@
 /**
- * \file lyx_gui.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * \file xforms/lyx_gui.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author unknown
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
+
 #include "lyx_gui.h"
+
 #include "support/lyxlib.h"
 #include "support/os.h"
 #include "support/filetools.h"
+
 #include "debug.h"
 #include "gettext.h"
+
 #include "lyx_main.h"
 #include "lyxrc.h"
+#include "lyxfont.h"
 
 // FIXME: move this stuff out again
 #include "bufferlist.h"
 #include "lyxserver.h"
 #include "BufferView.h"
 #include "XFormsView.h"
+
 #include FORMS_H_LOCATION
 #include "ColorHandler.h"
 #include "xforms_helpers.h"
+#include "xfont_loader.h"
 #ifdef USE_XFORMS_IMAGE_LOADER
-#include "xformsGImage.h"
+#include "xformsImage.h"
 #else
 #include "graphics/GraphicsImageXPM.h"
 #endif
 
+#include "Lsstream.h"
+#include <iomanip>
 #include <fcntl.h>
-
 #include <boost/bind.hpp>
+
+#ifndef CXX_GLOBAL_CSTD
+using std::exit;
+#endif
+
 using std::vector;
 using std::hex;
+using std::dec;
 using std::endl;
-extern bool finished;
+using std::setbase;
+using std::setfill;
+using std::setw;
+
 extern BufferList bufferlist;
+
 // FIXME: wrong place !
 LyXServer * lyxserver;
+
 namespace {
+
+/// quit lyx
+bool finished = false;
+
+/// estimate DPI from X server
+float getDPI()
+{
+       Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen);
+       return ((HeightOfScreen(scr) * 25.4 / HeightMMOfScreen(scr)) +
+               (WidthOfScreen(scr) * 25.4 / WidthMMOfScreen(scr))) / 2;
+}
+
+
 /// set default GUI configuration
 void setDefaults()
 {
@@ -76,7 +99,7 @@ void setDefaults()
                        | FL_PDBorderWidth, &cntl);
 }
 
+
 extern "C" {
 
 int LyX_XErrHandler(Display * display, XErrorEvent * xeev) {
@@ -99,19 +122,19 @@ int LyX_XErrHandler(Display * display, XErrorEvent * xeev) {
        lyx::abort();
        return 0;
 }
+
 }
+
 /// read in geometry specification
 char geometry[40];
+
 } // namespace anon
 
+
 void lyx_gui::parse_init(int & argc, char * argv[])
 {
        setDefaults();
+
        FL_CMD_OPT cmdopt[] = {
                {"-geometry", "*.geometry", XrmoptionSepArg, "690x510"}
        };
@@ -121,36 +144,48 @@ void lyx_gui::parse_init(int & argc, char * argv[])
        };
 
        const int num_res = sizeof(res)/sizeof(FL_resource);
+
        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.
        locale_init();
+
        fl_get_app_resources(res, num_res);
+
        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);
+               ::exit(1);
        }
+
        fcntl(ConnectionNumber(display), F_SETFD, FD_CLOEXEC);
+
        XSetErrorHandler(LyX_XErrHandler);
 
        lyxColorHandler.reset(new LyXColorHandler());
+
+       using namespace grfx;
+
+#ifdef USE_XFORMS_IMAGE_LOADER
+       // connect the image loader based on the xforms library
+       Image::newImage = boost::bind(&xformsImage::newImage);
+       Image::loadableFormats = boost::bind(&xformsImage::loadableFormats);
+#else
+       // connect the image loader based on the XPM library
+       Image::newImage = boost::bind(&ImageXPM::newImage);
+       Image::loadableFormats = boost::bind(&ImageXPM::loadableFormats);
+#endif
+
+       // must do this /before/ lyxrc gets read
+       lyxrc.dpi = getDPI();
 }
+
 
 void lyx_gui::parse_lyxrc()
 {
-       // FIXME !!!! 
-       lyxrc.dpi = 95;
        XformsColor::read(AddName(user_lyxdir, "preferences.xform"));
 
        if (lyxrc.popup_font_encoding.empty())
@@ -203,35 +238,35 @@ void lyx_gui::parse_lyxrc()
 #endif
 }
 
-void lyx_gui::start(string const & batch, vector<string> files)
+
+void lyx_gui::start(string const & batch, vector<string> const & files)
 {
        // initial geometry
        int xpos = -1;
        int ypos = -1;
        unsigned int width = 690;
        unsigned int height = 510;
-       static const int geometryBitmask =
+
+       int const geometryBitmask =
                XParseGeometry(geometry,
-                               &xpos, &ypos, &width, &height);
+                              &xpos, &ypos, &width, &height);
 
        // if width is not set by geometry, check it against monitor width
-       if (!(geometryBitmask & 4)) {
+       if (!(geometryBitmask & WidthValue)) {
                Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen);
                if (WidthOfScreen(scr) - 8 < int(width))
                        width = WidthOfScreen(scr) - 8;
        }
 
        // if height is not set by geometry, check it against monitor height
-       if (!(geometryBitmask & 8)) {
+       if (!(geometryBitmask & HeightValue)) {
                Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen);
                if (HeightOfScreen(scr) - 24 < int(height))
                        height = HeightOfScreen(scr) - 24;
        }
 
        Screen * s = ScreenOfDisplay(fl_get_display(), fl_screen);
+
        // recalculate xpos if it's not set
        if (xpos == -1)
                xpos = (WidthOfScreen(s) - width) / 2;
@@ -242,17 +277,17 @@ void lyx_gui::start(string const & batch, vector<string> files)
 
        lyxerr[Debug::GUI] << "Creating view: " << width << "x" << height
                << "+" << xpos << "+" << ypos << endl;
+
        XFormsView view(width, height);
        view.show(xpos, ypos, "LyX");
        view.init();
 
        Buffer * last = 0;
+
        // FIXME: some code below needs moving
 
-       lyxserver = new LyXServer(view.getLyXFunc(), lyxrc.lyxpipes);
+       lyxserver = new LyXServer(&view.getLyXFunc(), lyxrc.lyxpipes);
+
        vector<string>::const_iterator cit = files.begin();
        vector<string>::const_iterator end = files.end();
        for (; cit != end; ++cit) {
@@ -269,38 +304,94 @@ void lyx_gui::start(string const & batch, vector<string> files)
 
        // handle the batch commands the user asked for
        if (!batch.empty()) {
-               view.getLyXFunc()->verboseDispatch(batch, false);
+               view.getLyXFunc().dispatch(batch);
        }
 
-       // enter the event loop 
+       // enter the event loop
        while (!finished) {
                if (fl_check_forms() == FL_EVENT) {
                        XEvent ev;
                        fl_XNextEvent(&ev);
                        lyxerr << "Received unhandled X11 event" << endl;
-                       lyxerr << "Type: 0x" << hex << ev.xany.type <<
-                               " Target: 0x" << hex << ev.xany.window << endl;
+                       lyxerr << "Type: " << ev.xany.type
+                              << " Target: 0x" << hex << ev.xany.window
+                              << dec << endl;
                }
        }
 
-       // FIXME 
+       // FIXME: breaks emergencyCleanup
        delete lyxserver;
 }
-// Called by the graphics cache to connect the appropriate frontend
-// image loading routines to the LyX kernel.
-void lyx_gui::init_graphics()
+
+
+void lyx_gui::exit()
 {
-       using namespace grfx;
+       finished = true;
+}
 
-#ifdef USE_XFORMS_IMAGE_LOADER
-       // connect the image loader based on the xforms library
-       GImage::newImage.connect(boost::bind(&xformsGImage::newImage));
-       GImage::loadableFormats.connect(boost::bind(&xformsGImage::loadableFormats));
-#else
-       // connect the image loader based on the XPM library
-       GImage::newImage.connect(boost::bind(&GImageXPM::newImage));
-       GImage::loadableFormats.connect(boost::bind(&GImageXPM::loadableFormats));
-#endif
+
+string const lyx_gui::hexname(LColor::color col)
+{
+       string const name = lcolor.getX11Name(col);
+       Display * const display = fl_get_display();
+       Colormap const cmap = fl_state[fl_get_vclass()].colormap;
+       XColor xcol, ccol;
+
+       if (XLookupColor(display, cmap, name.c_str(), &xcol, &ccol) == 0) {
+                       lyxerr << "X can't find color \""
+                              << lcolor.getLyXName(col)
+                              << "\"" << endl;
+                       return string();
+       }
+
+       ostringstream os;
+
+       // Note that X stores the RGB values in the range 0 - 65535
+       // whilst we require them in the range 0 - 255.
+       os << setbase(16) << setfill('0')
+          << setw(2) << (xcol.red   / 256)
+          << setw(2) << (xcol.green / 256)
+          << setw(2) << (xcol.blue  / 256);
+
+       return STRCONV(os.str());
+}
+
+
+void lyx_gui::update_color(LColor::color col)
+{
+       lyxColorHandler->updateColor(col);
+}
+
+
+void lyx_gui::update_fonts()
+{
+       fontloader.update();
+}
+
+
+bool lyx_gui::font_available(LyXFont const & font)
+{
+       return fontloader.available(font);
+}
+
+namespace {
+
+extern "C"
+void C_read_callback(int, void * data)
+{
+       LyXComm * comm = static_cast<LyXComm *>(data);
+       comm->read_ready();
+}
+
+}
+
+void lyx_gui::set_read_callback(int fd, LyXComm * comm)
+{
+       fl_add_io_callback(fd, FL_READ, C_read_callback, comm);
+}
+
+
+void lyx_gui::remove_read_callback(int fd)
+{
+       fl_remove_io_callback(fd, FL_READ, C_read_callback);
 }