]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_main.C
move some selection related stuff over to textcursor.C
[lyx.git] / src / lyx_main.C
index 1cb60a42630b36784ff81f7b54da78ace05af828..44cd30ab063718c557bd2149a5fcb953f30f5a0d 100644 (file)
 
 #include "bufferlist.h"
 #include "buffer.h"
+#include "buffer_funcs.h"
 #include "lyxserver.h"
 #include "kbmap.h"
 #include "lyxfunc.h"
-#include "ToolbarDefaults.h"
+#include "ToolbarBackend.h"
 #include "MenuBackend.h"
 #include "language.h"
 #include "lastfiles.h"
 #include "frontends/Alert.h"
 #include "frontends/lyx_gui.h"
 
-#include "support/BoostFormat.h"
 #include <boost/function.hpp>
+#include <boost/bind.hpp>
+#include <boost/signals/signal1.hpp>
 
 #include <cstdlib>
 #include <csignal>
+#include <iostream>
 
 using std::vector;
 using std::endl;
@@ -74,6 +77,17 @@ BufferList bufferlist;
 // convenient to have it here.
 boost::scoped_ptr<kb_keymap> toplevel_keymap;
 
+namespace {
+
+void showFileError(string const & error)
+{
+       Alert::warning(_("Could not read configuration file"),
+                  bformat(_("Error while reading the configuration file\n%1$s.\n"
+                    "Please check your installation."), error));
+       exit(EXIT_FAILURE);
+}
+
+}
 
 LyX::LyX(int & argc, char * argv[])
 {
@@ -98,15 +112,8 @@ LyX::LyX(int & argc, char * argv[])
        // other than documents
        for (int argi = 1; argi < argc ; ++argi) {
                if (argv[argi][0] == '-') {
-#if USE_BOOST_FORMAT
-                       lyxerr << boost::format(_("Wrong command line option `%1$s'. Exiting."))
-                               % argv[argi]
-                              << endl;
-#else
-                       lyxerr << _("Wrong command line option `")
-                              << argv[argi] << _("'. Exiting.")
-                              << endl;
-#endif
+                       lyxerr << bformat(_("Wrong command line option `%1$s'. Exiting."),
+                               argv[argi]) << endl;
                        exit(1);
                }
        }
@@ -126,9 +133,8 @@ LyX::LyX(int & argc, char * argv[])
                files.push_back(argv[argi]);
        }
 
-       if (first_start) {
+       if (first_start)
                files.push_back(i18nLibFileSearch("examples", "splash.lyx"));
-       }
 
        // Execute batch commands if available
        if (!batch_command.empty()) {
@@ -137,18 +143,24 @@ LyX::LyX(int & argc, char * argv[])
 
                Buffer * last_loaded = 0;
 
-               vector<string>::iterator it = files.begin();
-               vector<string>::iterator end = files.end();
+               vector<string>::const_iterator it = files.begin();
+               vector<string>::const_iterator end = files.end();
+
                for (; it != end; ++it) {
-                       last_loaded = bufferlist.loadLyXFile(*it);
+                       // get absolute path of file and add ".lyx" to 
+                       // the filename if necessary
+                       string s = FileSearch(string(), *it, "lyx");
+                       if (s.empty()) {
+                               s = *it;
+                       }
+
+                       last_loaded = bufferlist.newBuffer(s, false);
+                       last_loaded->parseError.connect(boost::bind(&LyX::printError, this, _1));
+                       loadLyXFile(last_loaded, s);
                }
 
                files.clear();
 
-               // no buffer loaded, create one
-               if (!last_loaded)
-                       last_loaded = bufferlist.newFile("tmpfile", string());
-
                bool success = false;
 
                // try to dispatch to last loaded buffer first
@@ -210,6 +222,14 @@ static void error_handler(int err_sig)
 }
 
 
+void LyX::printError(ErrorItem const & ei)
+{
+       std::cerr << _("LyX: ") << ei.error 
+                 << ':' << ei.description << std::endl;
+
+}
+
+
 void LyX::init(bool gui)
 {
        signal(SIGHUP, error_handler);
@@ -241,7 +261,7 @@ void LyX::init(bool gui)
 
        // Directories are searched in this order:
        // 1) -sysdir command line parameter
-       // 2) LYX_DIR_13x environment variable
+       // 2) LYX_DIR_14x environment variable
        // 3) Maybe <path of binary>/TOP_SRCDIR/lib
        // 4) <path of binary>/../share/<name of binary>/
        // 4a) repeat 4 after following the Symlink if <path of
@@ -258,10 +278,10 @@ void LyX::init(bool gui)
        if (!system_lyxdir.empty())
                searchpath = MakeAbsPath(system_lyxdir) + ';';
 
-       string const lyxdir = GetEnvPath("LYX_DIR_13x");
+       string const lyxdir = GetEnvPath("LYX_DIR_14x");
 
        if (!lyxdir.empty()) {
-               lyxerr[Debug::INIT] << "LYX_DIR_13x: " << lyxdir << endl;
+               lyxerr[Debug::INIT] << "LYX_DIR_14x: " << lyxdir << endl;
                searchpath += lyxdir + ';';
        }
 
@@ -336,7 +356,7 @@ void LyX::init(bool gui)
        // Warn if environment variable is set, but unusable
        if (!lyxdir.empty()) {
                if (system_lyxdir != NormalizePath(lyxdir)) {
-                       lyxerr <<_("LYX_DIR_13x environment variable no good.")
+                       lyxerr <<_("LYX_DIR_14x environment variable no good.")
                               << '\n'
                               << _("System directory set to: ")
                               << system_lyxdir << endl;
@@ -348,7 +368,7 @@ void LyX::init(bool gui)
        if (system_lyxdir == "./") {
                lyxerr <<_("LyX Warning! Couldn't determine system directory. ")
                       <<_("Try the '-sysdir' command line parameter or ")
-                      <<_("set the environment variable LYX_DIR_13x to the "
+                      <<_("set the environment variable LYX_DIR_14x to the "
                           "LyX system directory ")
                       << _("containing the file `chkconfig.ltx'.") << endl;
                if (!path_shown) {
@@ -358,16 +378,8 @@ void LyX::init(bool gui)
                                        << "Giving up." << endl;
                                exit(1);
                        }
-#if USE_BOOST_FORMAT
-                       lyxerr << boost::format(_("Using built-in default %1$s"
-                                                 " but expect problems."))
-                               % static_cast<char *>(LYX_DIR)
-                              << endl;
-#else
-                       lyxerr << _("Using built-in default ") << LYX_DIR
-                              << _(" but expect problems.")
-                              << endl;
-#endif
+                       lyxerr << bformat(_("Using built-in default %1$s but expect problems."),
+                               LYX_DIR) << endl;
                } else {
                        lyxerr << _("Expect problems.") << endl;
                }
@@ -385,15 +397,15 @@ void LyX::init(bool gui)
 
        // Directories are searched in this order:
        // 1) -userdir command line parameter
-       // 2) LYX_USERDIR_13x environment variable
+       // 2) LYX_USERDIR_14x environment variable
        // 3) $HOME/.<name of binary>
 
        // If we had a command line switch, user_lyxdir is already set
        bool explicit_userdir = true;
        if (user_lyxdir.empty()) {
 
-               // LYX_USERDIR_13x environment variable
-               user_lyxdir = GetEnvPath("LYX_USERDIR_13x");
+               // LYX_USERDIR_14x environment variable
+               user_lyxdir = GetEnvPath("LYX_USERDIR_14x");
 
                // default behaviour
                if (user_lyxdir.empty())
@@ -413,23 +425,23 @@ void LyX::init(bool gui)
                first_start = false;
        }
 
-       //
-       // Shine up lyxrc defaults
-       //
+       // Disable gui when easyparse says so
+       lyx_gui::use_gui = gui;
 
-       // Default template path: system_dir/templates
        if (lyxrc.template_path.empty()) {
                lyxrc.template_path = AddPath(system_lyxdir, "templates");
        }
 
-       // Default lastfiles file: $HOME/.lyx/lastfiles
        if (lyxrc.lastfiles.empty()) {
                lyxrc.lastfiles = AddName(user_lyxdir, "lastfiles");
        }
 
-       // Disable gui when either lyxrc or easyparse says so
-       if (!gui)
-               lyxrc.use_gui = false;
+       if (lyxrc.roman_font_name.empty())
+               lyxrc.roman_font_name = lyx_gui::roman_font_name();
+       if (lyxrc.sans_font_name.empty())
+               lyxrc.sans_font_name = lyx_gui::sans_font_name();
+       if (lyxrc.typewriter_font_name.empty())
+               lyxrc.typewriter_font_name = lyx_gui::typewriter_font_name();
 
        //
        // Read configuration files
@@ -441,10 +453,12 @@ void LyX::init(bool gui)
        system_converters = converters;
        system_lcolor = lcolor;
 
-       // If there is a preferences file we read that instead
-       // of the old lyxrc file.
-       if (!readRcFile("preferences"))
-               readRcFile("lyxrc");
+       string prefsfile = "preferences";
+       // back compatibility to lyxs < 1.1.6 
+       if (LibFileSearch(string(), prefsfile).empty())
+               prefsfile = "lyxrc";
+       if (!LibFileSearch(string(), prefsfile).empty())
+               readRcFile(prefsfile);
 
        readEncodingsFile("encodings");
        readLanguagesFile("languages");
@@ -460,9 +474,8 @@ void LyX::init(bool gui)
        // Read menus
        readUIFile(lyxrc.ui_file);
 
-       if (lyxerr.debugging(Debug::LYXRC)) {
+       if (lyxerr.debugging(Debug::LYXRC))
                lyxrc.print();
-       }
 
        os::setTmpDir(CreateLyXTmpDir(lyxrc.tempdir_path));
        system_tempdir = os::getTmpDir();
@@ -485,8 +498,8 @@ void LyX::defaultKeyBindings(kb_keymap  * kbmap)
        kbmap->bind("Up", LFUN_UP);
        kbmap->bind("Down", LFUN_DOWN);
 
-       kbmap->bind("Tab", LFUN_TAB);
-       kbmap->bind("ISO_Left_Tab", LFUN_TAB); // jbl 2001-23-02
+       kbmap->bind("Tab", LFUN_CELL_FORWARD);
+       kbmap->bind("ISO_Left_Tab", LFUN_CELL_FORWARD); // jbl 2001-23-02
 
        kbmap->bind("Home", LFUN_HOME);
        kbmap->bind("End", LFUN_END);
@@ -530,9 +543,9 @@ void LyX::defaultKeyBindings(kb_keymap  * kbmap)
        kbmap->bind("KP_Prior", LFUN_PRIOR);
        kbmap->bind("KP_Next", LFUN_NEXT);
 
-       kbmap->bind("C-Tab", LFUN_TABINSERT);  // ale970515
-       kbmap->bind("S-Tab", LFUN_SHIFT_TAB);  // jug20000522
-       kbmap->bind("S-ISO_Left_Tab", LFUN_SHIFT_TAB); // jbl 2001-23-02
+       kbmap->bind("C-Tab", LFUN_CELL_SPLIT);  // ale970515
+       kbmap->bind("S-Tab", LFUN_CELL_BACKWARD);  // jug20000522
+       kbmap->bind("S-ISO_Left_Tab", LFUN_CELL_BACKWARD); // jbl 2001-23-02
 }
 
 
@@ -598,29 +611,14 @@ void LyX::queryUserLyXDir(bool explicit_userdir)
 
        first_start = !explicit_userdir;
 
-#if USE_BOOST_FORMAT
-       lyxerr << boost::format(_("LyX: Creating directory %1$s"
-                                 " and running configure..."))
-               % user_lyxdir
-              << endl;
-#else
-       lyxerr << _("LyX: Creating directory ") << user_lyxdir
-              << _(" and running configure...")
-              << endl;
-#endif
+       lyxerr << bformat(_("LyX: Creating directory %1$s"
+                                 " and running configure..."), user_lyxdir) << endl;
 
        if (!createDirectory(user_lyxdir, 0755)) {
                // Failed, let's use $HOME instead.
                user_lyxdir = GetEnvPath("HOME");
-#if USE_BOOST_FORMAT
-               lyxerr << boost::format(_("Failed. Will use %1$s instead."))
-                       % user_lyxdir
-                      << endl;
-#else
-               lyxerr << _("Failed. Will use ") << user_lyxdir <<
-                       _(" instead.")
-                      << endl;
-#endif
+               lyxerr << bformat(_("Failed. Will use %1$s instead."),
+                       user_lyxdir) << endl;
                return;
        }
 
@@ -631,33 +629,21 @@ void LyX::queryUserLyXDir(bool explicit_userdir)
 }
 
 
-bool LyX::readRcFile(string const & name)
+void LyX::readRcFile(string const & name)
 {
        lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
 
        string const lyxrc_path = LibFileSearch(string(), name);
        if (!lyxrc_path.empty()) {
+
                lyxerr[Debug::INIT] << "Found " << name
                                    << " in " << lyxrc_path << endl;
-               if (lyxrc.read(lyxrc_path) < 0) {
-#if USE_BOOST_FORMAT
-                       Alert::warning(_("Could not read configuration file"),
-                                  boost::io::str(boost::format(
-                                  _("Error while reading the configuration file\n%1$s.\n"
-                                    ".\nLyX will use the built-in defaults.")) % lyxrc_path));
-#else
-                       Alert::warning(_("Could not read configuration file"),
-                                  string(_("Error while reading the configuration file\n"))
-                                  + lyxrc_path + _(".\nLyX will use the built-in defaults."));
-#endif
-                       return false;
-               }
-               return true;
-       } else {
-               lyxerr[Debug::INIT] << "Could not find " << name << endl;
+
+               if (lyxrc.read(lyxrc_path) >= 0)
+                       return;
        }
 
-       return false;
+       showFileError(name);
 }
 
 
@@ -667,23 +653,41 @@ void LyX::readUIFile(string const & name)
        enum Uitags {
                ui_menuset = 1,
                ui_toolbar,
+               ui_toolbars,
+               ui_include,
                ui_last
        };
 
        struct keyword_item uitags[ui_last - 1] = {
+               { "include", ui_include },
                { "menuset", ui_menuset },
-               { "toolbar", ui_toolbar }
+               { "toolbar", ui_toolbar },
+               { "toolbars", ui_toolbars }
        };
 
+       // Ensure that a file is read only once (prevents include loops)
+       static std::list<string> uifiles;
+       std::list<string>::const_iterator it  = uifiles.begin();
+       std::list<string>::const_iterator end = uifiles.end();
+       it = std::find(it, end, name);
+       if (it != end) {
+               lyxerr[Debug::INIT] << "UI file '" << name
+                                   << "' has been read already. "
+                                   << "Is this an include loop?"
+                                   << endl;
+               return;
+       }
+
        lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
 
        string const ui_path = LibFileSearch("ui", name, "ui");
 
        if (ui_path.empty()) {
                lyxerr[Debug::INIT] << "Could not find " << name << endl;
-               menubackend.defaults();
+               showFileError(name);
                return;
        }
+       uifiles.push_back(name);
 
        lyxerr[Debug::INIT] << "Found " << name
                            << " in " << ui_path << endl;
@@ -699,12 +703,22 @@ void LyX::readUIFile(string const & name)
 
        while (lex.isOK()) {
                switch (lex.lex()) {
+               case ui_include: {
+                       lex.next(true);
+                       string const file = lex.getString();
+                       readUIFile(file);
+                       break;
+               }
                case ui_menuset:
                        menubackend.read(lex);
                        break;
 
                case ui_toolbar:
-                       toolbardefaults.read(lex);
+                       toolbarbackend.read(lex);
+                       break;
+
+               case ui_toolbars:
+                       toolbarbackend.readToolbars(lex);
                        break;
 
                default:
@@ -724,8 +738,7 @@ void LyX::readLanguagesFile(string const & name)
 
        string const lang_path = LibFileSearch(string(), name);
        if (lang_path.empty()) {
-               lyxerr[Debug::INIT] << "Could not find " << name << endl;
-               languages.setDefaults();
+               showFileError(name);
                return;
        }
        languages.read(lang_path);
@@ -739,7 +752,7 @@ void LyX::readEncodingsFile(string const & name)
 
        string const enc_path = LibFileSearch(string(), name);
        if (enc_path.empty()) {
-               lyxerr[Debug::INIT] << "Could not find " << name << endl;
+               showFileError(name);
                return;
        }
        encodings.read(enc_path);
@@ -761,19 +774,14 @@ int parse_dbg(string const & arg, string const &)
                Debug::showTags(lyxerr);
                exit(0);
        }
-#if USE_BOOST_FORMAT
-       lyxerr << boost::format(_("Setting debug level to %1$s"))
-               % arg
-              << endl;
-#else
-       lyxerr << _("Setting debug level to ") << arg << endl;
-#endif
+       lyxerr << bformat(_("Setting debug level to %1$s"), arg) << endl;
 
        lyxerr.level(Debug::value(arg));
        Debug::showLevel(lyxerr, lyxerr.level());
        return 1;
 }
 
+
 int parse_help(string const &, string const &)
 {
        lyxerr <<