/* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright (C) 1995 Matthias Ettrich * Copyright (C) 1995-1998 The LyX Team. *
*======================================================*/
// Here we need to parse the command line. At least // we need to parse for "-dbg" and "-help" bool gui = easyParse(argc, argv);
// Global bindings (this must be done as early as possible.) (Lgb)
toplevel_keymap = new kb_keymap;
lyxerr.debug("Initializing lyxrc");
lyxrc = new LyXRC;
// Make the GUI object, and let it take care of the // command line arguments that concerns it.
lyxerr.debug("Initializing LyXGUI...");
lyxGUI = new LyXGUI(this, argc, argv, gui);
lyxerr.debug("Initializing LyXGUI...done");
// Initialization of LyX (reads lyxrc and more)
lyxerr.debug("Initializing LyX::init...");
init(argc, argv);
lyxerr.debug("Initializing LyX::init...done");
lyxGUI->init();
// Load the files specified in the command line. // Now the GUI and LyX have taken care of their arguments, so // the only thing left on the command line should be // filenames. if ((*argc)==2)
lyxerr.debug("Opening document..."); elseif ((*argc)>2)
lyxerr.debug("Opening documents...");
Buffer *last_loaded = NULL;
for (int argi = (*argc) - 1; argi >= 1; argi--) {
Buffer * loadb = bufferlist.loadLyXFile(argv[argi]); if (loadb != 0) {
last_loaded = loadb;
}
}
if (last_loaded != NULL) {
lyxerr.debug("Yes we loaded some files.");
lyxGUI->regBuf(last_loaded);
}
// Let the ball begin...
lyxGUI->runTime();
}
// A destructor is always necessary (asierra-970604)
LyX::~LyX()
{ if (lastfiles) delete lastfiles;
LString binpath = argv[0];
binpath.subst('\\','/');
LString binname = OnlyFilename(argv[0]); // Sorry for system specific code. (SMiyata) if (binname.suffixIs(".exe")) binname.substring(0,binname.length()-5);
binpath = ExpandPath(binpath); // This expands ./ and ~/
if (!AbsolutePath(binpath)) {
LString binsearchpath = getEnvPath("PATH");
binsearchpath += ";."; // This will make "src/lyx" work always :-)
binpath = FileOpenSearch(binsearchpath, argv[0]);
}
binpath = MakeAbsPath(OnlyPath(binpath));
if (binpath.empty()) {
lyxerr.print(_("Warning: could not determine path of binary."));
lyxerr.print(_("If you have problems, try starting LyX with an absolute path."));
}
lyxerr.debug("Path of binary: " + binpath);
// // Determine system directory. //
// Directories are searched in this order: // 1) -sysdir command line parameter // 2) LYX_DIR_10x environment variable // 3) Maybe <path of binary>/TOP_SRCDIR/lib // 4) <path of binary>/../share/<name of binary>/ // 5) hardcoded lyx_dir // The directory is checked for the presence of the file // "chkconfig.ltx", and if that is present, the directory // is accepted as the system directory. // If no chkconfig.ltx file is found, a warning is given, // and the hardcoded lyx_dir is used.
// If we had a command line switch, system_lyxdir is already set
LString searchpath = MakeAbsPath(system_lyxdir) + ';';
// Reduce "path/../path" stuff out of system directory
system_lyxdir = NormalizePath(system_lyxdir);
bool path_shown = false;
// Warn if environment variable is set, but unusable if (!lyxdir.empty()) { if (system_lyxdir != NormalizePath(lyxdir)) {
lyxerr.print(_("LYX_DIR_10x environment variable no good."));
lyxerr.print(_("System directory set to: ")
+ system_lyxdir);
path_shown = true;
}
}
// Warn the user if we couldn't find "chkconfig.ltx" if (system_lyxdir.empty()) {
lyxerr.print(_("LyX Warning! Couldn't determine system directory."));
lyxerr.print(_("Try the '-sysdir' command line parameter or"));
lyxerr.print(_("set the environment variable LYX_DIR_10x to the " "LyX system directory"));
lyxerr.print(_("containing the file `chkconfig.ltx'.")); if (!path_shown)
lyxerr.print(_("Using built-in default ")
+ LString(LYX_DIR) + _(" but expect problems.")); else
lyxerr.print(_("Expect problems."));
system_lyxdir = LYX_DIR;
path_shown = true;
}
// Report the system directory if debugging is on if (!path_shown)
lyxerr.debug("System directory: '" + system_lyxdir + '\'',
Error::INIT);
// load the lastfiles mini-database
lyxerr.debug("Reading lastfiles `" + lyxrc->lastfiles + "'...",
Error::INIT);
lastfiles = new LastFiles(lyxrc->lastfiles,
lyxrc->check_lastfiles,
lyxrc->num_lastfiles);
// start up the lyxserver. (is this a bit early?) (Lgb) // 0.12 this will be way to early, we need the GUI to be initialized // first, so move it for now. // lyxserver = new LyXServer;
}
// This one is not allowed to use anything on the main form, since that // one does not exist yet. (Asger) void LyX::queryUserLyXDir()
{ // Does user directory exist?
FileInfo fileInfo(user_lyxdir); if (fileInfo.isOK() && fileInfo.isDir()) { return;
}
// Nope if (!AskQuestion(_("You don't have a personal LyX directory."),
_("It is needed to keep your own configuration."),
_("Should I try to set it up for you (recommended)?"))) {
lyxerr.print(_("Running without personal LyX directory.")); // No, let's use $HOME instead.
user_lyxdir = getEnvPath("HOME"); return;
}
// Tell the user what is going on
lyxerr.print(_("LyX: Creating directory ") + user_lyxdir + _(" and running configure..."));
// Create directory structure if (!createDirectory(user_lyxdir, 0755)) { // Failed, let's use $HOME instead.
user_lyxdir = getEnvPath("HOME");
lyxerr.print(_("Failed. Will use ") + user_lyxdir + _(" instead.")); return;
}
// Run configure in user lyx directory
PathPush(user_lyxdir);
system(AddName(system_lyxdir,"configure").c_str());
PathPop();
lyxerr.print(LString("LyX: ") + _("Done!"));
}
// Read the rc file `name' void LyX::ReadRcFile(LString const & name)
{
lyxerr.debug("About to read "+name+"...", Error::INIT);
LString lyxrc_path = LibFileSearch(LString(), name); if (!lyxrc_path.empty()){
lyxerr.debug("Found "+name+" in " + lyxrc_path, Error::INIT); if (lyxrc->Read(lyxrc_path) < 0) {
WriteAlert(_("LyX Warning!"),
_("Error while reading ")+lyxrc_path+".",
_("Using built-in defaults."));
}
} else
lyxerr.debug("Could not find "+name, Error::INIT);
}
// Give command line help void commandLineHelp()
{
lyxerr.print(_("LyX " LYX_VERSION " of " LYX_RELEASE ".\n"));
lyxerr.print(_("Usage: lyx [ command line switches ] [ name.lyx ... ]\n"));
lyxerr.print(_("Command line switches (case sensitive):"));
lyxerr.print(_(" -help summarize LyX usage"));
lyxerr.print(_(" -sysdir x try to set system directory to x"));
lyxerr.print(_(" -width x set the width of the main window"));
lyxerr.print(_(" -height y set the height of the main window"));
lyxerr.print(_(" -xpos x set the x position of the main window"));
lyxerr.print(_(" -ypos y set the y position of the main window"));
lyxerr.print(_(" -dbg n where n is a sum of debugging options. Try -dbg 65535 -help"));
lyxerr.print(_(" -Reverse swaps foreground & background colors"));
lyxerr.print(_(" -Mono runs LyX in black and white mode"));
lyxerr.print(_(" -FastSelection use a fast routine for drawing selections\n"));
lyxerr.print(_("Check the LyX man page for more options."));
}
bool LyX::easyParse(int *argc, char *argv[])
{ bool gui = true; for(int i=1; i < *argc; i++) {
LString arg = argv[i]; // Check for -dbg int if (arg == "-dbg") { if (i+1 < *argc) { int erri = 0;
sscanf(argv[i+1],"%d", &erri);
setDebuggingLevel(erri);
// Now, remove these two arguments by shifting // the following two places down.
(*argc) -= 2; for (int j=i; j < (*argc); j++)
argv[j] = argv[j+2];
i--; // After shift, check this number again.
} else
lyxerr.print(_("Missing number for -dbg switch!"));
} // Check for "-sysdir" elseif (arg == "-sysdir") { if (i+1 < *argc) {
system_lyxdir = argv[i+1];
// Now, remove these two arguments by shifting // the following two places down.
(*argc) -= 2; for (int j=i; j < (*argc); j++)
argv[j] = argv[j+2];
i--; // After shift, check this number again.
} else
lyxerr.print(_("Missing directory for -sysdir switch!")); // Check for --help or -help
} elseif (arg == "--help" || arg == "-help") {
commandLineHelp(); exit(0);
} // Check for "-nw": No window elseif (arg == "-nw") {
gui = false;
}
} return gui;
}
void error_handler(int err_sig)
{ switch (err_sig) { case SIGHUP:
fprintf(stderr, "\nlyx: SIGHUP signal caught\n"); break; case SIGINT: // no comments break; case SIGFPE:
fprintf(stderr, "\nlyx: SIGFPE signal caught\n"); break; case SIGSEGV:
fprintf(stderr, "\nlyx: SIGSEGV signal caught\n");
fprintf(stderr, "Sorry, you have found a bug in LyX." " If possible, please read 'Known bugs'\n" "under the Help menu and then send us " "a full bug report. Thanks!\n"); break; case SIGTERM: // no comments break;
}
// Deinstall the signal handlers
signal(SIGHUP, SIG_DFL);
signal(SIGINT, SIG_DFL);
signal(SIGFPE, SIG_DFL);
signal(SIGSEGV, SIG_DFL);
signal(SIGTERM, SIG_DFL);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.