]> git.lyx.org Git - lyx.git/blob - src/lyx_main.C
some mods I had in my local tree, mostly small stuff, perhaps minus the the Makefile...
[lyx.git] / src / lyx_main.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #include <cstdlib>
14 #include <csignal>
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include "version.h"
21 #include "lyx_main.h"
22 #include "lyx_gui.h"
23 #include "LyXView.h"
24 #include "lyxfunc.h"
25 #include "lyx_gui_misc.h"
26 #include "lyxrc.h"
27 #include "support/path.h"
28 #include "support/filetools.h"
29 #include "buffer.h"
30 #include "bufferlist.h"
31 #include "debug.h"
32 #include "support/FileInfo.h"
33 #include "lastfiles.h"
34 #include "intl.h"
35 #include "lyxserver.h"
36 #include "layout.h"
37 #include "gettext.h"
38 #include "kbmap.h"
39 #include "MenuBackend.h"
40 #include "ToolbarDefaults.h"
41 #include "lyxlex.h"
42 #include "encoding.h"
43 #include "converter.h"
44 #include "language.h"
45 #include "support/os.h"
46
47 using std::endl;
48
49 #ifndef CXX_GLOBAL_CSTD
50 using std::signal;
51 #endif
52
53 extern void LoadLyXFile(string const &);
54 extern void QuitLyX();
55
56 string system_lyxdir;
57 string build_lyxdir;
58 string system_tempdir;
59 string user_lyxdir;     // Default $HOME/.lyx
60
61 // Should this be kept global? Asger says Yes.
62 DebugStream lyxerr;
63
64 LastFiles * lastfiles;
65
66 // This is the global bufferlist object
67 BufferList bufferlist;
68
69 LyXServer * lyxserver = 0;
70 // this should be static, but I need it in buffer.C
71 bool finished = false;  // flag, that we are quitting the program
72
73 // convenient to have it here.
74 boost::scoped_ptr<kb_keymap> toplevel_keymap;
75
76
77 LyX::LyX(int * argc, char * argv[])
78 {
79         // Prevent crash with --help
80         lyxGUI = 0;
81         lastfiles = 0;
82
83         // Here we need to parse the command line. At least
84         // we need to parse for "-dbg" and "-help"
85         bool gui = easyParse(argc, argv);
86
87         // Global bindings (this must be done as early as possible.) (Lgb)
88         toplevel_keymap.reset(new kb_keymap);
89         defaultKeyBindings(toplevel_keymap.get());
90         
91         // Make the GUI object, and let it take care of the
92         // command line arguments that concerns it.
93         lyxerr[Debug::INIT] << "Initializing LyXGUI..." << endl;
94         lyxGUI = new LyXGUI(this, argc, argv, gui);
95         lyxerr[Debug::INIT] << "Initializing LyXGUI...done" << endl;
96
97         // Now the GUI and LyX have taken care of their arguments, so
98         // the only thing left on the command line should be
99         // filenames. Let's check anyway.
100         for (int argi = 1; argi < *argc ; ++argi) {
101                 if (argv[argi][0] == '-') {
102                         lyxerr << _("Wrong command line option `")
103                                << argv[argi]
104                                << _("'. Exiting.") << endl;
105                         exit(0);
106                 }
107         }
108         
109         // Initialization of LyX (reads lyxrc and more)
110         lyxerr[Debug::INIT] << "Initializing LyX::init..." << endl;
111         init(gui);
112         lyxerr[Debug::INIT] << "Initializing LyX::init...done" << endl;
113
114         lyxGUI->init();
115
116         // Load the files specified in the command line.
117         if ((*argc) == 2) 
118                 lyxerr[Debug::INFO] << "Opening document..." << endl;
119         else if ((*argc) > 2)
120                 lyxerr[Debug::INFO] << "Opening documents..." << endl;
121
122         Buffer * last_loaded = 0;
123
124         for (int argi = (*argc) - 1; argi >= 1; --argi) {
125                 Buffer * loadb = bufferlist.loadLyXFile(argv[argi]);
126                 if (loadb != 0) {
127                         last_loaded = loadb;
128                 }
129         }
130
131         if (first_start) {
132                 string const splash =
133                         i18nLibFileSearch("examples", "splash.lyx");
134                 lyxerr[Debug::INIT] << "Opening splash document "
135                                << splash << "..." << endl;
136                 Buffer * loadb = bufferlist.loadLyXFile(splash);
137                 if (loadb != 0) {
138                         last_loaded = loadb;
139                 }
140         }
141
142         if (last_loaded != 0) {
143                 lyxerr[Debug::INIT] << "Yes we loaded some files." << endl;
144                 if (lyxrc.use_gui)
145                         lyxGUI->regBuf(last_loaded);
146         }
147
148         // Execute batch commands if available
149         if (!batch_command.empty()) {
150                 lyxerr << "About to handle -x '"
151                        << batch_command << "'" << endl;
152
153                 // no buffer loaded, create one
154                 if (!last_loaded)
155                         last_loaded = bufferlist.newFile("tmpfile", string());
156
157                 // try to dispatch to last loaded buffer first
158                 bool dispatched = last_loaded->dispatch(batch_command);
159
160                 // if this was successful, return. 
161                 // Maybe we could do something more clever than aborting...
162                 if (dispatched) {
163                         lyxerr << "We are done!" << endl;
164                         QuitLyX();
165                         return;
166                 }
167
168                 // otherwise, let the GUI handle the batch command
169                 lyxGUI->regBuf(last_loaded);
170                 lyxGUI->getLyXView()->getLyXFunc()->dispatch(batch_command);
171
172                 // fall through...
173         }
174         
175         // Let the ball begin...
176         lyxGUI->runTime();
177 }
178
179
180 // A destructor is always necessary  (asierra-970604)
181 LyX::~LyX()
182 {
183         delete lastfiles;
184         delete lyxGUI;
185 }
186
187
188 extern "C" {
189         
190 static
191 void error_handler(int err_sig)
192 {
193         switch (err_sig) {
194         case SIGHUP:
195                 lyxerr << "\nlyx: SIGHUP signal caught" << endl;
196                 break;
197         case SIGINT:
198                 // no comments
199                 break;
200         case SIGFPE:
201                 lyxerr << "\nlyx: SIGFPE signal caught" << endl;
202                 break;
203         case SIGSEGV:
204                 lyxerr << "\nlyx: SIGSEGV signal caught" << endl;
205                 lyxerr <<
206                         "Sorry, you have found a bug in LyX."
207                         " If possible, please read 'Known bugs'\n"
208                         "under the Help menu and then send us "
209                         "a full bug report. Thanks!" << endl;
210                 break;
211         case SIGTERM:
212                 // no comments
213                 break;
214         }
215    
216         // Deinstall the signal handlers
217         signal(SIGHUP, SIG_DFL);
218         signal(SIGINT, SIG_DFL);
219         signal(SIGFPE, SIG_DFL);
220         signal(SIGSEGV, SIG_DFL);
221         signal(SIGTERM, SIG_DFL);
222
223         bufferlist.emergencyWriteAll();
224
225         lyxerr << "Bye." << endl;
226         if (err_sig!= SIGHUP && 
227            (!GetEnv("LYXDEBUG").empty() || err_sig == SIGSEGV))
228                 lyx::abort();
229         exit(0);
230 }
231
232 }
233
234
235 void LyX::init(bool gui)
236 {
237         // Install the signal handlers
238         signal(SIGHUP, error_handler);
239         signal(SIGFPE, error_handler);
240         signal(SIGSEGV, error_handler);
241         signal(SIGINT, error_handler);
242         signal(SIGTERM, error_handler);
243
244         //
245         // Determine path of binary
246         //
247
248         string fullbinpath;
249         string binpath = os::binpath();
250         string binname = os::binname();
251         fullbinpath = binpath;
252
253         if (binpath.empty()) {
254                 lyxerr << _("Warning: could not determine path of binary.")
255                        << "\n"
256                        << _("If you have problems, try starting LyX with an absolute path.")
257                        << endl;
258         }
259         lyxerr[Debug::INIT] << "Path of binary: " << binpath << endl;
260
261         //
262         // Determine system directory.
263         //
264
265         // Directories are searched in this order:
266         // 1) -sysdir command line parameter
267         // 2) LYX_DIR_11x environment variable
268         // 3) Maybe <path of binary>/TOP_SRCDIR/lib
269         // 4) <path of binary>/../share/<name of binary>/
270         // 4a) repeat 4 after following the Symlink if <path of
271         //     binary> is a symbolic link.
272         // 5) hardcoded lyx_dir
273         // The directory is checked for the presence of the file
274         // "chkconfig.ltx", and if that is present, the directory
275         // is accepted as the system directory.
276         // If no chkconfig.ltx file is found, a warning is given,
277         // and the hardcoded lyx_dir is used.
278
279         // If we had a command line switch, system_lyxdir is already set
280         string searchpath;
281         if (!system_lyxdir.empty())
282                 searchpath= MakeAbsPath(system_lyxdir) + ';';
283
284         // LYX_DIR_11x environment variable
285         string const lyxdir = GetEnvPath("LYX_DIR_11x");
286         
287         if (!lyxdir.empty()) {
288                 lyxerr[Debug::INIT] << "LYX_DIR_11x: " << lyxdir << endl;
289                 searchpath += lyxdir + ';';
290         }
291
292         // <path of binary>/TOP_SRCDIR/lib
293         build_lyxdir = MakeAbsPath("../lib", binpath);
294         if (!FileSearch(build_lyxdir, "lyxrc.defaults").empty()) {
295                 searchpath += MakeAbsPath(AddPath(TOP_SRCDIR, "lib"),
296                                           binpath) + ';';
297                 lyxerr[Debug::INIT] << "Checking whether LyX is run in "
298                         "place... yes" << endl;
299         } else {
300                 lyxerr[Debug::INIT]
301                         << "Checking whether LyX is run in place... no"
302                         << endl;
303                 build_lyxdir.erase();
304         }
305
306         bool followlink;
307         do {
308           // Path of binary/../share/name of binary/
309                 searchpath += NormalizePath(AddPath(binpath, "../share/") + 
310                       OnlyFilename(binname)) + ';';
311
312           // Follow Symlinks
313                 FileInfo file(fullbinpath, true);
314                 followlink = file.isLink();
315                 if (followlink) {
316                         string link;
317                         if (LyXReadLink(fullbinpath, link)) {
318                                 fullbinpath = link;
319                                 binpath = MakeAbsPath(OnlyPath(fullbinpath));
320                         }
321                         else {
322                                 followlink = false;
323                         }
324                 }
325         } while (followlink);
326
327         // Hardcoded dir
328         searchpath += LYX_DIR;
329
330         // If debugging, show complete search path
331         lyxerr[Debug::INIT] << "System directory search path: "
332                             << searchpath << endl;
333
334         string const filename = "chkconfig.ltx";
335         string const temp = FileOpenSearch(searchpath, filename, string());
336         system_lyxdir = OnlyPath(temp);
337
338         // Reduce "path/../path" stuff out of system directory
339         system_lyxdir = NormalizePath(system_lyxdir);
340
341         bool path_shown = false;
342
343         // Warn if environment variable is set, but unusable
344         if (!lyxdir.empty()) {
345                 if (system_lyxdir != NormalizePath(lyxdir)) {
346                         lyxerr <<_("LYX_DIR_11x environment variable no good.")
347                                << '\n'
348                                << _("System directory set to: ") 
349                                << system_lyxdir << endl;
350                         path_shown = true;
351                 }
352         }
353
354         // Warn the user if we couldn't find "chkconfig.ltx"
355         if (system_lyxdir == "./") {
356                 lyxerr <<_("LyX Warning! Couldn't determine system directory. ")
357                        <<_("Try the '-sysdir' command line parameter or ")
358                        <<_("set the environment variable LYX_DIR_11x to the "
359                            "LyX system directory ")
360                        << _("containing the file `chkconfig.ltx'.") << endl;
361                 if (!path_shown) {
362                         FileInfo fi(LYX_DIR);
363                         if (!fi.exist()) {
364                                 lyxerr << "Couldn't even find the default LYX_DIR." << endl
365                                         << "Giving up." << endl;
366                                 exit(1);
367                         }
368                         lyxerr << _("Using built-in default ") 
369                                << LYX_DIR << _(" but expect problems.")
370                                << endl;
371                 } else {
372                         lyxerr << _("Expect problems.") << endl;
373                 }
374                 system_lyxdir = LYX_DIR;
375                 path_shown = true;
376         }
377
378         // Report the system directory if debugging is on
379         if (!path_shown)
380                 lyxerr[Debug::INIT] << "System directory: '"
381                                     << system_lyxdir << '\'' << endl; 
382
383         //
384         // Determine user lyx-dir
385         //
386         
387         // Directories are searched in this order:
388         // 1) -userdir command line parameter
389         // 2) LYX_USERDIR_11x environment variable
390         // 3) $HOME/.<name of binary>
391
392         // If we had a command line switch, user_lyxdir is already set
393         bool explicit_userdir = true;
394         if (user_lyxdir.empty()) {
395
396                 // LYX_USERDIR_11x environment variable
397                 user_lyxdir = GetEnvPath("LYX_USERDIR_11x");
398
399                 // default behaviour
400                 if (user_lyxdir.empty())
401                         user_lyxdir = AddPath(GetEnvPath("HOME"),
402                                                         string(".") + PACKAGE);
403                         explicit_userdir = false;
404         }
405
406         lyxerr[Debug::INIT] << "User LyX directory: '" 
407                             <<  user_lyxdir << '\'' << endl;
408
409         // Check that user LyX directory is ok. We don't do that if
410         // running in batch mode.
411         if (gui) {
412                 queryUserLyXDir(explicit_userdir);
413         } else {
414                 first_start = false;
415         }
416         
417         //
418         // Shine up lyxrc defaults
419         //
420
421         // Default template path: system_dir/templates
422         if (lyxrc.template_path.empty()){
423                 lyxrc.template_path = AddPath(system_lyxdir, "templates");
424         }
425    
426         // Default lastfiles file: $HOME/.lyx/lastfiles
427         if (lyxrc.lastfiles.empty()){
428                 lyxrc.lastfiles = AddName(user_lyxdir, "lastfiles");
429         }
430
431         // Disable gui when either lyxrc or easyparse says so
432         if (!gui)
433                 lyxrc.use_gui = false;
434  
435         // Calculate screen dpi as average of x-DPI and y-DPI:
436         if (lyxrc.use_gui) {
437                 lyxrc.dpi = getScreenDPI();
438                 lyxerr[Debug::INIT] << "DPI setting detected to be "
439                                                 << lyxrc.dpi + 0.5 << endl;
440         } else {
441                 lyxrc.dpi = 1; // I hope this is safe
442         }
443
444         //
445         // Read configuration files
446         //
447
448         readRcFile("lyxrc.defaults");
449         system_lyxrc = lyxrc;
450         system_formats = formats;
451         system_converters = converters;
452         system_lcolor = lcolor;
453
454         // If there is a preferences file we read that instead
455         // of the old lyxrc file.
456         if (!readRcFile("preferences"))
457             readRcFile("lyxrc");
458
459         // Read encodings
460         readEncodingsFile("encodings");
461         // Read languages
462         readLanguagesFile("languages");
463
464         // Load the layouts
465         lyxerr[Debug::INIT] << "Reading layouts..." << endl;
466         LyXSetStyle();
467
468         // Ensure that we have really read a bind file, so that LyX is
469         // usable.
470         lyxrc.readBindFileIfNeeded();
471
472         // Read menus
473         readUIFile(lyxrc.ui_file);
474
475         // Bind the X dead keys to the corresponding LyX functions if
476         // necessary. 
477         if (lyxrc.override_x_deadkeys)
478                 deadKeyBindings(toplevel_keymap.get());
479
480         if (lyxerr.debugging(Debug::LYXRC)) {
481                 lyxrc.print();
482         }
483
484         // Create temp directory        
485         os::setTmpDir(CreateLyXTmpDir(lyxrc.tempdir_path));
486         system_tempdir = os::getTmpDir();
487         if (lyxerr.debugging(Debug::INIT)) {
488                 lyxerr << "LyX tmp dir: `" << system_tempdir << '\'' << endl;
489         }
490
491         // load the lastfiles mini-database
492         lyxerr[Debug::INIT] << "Reading lastfiles `"
493                             << lyxrc.lastfiles << "'..." << endl; 
494         lastfiles = new LastFiles(lyxrc.lastfiles, 
495                                   lyxrc.check_lastfiles,
496                                   lyxrc.num_lastfiles);
497
498         // start up the lyxserver. (is this a bit early?) (Lgb)
499         // 0.12 this will be way to early, we need the GUI to be initialized
500         // first, so move it for now.
501         // lyxserver = new LyXServer;
502 }
503
504
505 // These are the default bindings known to LyX
506 void LyX::defaultKeyBindings(kb_keymap  * kbmap)
507 {
508         kbmap->bind("Right", LFUN_RIGHT);
509         kbmap->bind("Left", LFUN_LEFT);
510         kbmap->bind("Up", LFUN_UP);
511         kbmap->bind("Down", LFUN_DOWN);
512         
513         kbmap->bind("Tab", LFUN_TAB);
514         kbmap->bind("ISO_Left_Tab", LFUN_TAB); // jbl 2001-23-02
515         
516         kbmap->bind("Home", LFUN_HOME);
517         kbmap->bind("End", LFUN_END);
518         kbmap->bind("Prior", LFUN_PRIOR);
519         kbmap->bind("Next", LFUN_NEXT);
520         
521         kbmap->bind("Return", LFUN_BREAKPARAGRAPH);
522         //kbmap->bind("~C-~S-~M-nobreakspace", LFUN_PROTECTEDSPACE);
523         
524         kbmap->bind("Delete", LFUN_DELETE);
525         kbmap->bind("BackSpace", LFUN_BACKSPACE);
526         
527         // kbmap->bindings to enable the use of the numeric keypad
528         // e.g. Num Lock set
529         //kbmap->bind("KP_0", LFUN_SELFINSERT);
530         //kbmap->bind("KP_Decimal", LFUN_SELFINSERT);
531         kbmap->bind("KP_Enter", LFUN_BREAKPARAGRAPH);
532         //kbmap->bind("KP_1", LFUN_SELFINSERT);
533         //kbmap->bind("KP_2", LFUN_SELFINSERT);
534         //kbmap->bind("KP_3", LFUN_SELFINSERT);
535         //kbmap->bind("KP_4", LFUN_SELFINSERT);
536         //kbmap->bind("KP_5", LFUN_SELFINSERT);
537         //kbmap->bind("KP_6", LFUN_SELFINSERT);
538         //kbmap->bind("KP_Add", LFUN_SELFINSERT);
539         //kbmap->bind("KP_7", LFUN_SELFINSERT);
540         //kbmap->bind("KP_8", LFUN_SELFINSERT);
541         //kbmap->bind("KP_9", LFUN_SELFINSERT);
542         //kbmap->bind("KP_Divide", LFUN_SELFINSERT);
543         //kbmap->bind("KP_Multiply", LFUN_SELFINSERT);
544         //kbmap->bind("KP_Subtract", LFUN_SELFINSERT);
545         kbmap->bind("KP_Right", LFUN_RIGHT);
546         kbmap->bind("KP_Left", LFUN_LEFT);
547         kbmap->bind("KP_Up", LFUN_UP);
548         kbmap->bind("KP_Down", LFUN_DOWN);
549         kbmap->bind("KP_Home", LFUN_HOME);
550         kbmap->bind("KP_End", LFUN_END);
551         kbmap->bind("KP_Prior", LFUN_PRIOR);
552         kbmap->bind("KP_Next", LFUN_NEXT);
553         
554         kbmap->bind("C-Tab", LFUN_TABINSERT);  // ale970515
555         kbmap->bind("S-Tab", LFUN_SHIFT_TAB);  // jug20000522
556         kbmap->bind("S-ISO_Left_Tab", LFUN_SHIFT_TAB); // jbl 2001-23-02
557 }
558
559
560 // LyX can optionally take over the handling of deadkeys
561 void LyX::deadKeyBindings(kb_keymap * kbmap)
562 {
563         // bindKeyings for transparent handling of deadkeys
564         // The keysyms are gotten from XFree86 X11R6
565         kbmap->bind("~C-~S-~M-dead_acute", LFUN_ACUTE);
566         kbmap->bind("~C-~S-~M-dead_breve", LFUN_BREVE);
567         kbmap->bind("~C-~S-~M-dead_caron", LFUN_CARON);
568         kbmap->bind("~C-~S-~M-dead_cedilla", LFUN_CEDILLA);
569         kbmap->bind("~C-~S-~M-dead_abovering", LFUN_CIRCLE);
570         kbmap->bind("~C-~S-~M-dead_circumflex", LFUN_CIRCUMFLEX);
571         kbmap->bind("~C-~S-~M-dead_abovedot", LFUN_DOT);
572         kbmap->bind("~C-~S-~M-dead_grave", LFUN_GRAVE);
573         kbmap->bind("~C-~S-~M-dead_doubleacute", LFUN_HUNG_UMLAUT);
574         kbmap->bind("~C-~S-~M-dead_macron", LFUN_MACRON);
575         // nothing with this name
576         // kbmap->bind("~C-~S-~M-dead_special_caron", LFUN_SPECIAL_CARON);
577         kbmap->bind("~C-~S-~M-dead_tilde", LFUN_TILDE);
578         kbmap->bind("~C-~S-~M-dead_diaeresis", LFUN_UMLAUT);
579         // nothing with this name either...
580         //kbmap->bind("~C-~S-~M-dead_underbar", LFUN_UNDERBAR);
581         kbmap->bind("~C-~S-~M-dead_belowdot", LFUN_UNDERDOT);
582         kbmap->bind("~C-~S-~M-dead_tie", LFUN_TIE);
583         kbmap->bind("~C-~S-~M-dead_ogonek", LFUN_OGONEK);
584 }
585
586
587 // This one is not allowed to use anything on the main form, since that
588 // one does not exist yet. (Asger)
589 void LyX::queryUserLyXDir(bool explicit_userdir)
590 {
591         // Does user directory exist?
592         FileInfo fileInfo(user_lyxdir);
593         if (fileInfo.isOK() && fileInfo.isDir()) {
594                 first_start = false;
595                 return;
596         } else {
597                 first_start = !explicit_userdir;
598         }
599         
600         // If the user specified explicitely a directory, ask whether
601         // to create it (otherwise, always create it)
602         if (explicit_userdir &&
603             !AskQuestion(_("You have specified an invalid LyX directory."),
604                          _("It is needed to keep your own configuration."),
605                          _("Should I try to set it up for you (recommended)?"))) {
606                 lyxerr << _("Running without personal LyX directory.") << endl;
607                 // No, let's use $HOME instead.
608                 user_lyxdir = GetEnvPath("HOME");
609                 return;
610         }
611
612         // Tell the user what is going on
613         lyxerr << _("LyX: Creating directory ") << user_lyxdir
614                << _(" and running configure...") << endl;
615
616         // Create directory structure
617         if (!createDirectory(user_lyxdir, 0755)) {
618                 // Failed, let's use $HOME instead.
619                 user_lyxdir = GetEnvPath("HOME");
620                 lyxerr << _("Failed. Will use ") << user_lyxdir
621                        << _(" instead.") << endl;
622                 return;
623         }
624
625         // Run configure in user lyx directory
626         Path p(user_lyxdir);
627         ::system(AddName(system_lyxdir, "configure").c_str());
628         lyxerr << "LyX: " << _("Done!") << endl;
629 }
630
631
632 // Read the rc file `name'
633 bool LyX::readRcFile(string const & name)
634 {
635         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
636         
637         string const lyxrc_path = LibFileSearch(string(), name);
638         if (!lyxrc_path.empty()){
639                 lyxerr[Debug::INIT] << "Found " << name
640                                     << " in " << lyxrc_path << endl;
641                 if (lyxrc.read(lyxrc_path) < 0) { 
642                         WriteAlert(_("LyX Warning!"), 
643                                    _("Error while reading ") + lyxrc_path + ".",
644                                    _("Using built-in defaults."));
645                         return false;
646                 }
647                 return true;
648         } else {
649                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
650         }
651         
652         return false;
653 }
654
655
656 // Read the ui file `name'
657 void LyX::readUIFile(string const & name)
658 {
659         enum Uitags {
660                 ui_menuset = 1,
661                 ui_toolbar,
662                 ui_last
663         };
664
665         struct keyword_item uitags[ui_last-1] = {
666                 { "menuset", ui_menuset },
667                 { "toolbar", ui_toolbar }
668         };
669
670         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
671         
672         string const ui_path = LibFileSearch("ui", name, "ui");
673
674         if (ui_path.empty()) {
675                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
676                 menubackend.defaults();
677                 return;
678         }
679         
680         lyxerr[Debug::INIT] << "Found " << name
681                             << " in " << ui_path << endl;
682         LyXLex lex(uitags, ui_last - 1);
683         lex.setFile(ui_path);
684         if (!lex.isOK()) {
685                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
686                        << endl;
687         }
688         
689         if (lyxerr.debugging(Debug::PARSER))
690                 lex.printTable(lyxerr);
691
692         while (lex.isOK()) {
693                 switch (lex.lex()) {
694                 case ui_menuset: 
695                         menubackend.read(lex);
696                         break;
697
698                 case ui_toolbar:
699                         toolbardefaults.read(lex);
700                         break;
701
702                 default:
703                         if(!strip(lex.getString()).empty())
704                                 lex.printError("LyX::ReadUIFile: "
705                                                "Unknown menu tag: `$$Token'");
706                         break;
707                 }
708         }
709 }
710
711
712 // Read the languages file `name'
713 void LyX::readLanguagesFile(string const & name)
714 {
715         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
716
717         string const lang_path = LibFileSearch(string(), name);
718         if (lang_path.empty()) {
719                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
720                 languages.setDefaults();
721                 return;
722         }
723         languages.read(lang_path);
724 }
725
726
727 // Read the encodings file `name'
728 void LyX::readEncodingsFile(string const & name)
729 {
730         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
731
732         string const enc_path = LibFileSearch(string(), name);
733         if (enc_path.empty()) {
734                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
735                 return;
736         }
737         encodings.read(enc_path);
738 }
739
740
741 namespace {
742
743 // Set debugging level and report result to user
744 void setDebuggingLevel(string const & dbgLevel)
745 {
746         lyxerr << _("Setting debug level to ") <<  dbgLevel << endl;
747         lyxerr.level(Debug::value(dbgLevel));
748         Debug::showLevel(lyxerr, lyxerr.level());
749 }
750
751
752 // Give command line help
753 void commandLineHelp()
754 {
755         lyxerr << "LyX " LYX_VERSION << " of " LYX_RELEASE << endl;
756         lyxerr <<
757                 _("Usage: lyx [ command line switches ] [ name.lyx ... ]\n"
758                   "Command line switches (case sensitive):\n"
759                   "\t-help              summarize LyX usage\n"
760                   "\t-userdir dir       try to set user directory to dir\n"
761                   "\t-sysdir dir        try to set system directory to dir\n"
762                   "\t-geometry WxH+X+Y  set geometry of the main window\n"
763                   "\t-dbg feature[,feature]...\n"
764                   "                  select the features to debug.\n"
765                   "                  Type `lyx -dbg' to see the list of features\n"
766                   "\t-x [--execute] command\n"
767                   "                  where command is a lyx command.\n"
768                   "\t-e [--export] fmt\n"
769                   "                  where fmt is the export format of choice.\n"
770                   "\t-i [--import] fmt file.xxx\n"
771                   "                  where fmt is the import format of choice\n"
772                   "                  and file.xxx is the file to be imported.\n"
773                   "Check the LyX man page for more details.") << endl;
774 }
775
776 } // namespace anon
777
778
779 bool LyX::easyParse(int * argc, char * argv[])
780 {
781         bool gui = true;
782         int removeargs = 0; // used when options are read
783         for (int i = 1; i < *argc; ++i) {
784                 string arg = argv[i];
785
786                 // Check for -dbg int
787                 if (arg == "-dbg") {
788                         if (i + 1 < *argc) {
789                                 setDebuggingLevel(argv[i + 1]);
790                                 removeargs = 2;
791                         } else {
792                                 lyxerr << _("List of supported debug flags:")
793                                        << endl;
794                                 Debug::showTags(lyxerr);
795                                 exit(0);
796                         }
797                 } 
798                 // Check for "-sysdir"
799                 else if (arg == "-sysdir") {
800                         if (i + 1 < *argc) {
801                                 system_lyxdir = argv[i + 1];
802                                 removeargs = 2;
803                         } else {
804                                 lyxerr << _("Missing directory for -sysdir switch!") 
805                                        << endl;
806                                 exit(0);
807                         }
808                 }
809                 // Check for "-userdir"
810                 else if (arg == "-userdir") {
811                         if (i + 1 < *argc) {
812                                 user_lyxdir = argv[i + 1];
813                                 removeargs = 2;
814                         } else {
815                                 lyxerr << _("Missing directory for -userdir switch!")
816                                        << endl;
817                                 exit(0);
818                         }
819                 }
820                 // Check for --help or -help
821                 else if (arg == "--help" || arg == "-help") {
822                         commandLineHelp();
823                         exit(0);
824                 } 
825                 // Check for "-nw": No XWindows as for emacs this should
826                 // give a LyX that could be used in a terminal window.
827                 //else if (arg == "-nw") {
828                 //      gui = false;
829                 //}
830
831                 // Check for "-x": Execute commands
832                 else if (arg == "-x" || arg == "--execute") {
833                         if (i + 1 < *argc) {
834                                 batch_command = string(argv[i + 1]);
835                                 removeargs = 2;
836                         }
837                         else
838                                 lyxerr << _("Missing command string after  -x switch!") << endl;
839
840                         // Argh. Setting gui to false segfaults..
841                         //gui = false;
842                 }
843
844                 else if (arg == "-e" || arg == "--export") {
845                         if (i + 1 < *argc) {
846                                 string type(argv[i+1]);
847                                 removeargs = 2;
848                                 batch_command = "buffer-export " + type;
849                                 gui = false;
850                         } else
851                                 lyxerr << _("Missing file type [eg latex, "
852                                             "ps...] after ")
853                                        << arg << _(" switch!") << endl;
854                 }
855                 else if (arg == "-i" || arg == "--import") {
856                         if (i + 1 < *argc) {
857                                 string type(argv[i+1]);
858                                 string file(argv[i+2]);
859                                 removeargs = 3;
860         
861                                 batch_command = "buffer-import " + type + " " + file;
862                                 lyxerr << "batch_command: "
863                                        << batch_command << endl;
864
865                         } else
866                                 lyxerr << _("Missing type [eg latex, "
867                                             "ps...] after ")
868                                        << arg << _(" switch!") << endl;
869                 }
870
871                 if (removeargs > 0) {
872                         // Now, remove used arguments by shifting
873                         // the following ones removeargs places down.
874                         (*argc) -= removeargs;
875                         for (int j = i; j < (*argc); ++j)
876                                 argv[j] = argv[j + removeargs];
877                         --i; // After shift, check this number again.
878                         removeargs = 0;
879                 }
880
881         }
882
883         return gui;
884 }
885
886