]> git.lyx.org Git - lyx.git/blob - src/lyx_main.C
Fix support lib dependency problem.
[lyx.git] / src / lyx_main.C
1 /**
2  * \file lyx_main.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author André Pönitz
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16 #include <version.h>
17
18 #include "lyx_main.h"
19
20 #include "ConverterCache.h"
21 #include "buffer.h"
22 #include "buffer_funcs.h"
23 #include "bufferlist.h"
24 #include "converter.h"
25 #include "debug.h"
26 #include "encoding.h"
27 #include "errorlist.h"
28 #include "format.h"
29 #include "gettext.h"
30 #include "kbmap.h"
31 #include "language.h"
32 #include "session.h"
33 #include "LColor.h"
34 #include "lyx_cb.h"
35 #include "LyXAction.h"
36 #include "lyxfunc.h"
37 #include "lyxlex.h"
38 #include "lyxrc.h"
39 #include "lyxserver.h"
40 #include "lyxsocket.h"
41 #include "lyxtextclasslist.h"
42 #include "MenuBackend.h"
43 #include "messages.h"
44 #include "mover.h"
45 #include "ToolbarBackend.h"
46
47 #include "frontends/Alert.h"
48 #include "frontends/Application.h"
49 #include "frontends/Gui.h"
50 #include "frontends/LyXView.h"
51
52 #include "support/environment.h"
53 #include "support/filetools.h"
54 #include "support/lyxlib.h"
55 #include "support/convert.h"
56 #include "support/ExceptionMessage.h"
57 #include "support/os.h"
58 #include "support/package.h"
59 #include "support/path.h"
60 #include "support/systemcall.h"
61
62 #include <boost/bind.hpp>
63 #include <boost/filesystem/operations.hpp>
64
65 #include <iostream>
66 #include <csignal>
67 #include <map>
68 #include <string>
69 #include <vector>
70
71
72 namespace lyx {
73
74 using support::addName;
75 using support::addPath;
76 using support::bformat;
77 using support::changeExtension;
78 using support::createDirectory;
79 using support::createLyXTmpDir;
80 using support::destroyDir;
81 using support::FileName;
82 using support::fileSearch;
83 using support::getEnv;
84 using support::i18nLibFileSearch;
85 using support::libFileSearch;
86 using support::package;
87 using support::prependEnvPath;
88 using support::rtrim;
89 using support::Systemcall;
90
91 namespace Alert = frontend::Alert;
92 namespace os = support::os;
93 namespace fs = boost::filesystem;
94
95 using std::endl;
96 using std::for_each;
97 using std::map;
98 using std::make_pair;
99 using std::string;
100 using std::vector;
101
102 #ifndef CXX_GLOBAL_CSTD
103 using std::exit;
104 using std::signal;
105 using std::system;
106 #endif
107
108
109 /// are we using the GUI at all?
110 /** 
111 * We default to true and this is changed to false when the export feature is used.
112 */
113 bool use_gui = true;
114
115
116 namespace {
117
118 // Filled with the command line arguments "foo" of "-sysdir foo" or
119 // "-userdir foo".
120 string cl_system_support;
121 string cl_user_support;
122
123 std::string geometryArg;
124
125 LyX * singleton_ = 0;
126
127 void showFileError(string const & error)
128 {
129         Alert::warning(_("Could not read configuration file"),
130                        bformat(_("Error while reading the configuration file\n%1$s.\n"
131                            "Please check your installation."), from_utf8(error)));
132 }
133
134
135 void reconfigureUserLyXDir()
136 {
137         string const configure_command = package().configure_command();
138
139         lyxerr << to_utf8(_("LyX: reconfiguring user directory")) << endl;
140         support::Path p(package().user_support());
141         Systemcall one;
142         one.startscript(Systemcall::Wait, configure_command);
143         lyxerr << "LyX: " << to_utf8(_("Done!")) << endl;
144 }
145
146 } // namespace anon
147
148
149 /// The main application class private implementation.
150 struct LyX::Singletons 
151 {
152         Singletons()
153         {
154                 // Set the default User Interface language as soon as possible.
155                 // The language used will be derived from the environment
156                 // variables.
157                 messages_["GUI"] = Messages();
158         }
159         /// our function handler
160         LyXFunc lyxfunc_;
161         ///
162         BufferList buffer_list_;
163         ///
164         boost::scoped_ptr<kb_keymap> toplevel_keymap_;
165         ///
166         boost::scoped_ptr<LyXServer> lyx_server_;
167         ///
168         boost::scoped_ptr<LyXServerSocket> lyx_socket_;
169         ///
170         boost::scoped_ptr<frontend::Application> application_;
171         /// lyx session, containing lastfiles, lastfilepos, and lastopened
172         boost::scoped_ptr<Session> session_;
173
174         /// Files to load at start.
175         vector<FileName> files_to_load_;
176
177         /// The messages translators.
178         map<string, Messages> messages_;
179
180         /// The file converters.
181         Converters converters_;
182
183         // The system converters copy after reading lyxrc.defaults.
184         Converters system_converters_;
185         
186         ///
187         Movers movers_;
188         
189         ///
190         Movers system_movers_;
191 };
192
193 ///
194 frontend::Application * theApp()
195 {
196         if (singleton_)
197                 return singleton_->pimpl_->application_.get();
198         else
199                 return 0;
200 }
201
202
203 LyX::~LyX()
204 {
205 }
206
207
208 LyX & LyX::ref()
209 {
210         BOOST_ASSERT(singleton_);
211         return *singleton_;
212 }
213
214
215 LyX const & LyX::cref()
216 {
217         BOOST_ASSERT(singleton_);
218         return *singleton_;
219 }
220
221
222 LyX::LyX()
223         : first_start(false)
224 {
225         singleton_ = this;
226         pimpl_.reset(new Singletons);
227         geometryArg.clear();
228 }
229
230
231 BufferList & LyX::bufferList()
232 {
233         return pimpl_->buffer_list_;
234 }
235
236
237 BufferList const & LyX::bufferList() const
238 {
239         return pimpl_->buffer_list_;
240 }
241
242
243 Session & LyX::session()
244 {
245         BOOST_ASSERT(pimpl_->session_.get());
246         return *pimpl_->session_.get();
247 }
248
249
250 Session const & LyX::session() const
251 {
252         BOOST_ASSERT(pimpl_->session_.get());
253         return *pimpl_->session_.get();
254 }
255
256
257 LyXFunc & LyX::lyxFunc()
258 {
259         return pimpl_->lyxfunc_;
260 }
261
262
263 LyXFunc const & LyX::lyxFunc() const
264 {
265         return pimpl_->lyxfunc_;
266 }
267
268
269 LyXServer & LyX::server()
270 {
271         BOOST_ASSERT(pimpl_->lyx_server_.get());
272         return *pimpl_->lyx_server_.get(); 
273 }
274
275
276 LyXServer const & LyX::server() const 
277 {
278         BOOST_ASSERT(pimpl_->lyx_server_.get());
279         return *pimpl_->lyx_server_.get(); 
280 }
281
282
283 LyXServerSocket & LyX::socket()
284 {
285         BOOST_ASSERT(pimpl_->lyx_socket_.get());
286         return *pimpl_->lyx_socket_.get();
287 }
288
289
290 LyXServerSocket const & LyX::socket() const
291 {
292         BOOST_ASSERT(pimpl_->lyx_socket_.get());
293         return *pimpl_->lyx_socket_.get();
294 }
295
296
297 frontend::Application & LyX::application()
298 {
299         BOOST_ASSERT(pimpl_->application_.get());
300         return *pimpl_->application_.get();
301 }
302
303
304 frontend::Application const & LyX::application() const
305 {
306         BOOST_ASSERT(pimpl_->application_.get());
307         return *pimpl_->application_.get();
308 }
309
310
311 kb_keymap & LyX::topLevelKeymap()
312 {
313         BOOST_ASSERT(pimpl_->toplevel_keymap_.get());
314         return *pimpl_->toplevel_keymap_.get();
315 }
316
317
318 Converters & LyX::converters()
319 {
320         return pimpl_->converters_;
321 }
322
323
324 Converters & LyX::systemConverters()
325 {
326         return pimpl_->system_converters_;
327 }
328
329
330 kb_keymap const & LyX::topLevelKeymap() const
331 {
332         BOOST_ASSERT(pimpl_->toplevel_keymap_.get());
333         return *pimpl_->toplevel_keymap_.get();
334 }
335
336
337 Messages & LyX::getMessages(std::string const & language)
338 {
339         map<string, Messages>::iterator it = pimpl_->messages_.find(language);
340
341         if (it != pimpl_->messages_.end())
342                 return it->second;
343
344         std::pair<map<string, Messages>::iterator, bool> result = 
345                         pimpl_->messages_.insert(std::make_pair(language, Messages(language)));
346
347         BOOST_ASSERT(result.second);
348         return result.first->second;
349 }
350
351
352 Messages & LyX::getGuiMessages()
353 {
354         return pimpl_->messages_["GUI"];
355 }
356
357
358 void LyX::setGuiLanguage(std::string const & language)
359 {
360         pimpl_->messages_["GUI"] = Messages(language);
361 }
362
363
364 Buffer const * const LyX::updateInset(InsetBase const * inset) const
365 {
366         if (!inset)
367                 return 0;
368
369         Buffer const * buffer_ptr = 0;
370         vector<int> const & view_ids = pimpl_->application_->gui().viewIds();
371         vector<int>::const_iterator it = view_ids.begin();
372         vector<int>::const_iterator const end = view_ids.end();
373         for (; it != end; ++it) {
374                 Buffer const * ptr =
375                         pimpl_->application_->gui().view(*it).updateInset(inset);
376                 if (ptr)
377                         buffer_ptr = ptr;
378         }
379         return buffer_ptr;
380 }
381
382
383 int LyX::exec(int & argc, char * argv[])
384 {
385         // Here we need to parse the command line. At least
386         // we need to parse for "-dbg" and "-help"
387         easyParse(argc, argv);
388
389         try { support::init_package(to_utf8(from_local8bit(argv[0])),
390                               cl_system_support, cl_user_support,
391                               support::top_build_dir_is_one_level_up);
392         } catch (support::ExceptionMessage const & message) {
393                 if (message.type_ == support::ErrorException) {
394                         Alert::error(message.title_, message.details_);
395                         exit(1);
396                 } else if (message.type_ == support::WarningException) {
397                         Alert::warning(message.title_, message.details_);
398                 }
399         }
400
401         if (!use_gui) {
402                 // FIXME: create a ConsoleApplication
403                 int exit_status = init(argc, argv);
404                 if (exit_status) {
405                         prepareExit();
406                         return exit_status;
407                 }
408
409                 loadFiles();
410
411                 if (batch_command.empty() || pimpl_->buffer_list_.empty()) {
412                         prepareExit();
413                         return EXIT_SUCCESS;
414                 }
415
416                 BufferList::iterator begin = pimpl_->buffer_list_.begin();
417                 BufferList::iterator end = pimpl_->buffer_list_.end();
418
419                 bool final_success = false;
420                 for (BufferList::iterator I = begin; I != end; ++I) {
421                         Buffer * buf = *I;
422                         bool success = false;
423                         buf->dispatch(batch_command, &success);
424                         final_success |= success;                       
425                 }
426                 prepareExit();
427                 return !final_success;
428         }
429
430         // Force adding of font path _before_ Application is initialized
431         support::os::addFontResources();
432
433         // Let the frontend parse and remove all arguments that it knows
434         pimpl_->application_.reset(createApplication(argc, argv));
435
436         initGuiFont();
437
438         // Parse and remove all known arguments in the LyX singleton
439         // Give an error for all remaining ones.
440         int exit_status = init(argc, argv);
441         if (exit_status) {
442                 // Kill the application object before exiting.
443                 pimpl_->application_.reset();
444                 use_gui = false;
445                 prepareExit();
446                 return exit_status;
447         }
448
449         // FIXME
450         /* Create a CoreApplication class that will provide the main event loop
451         * and the socket callback registering. With Qt4, only QtCore
452         * library would be needed.
453         * When this is done, a server_mode could be created and the following two
454         * line would be moved out from here.
455         */
456         // Note: socket callback must be registered after init(argc, argv)
457         // such that package().temp_dir() is properly initialized.
458         pimpl_->lyx_server_.reset(new LyXServer(&pimpl_->lyxfunc_, lyxrc.lyxpipes));
459         pimpl_->lyx_socket_.reset(new LyXServerSocket(&pimpl_->lyxfunc_, 
460                 os::internal_path(package().temp_dir() + "/lyxsocket")));
461
462         // Start the real execution loop.
463         exit_status = pimpl_->application_->exec();
464         
465         prepareExit();
466
467         // Restore original font resources after Application is destroyed.
468         support::os::restoreFontResources();
469
470         return exit_status;
471 }
472
473
474 void LyX::prepareExit()
475 {
476         // Set a flag that we do quitting from the program,
477         // so no refreshes are necessary.
478         quitting = true;
479
480         // close buffers first
481         pimpl_->buffer_list_.closeAll();
482
483         // do any other cleanup procedures now
484         if (package().temp_dir() != package().system_temp_dir()) {
485                 lyxerr[Debug::INFO] << "Deleting tmp dir "
486                                     << package().temp_dir() << endl;
487
488                 if (!destroyDir(FileName(package().temp_dir()))) {
489                         docstring const msg =
490                                 bformat(_("Unable to remove the temporary directory %1$s"),
491                                 from_utf8(package().temp_dir()));
492                         Alert::warning(_("Unable to remove temporary directory"), msg);
493                 }
494         }
495
496         if (use_gui) {
497                 if (pimpl_->session_)
498                         pimpl_->session_->writeFile();
499                 pimpl_->session_.reset();
500                 pimpl_->lyx_server_.reset();
501                 pimpl_->lyx_socket_.reset();
502         }
503
504         // Kill the application object before exiting. This avoids crashes
505         // when exiting on Linux.
506         if (pimpl_->application_)
507                 pimpl_->application_.reset();
508 }
509
510
511 void LyX::earlyExit(int status)
512 {
513         BOOST_ASSERT(pimpl_->application_.get());
514         // LyX::pimpl_::application_ is not initialised at this
515         // point so it's safe to just exit after some cleanup.
516         prepareExit();
517         exit(status);
518 }
519
520
521 int LyX::init(int & argc, char * argv[])
522 {
523         // check for any spurious extra arguments
524         // other than documents
525         for (int argi = 1; argi < argc ; ++argi) {
526                 if (argv[argi][0] == '-') {
527                         lyxerr << to_utf8(
528                                 bformat(_("Wrong command line option `%1$s'. Exiting."),
529                                 from_utf8(argv[argi]))) << endl;
530                         return EXIT_FAILURE;
531                 }
532         }
533
534         // Initialization of LyX (reads lyxrc and more)
535         lyxerr[Debug::INIT] << "Initializing LyX::init..." << endl;
536         bool success = init();
537         lyxerr[Debug::INIT] << "Initializing LyX::init...done" << endl;
538         if (!success)
539                 return EXIT_FAILURE;
540
541         for (int argi = argc - 1; argi >= 1; --argi) {
542                 // get absolute path of file and add ".lyx" to
543                 // the filename if necessary
544                 pimpl_->files_to_load_.push_back(fileSearch(string(),
545                         os::internal_path(to_utf8(from_local8bit(argv[argi]))),
546                         "lyx", support::allow_unreadable));
547         }
548
549         if (first_start)
550                 pimpl_->files_to_load_.push_back(i18nLibFileSearch("examples", "splash.lyx"));
551
552         return EXIT_SUCCESS;
553 }
554
555
556 void LyX::loadFiles()
557 {
558         vector<FileName>::const_iterator it = pimpl_->files_to_load_.begin();
559         vector<FileName>::const_iterator end = pimpl_->files_to_load_.end();
560
561         for (; it != end; ++it) {
562                 if (it->empty())
563                         continue;
564
565                 Buffer * buf = pimpl_->buffer_list_.newBuffer(it->absFilename(), false);
566                 if (loadLyXFile(buf, *it)) {
567                         ErrorList const & el = buf->errorList("Parse");
568                         if (!el.empty())
569                                 for_each(el.begin(), el.end(),
570                                 boost::bind(&LyX::printError, this, _1));
571                 }
572                 else
573                         pimpl_->buffer_list_.release(buf);
574         }
575 }
576
577
578 void LyX::execBatchCommands()
579 {
580         // The advantage of doing this here is that the event loop
581         // is already started. So any need for interaction will be
582         // aknowledged.
583         restoreGuiSession();
584
585         // Execute batch commands if available
586         if (batch_command.empty())
587                 return;
588
589         lyxerr[Debug::INIT] << "About to handle -x '"
590                 << batch_command << '\'' << endl;
591
592         pimpl_->lyxfunc_.dispatch(lyxaction.lookupFunc(batch_command));
593 }
594
595
596 void LyX::restoreGuiSession()
597 {
598         LyXView * view = newLyXView();
599
600         // if some files were specified at command-line we assume that the
601         // user wants to edit *these* files and not to restore the session.
602         if (!pimpl_->files_to_load_.empty()) {
603                 for_each(pimpl_->files_to_load_.begin(),
604                         pimpl_->files_to_load_.end(),
605                         bind(&LyXView::loadLyXFile, view, _1, true));
606                 // clear this list to save a few bytes of RAM
607                 pimpl_->files_to_load_.clear();
608                 pimpl_->session_->lastOpened().clear();
609                 return;
610         }
611
612         if (!lyxrc.load_session)
613                 return;
614
615         vector<FileName> const & lastopened = pimpl_->session_->lastOpened().getfiles();
616         // do not add to the lastfile list since these files are restored from
617         // last session, and should be already there (regular files), or should
618         // not be added at all (help files).
619         for_each(lastopened.begin(), lastopened.end(),
620                 bind(&LyXView::loadLyXFile, view, _1, false));
621
622         // clear this list to save a few bytes of RAM
623         pimpl_->session_->lastOpened().clear();
624 }
625
626
627 LyXView * LyX::newLyXView()
628 {
629         if (!lyx::use_gui)
630                 return 0;
631
632         // determine windows size and position, from lyxrc and/or session
633         // initial geometry
634         unsigned int width = 690;
635         unsigned int height = 510;
636         // default icon size, will be overwritten by  stored session value
637         unsigned int iconSizeXY = 0;
638         bool maximize = false;
639         // first try lyxrc
640         if (lyxrc.geometry_width != 0 && lyxrc.geometry_height != 0 ) {
641                 width = lyxrc.geometry_width;
642                 height = lyxrc.geometry_height;
643         }
644         // if lyxrc returns (0,0), then use session info
645         else {
646                 string val = session().sessionInfo().load("WindowWidth");
647                 if (!val.empty())
648                         width = convert<unsigned int>(val);
649                 val = session().sessionInfo().load("WindowHeight");
650                 if (!val.empty())
651                         height = convert<unsigned int>(val);
652                 if (session().sessionInfo().load("WindowIsMaximized") == "yes")
653                         maximize = true;
654                 val = session().sessionInfo().load("IconSizeXY");
655                 if (!val.empty())
656                         iconSizeXY = convert<unsigned int>(val);
657         }
658
659         // if user wants to restore window position
660         int posx = -1;
661         int posy = -1;
662         if (lyxrc.geometry_xysaved) {
663                 string val = session().sessionInfo().load("WindowPosX");
664                 if (!val.empty())
665                         posx = convert<int>(val);
666                 val = session().sessionInfo().load("WindowPosY");
667                 if (!val.empty())
668                         posy = convert<int>(val);
669         }
670
671         if (!geometryArg.empty()) 
672         {
673                 width = 0;
674                 height = 0;
675         }
676
677         // create the main window
678         LyXView * view = &pimpl_->application_->createView(width, height, posx, posy, maximize, iconSizeXY, geometryArg);
679
680         return view;
681 }
682
683 /*
684 Signals and Windows
685 ===================
686 The SIGHUP signal does not exist on Windows and does not need to be handled.
687
688 Windows handles SIGFPE and SIGSEGV signals as expected.
689
690 Cntl+C interrupts (mapped to SIGINT by Windows' POSIX compatability layer)
691 cause a new thread to be spawned. This may well result in unexpected
692 behaviour by the single-threaded LyX.
693
694 SIGTERM signals will come only from another process actually sending
695 that signal using 'raise' in Windows' POSIX compatability layer. It will
696 not come from the general "terminate process" methods that everyone
697 actually uses (and which can't be trapped). Killing an app 'politely' on
698 Windows involves first sending a WM_CLOSE message, something that is
699 caught already by the Qt frontend.
700
701 For more information see:
702
703 http://aspn.activestate.com/ASPN/Mail/Message/ActiveTcl/2034055
704 ...signals are mostly useless on Windows for a variety of reasons that are
705 Windows specific...
706
707 'UNIX Application Migration Guide, Chapter 9'
708 http://msdn.microsoft.com/library/en-us/dnucmg/html/UCMGch09.asp
709
710 'How To Terminate an Application "Cleanly" in Win32'
711 http://support.microsoft.com/default.aspx?scid=kb;en-us;178893
712 */
713 extern "C" {
714
715 static void error_handler(int err_sig)
716 {
717         // Throw away any signals other than the first one received.
718         static sig_atomic_t handling_error = false;
719         if (handling_error)
720                 return;
721         handling_error = true;
722
723         // We have received a signal indicating a fatal error, so
724         // try and save the data ASAP.
725         LyX::cref().emergencyCleanup();
726
727         // These lyxerr calls may or may not work:
728
729         // Signals are asynchronous, so the main program may be in a very
730         // fragile state when a signal is processed and thus while a signal
731         // handler function executes.
732         // In general, therefore, we should avoid performing any
733         // I/O operations or calling most library and system functions from
734         // signal handlers.
735
736         // This shouldn't matter here, however, as we've already invoked
737         // emergencyCleanup.
738         switch (err_sig) {
739 #ifdef SIGHUP
740         case SIGHUP:
741                 lyxerr << "\nlyx: SIGHUP signal caught\nBye." << endl;
742                 break;
743 #endif
744         case SIGFPE:
745                 lyxerr << "\nlyx: SIGFPE signal caught\nBye." << endl;
746                 break;
747         case SIGSEGV:
748                 lyxerr << "\nlyx: SIGSEGV signal caught\n"
749                           "Sorry, you have found a bug in LyX. "
750                           "Please read the bug-reporting instructions "
751                           "in Help->Introduction and send us a bug report, "
752                           "if necessary. Thanks !\nBye." << endl;
753                 break;
754         case SIGINT:
755         case SIGTERM:
756                 // no comments
757                 break;
758         }
759
760         // Deinstall the signal handlers
761 #ifdef SIGHUP
762         signal(SIGHUP, SIG_DFL);
763 #endif
764         signal(SIGINT, SIG_DFL);
765         signal(SIGFPE, SIG_DFL);
766         signal(SIGSEGV, SIG_DFL);
767         signal(SIGTERM, SIG_DFL);
768
769 #ifdef SIGHUP
770         if (err_sig == SIGSEGV ||
771             (err_sig != SIGHUP && !getEnv("LYXDEBUG").empty()))
772 #else
773         if (err_sig == SIGSEGV || !getEnv("LYXDEBUG").empty())
774 #endif
775                 support::abort();
776         exit(0);
777 }
778
779 }
780
781
782 void LyX::printError(ErrorItem const & ei)
783 {
784         docstring tmp = _("LyX: ") + ei.error + char_type(':')
785                 + ei.description;
786         std::cerr << to_utf8(tmp) << std::endl;
787 }
788
789
790 void LyX::initGuiFont()
791 {
792         if (lyxrc.roman_font_name.empty())
793                 lyxrc.roman_font_name = pimpl_->application_->romanFontName();
794
795         if (lyxrc.sans_font_name.empty())
796                 lyxrc.sans_font_name = pimpl_->application_->sansFontName();
797
798         if (lyxrc.typewriter_font_name.empty())
799                 lyxrc.typewriter_font_name 
800                         = pimpl_->application_->typewriterFontName();
801 }
802
803
804 bool LyX::init()
805 {
806 #ifdef SIGHUP
807         signal(SIGHUP, error_handler);
808 #endif
809         signal(SIGFPE, error_handler);
810         signal(SIGSEGV, error_handler);
811         signal(SIGINT, error_handler);
812         signal(SIGTERM, error_handler);
813         // SIGPIPE can be safely ignored.
814
815         lyxrc.tempdir_path = package().temp_dir();
816         lyxrc.document_path = package().document_dir();
817
818         if (lyxrc.template_path.empty()) {
819                 lyxrc.template_path = addPath(package().system_support(),
820                                               "templates");
821         }
822
823         //
824         // Read configuration files
825         //
826
827         // This one may have been distributed along with LyX.
828         if (!readRcFile("lyxrc.dist"))
829                 return false;
830
831         // Set the language defined by the distributor.
832         //setGuiLanguage(lyxrc.gui_language);
833
834         // Set the PATH correctly.
835 #if !defined (USE_POSIX_PACKAGING)
836         // Add the directory containing the LyX executable to the path
837         // so that LyX can find things like tex2lyx.
838         if (package().build_support().empty())
839                 prependEnvPath("PATH", package().binary_dir());
840 #endif
841         if (!lyxrc.path_prefix.empty())
842                 prependEnvPath("PATH", lyxrc.path_prefix);
843
844         // Check that user LyX directory is ok.
845         if (queryUserLyXDir(package().explicit_user_support()))
846                 reconfigureUserLyXDir();
847
848         // no need for a splash when there is no GUI
849         if (!use_gui) {
850                 first_start = false;
851         }
852
853         // This one is generated in user_support directory by lib/configure.py.
854         if (!readRcFile("lyxrc.defaults"))
855                 return false;
856
857         // Query the OS to know what formats are viewed natively
858         formats.setAutoOpen();
859
860         // Read lyxrc.dist again to be able to override viewer auto-detection.
861         readRcFile("lyxrc.dist");
862
863         system_lyxrc = lyxrc;
864         system_formats = formats;
865         pimpl_->system_converters_ = pimpl_->converters_;
866         pimpl_->system_movers_ = pimpl_->movers_;
867         system_lcolor = lcolor;
868
869         // This one is edited through the preferences dialog.
870         if (!readRcFile("preferences"))
871                 return false;
872
873         if (!readEncodingsFile("encodings", "unicodesymbols"))
874                 return false;
875         if (!readLanguagesFile("languages"))
876                 return false;
877
878         // Load the layouts
879         lyxerr[Debug::INIT] << "Reading layouts..." << endl;
880         if (!LyXSetStyle())
881                 return false;
882
883         if (use_gui) {
884                 // Set the language defined by the user.
885                 //setGuiLanguage(lyxrc.gui_language);
886
887                 // Set up bindings
888                 pimpl_->toplevel_keymap_.reset(new kb_keymap);
889                 defaultKeyBindings(pimpl_->toplevel_keymap_.get());
890                 pimpl_->toplevel_keymap_->read(lyxrc.bind_file);
891
892                 pimpl_->lyxfunc_.initKeySequences(pimpl_->toplevel_keymap_.get());
893
894                 // Read menus
895                 if (!readUIFile(lyxrc.ui_file))
896                         return false;
897         }
898
899         if (lyxerr.debugging(Debug::LYXRC))
900                 lyxrc.print();
901
902         os::windows_style_tex_paths(lyxrc.windows_style_tex_paths);
903         if (!lyxrc.path_prefix.empty())
904                 prependEnvPath("PATH", lyxrc.path_prefix);
905
906         FileName const document_path(lyxrc.document_path);
907         if (fs::exists(document_path.toFilesystemEncoding()) &&
908             fs::is_directory(document_path.toFilesystemEncoding()))
909                 package().document_dir() = lyxrc.document_path;
910
911         package().temp_dir() = createLyXTmpDir(FileName(lyxrc.tempdir_path)).absFilename();
912         if (package().temp_dir().empty()) {
913                 Alert::error(_("Could not create temporary directory"),
914                              bformat(_("Could not create a temporary directory in\n"
915                                                     "%1$s. Make sure that this\n"
916                                                     "path exists and is writable and try again."),
917                                      from_utf8(lyxrc.tempdir_path)));
918                 // createLyXTmpDir() tries sufficiently hard to create a
919                 // usable temp dir, so the probability to come here is
920                 // close to zero. We therefore don't try to overcome this
921                 // problem with e.g. asking the user for a new path and
922                 // trying again but simply exit.
923                 return false;
924         }
925
926         if (lyxerr.debugging(Debug::INIT)) {
927                 lyxerr << "LyX tmp dir: `" << package().temp_dir() << '\'' << endl;
928         }
929
930         lyxerr[Debug::INIT] << "Reading session information '.lyx/session'..." << endl;
931         pimpl_->session_.reset(new Session(lyxrc.num_lastfiles));
932
933         // This must happen after package initialization and after lyxrc is
934         // read, therefore it can't be done by a static object.
935         ConverterCache::init();
936
937         return true;
938 }
939
940
941 void LyX::defaultKeyBindings(kb_keymap  * kbmap)
942 {
943         kbmap->bind("Right", FuncRequest(LFUN_CHAR_FORWARD));
944         kbmap->bind("Left", FuncRequest(LFUN_CHAR_BACKWARD));
945         kbmap->bind("Up", FuncRequest(LFUN_UP));
946         kbmap->bind("Down", FuncRequest(LFUN_DOWN));
947
948         kbmap->bind("Tab", FuncRequest(LFUN_CELL_FORWARD));
949         kbmap->bind("C-Tab", FuncRequest(LFUN_CELL_SPLIT));
950         kbmap->bind("~S-ISO_Left_Tab", FuncRequest(LFUN_CELL_BACKWARD));
951         kbmap->bind("~S-BackTab", FuncRequest(LFUN_CELL_BACKWARD));
952
953         kbmap->bind("Home", FuncRequest(LFUN_LINE_BEGIN));
954         kbmap->bind("End", FuncRequest(LFUN_LINE_END));
955         kbmap->bind("Prior", FuncRequest(LFUN_SCREEN_UP));
956         kbmap->bind("Next", FuncRequest(LFUN_SCREEN_DOWN));
957
958         kbmap->bind("Return", FuncRequest(LFUN_BREAK_PARAGRAPH));
959         //kbmap->bind("~C-~S-~M-nobreakspace", FuncRequest(LFUN_PROTECTEDSPACE));
960
961         kbmap->bind("Delete", FuncRequest(LFUN_CHAR_DELETE_FORWARD));
962         kbmap->bind("BackSpace", FuncRequest(LFUN_CHAR_DELETE_BACKWARD));
963
964         // kbmap->bindings to enable the use of the numeric keypad
965         // e.g. Num Lock set
966         //kbmap->bind("KP_0", FuncRequest(LFUN_SELF_INSERT));
967         //kbmap->bind("KP_Decimal", FuncRequest(LFUN_SELF_INSERT));
968         kbmap->bind("KP_Enter", FuncRequest(LFUN_BREAK_PARAGRAPH));
969         //kbmap->bind("KP_1", FuncRequest(LFUN_SELF_INSERT));
970         //kbmap->bind("KP_2", FuncRequest(LFUN_SELF_INSERT));
971         //kbmap->bind("KP_3", FuncRequest(LFUN_SELF_INSERT));
972         //kbmap->bind("KP_4", FuncRequest(LFUN_SELF_INSERT));
973         //kbmap->bind("KP_5", FuncRequest(LFUN_SELF_INSERT));
974         //kbmap->bind("KP_6", FuncRequest(LFUN_SELF_INSERT));
975         //kbmap->bind("KP_Add", FuncRequest(LFUN_SELF_INSERT));
976         //kbmap->bind("KP_7", FuncRequest(LFUN_SELF_INSERT));
977         //kbmap->bind("KP_8", FuncRequest(LFUN_SELF_INSERT));
978         //kbmap->bind("KP_9", FuncRequest(LFUN_SELF_INSERT));
979         //kbmap->bind("KP_Divide", FuncRequest(LFUN_SELF_INSERT));
980         //kbmap->bind("KP_Multiply", FuncRequest(LFUN_SELF_INSERT));
981         //kbmap->bind("KP_Subtract", FuncRequest(LFUN_SELF_INSERT));
982         kbmap->bind("KP_Right", FuncRequest(LFUN_CHAR_FORWARD));
983         kbmap->bind("KP_Left", FuncRequest(LFUN_CHAR_BACKWARD));
984         kbmap->bind("KP_Up", FuncRequest(LFUN_UP));
985         kbmap->bind("KP_Down", FuncRequest(LFUN_DOWN));
986         kbmap->bind("KP_Home", FuncRequest(LFUN_LINE_BEGIN));
987         kbmap->bind("KP_End", FuncRequest(LFUN_LINE_END));
988         kbmap->bind("KP_Prior", FuncRequest(LFUN_SCREEN_UP));
989         kbmap->bind("KP_Next", FuncRequest(LFUN_SCREEN_DOWN));
990 }
991
992
993 void LyX::emergencyCleanup() const
994 {
995         // what to do about tmpfiles is non-obvious. we would
996         // like to delete any we find, but our lyxdir might
997         // contain documents etc. which might be helpful on
998         // a crash
999
1000         pimpl_->buffer_list_.emergencyWriteAll();
1001         if (use_gui) {
1002                 if (pimpl_->lyx_server_)
1003                         pimpl_->lyx_server_->emergencyCleanup();
1004                 pimpl_->lyx_server_.reset();
1005                 pimpl_->lyx_socket_.reset();
1006         }
1007 }
1008
1009
1010 void LyX::deadKeyBindings(kb_keymap * kbmap)
1011 {
1012         // bindKeyings for transparent handling of deadkeys
1013         // The keysyms are gotten from XFree86 X11R6
1014         kbmap->bind("~C-~S-~M-dead_acute", FuncRequest(LFUN_ACCENT_ACUTE));
1015         kbmap->bind("~C-~S-~M-dead_breve", FuncRequest(LFUN_ACCENT_BREVE));
1016         kbmap->bind("~C-~S-~M-dead_caron", FuncRequest(LFUN_ACCENT_CARON));
1017         kbmap->bind("~C-~S-~M-dead_cedilla", FuncRequest(LFUN_ACCENT_CEDILLA));
1018         kbmap->bind("~C-~S-~M-dead_abovering", FuncRequest(LFUN_ACCENT_CIRCLE));
1019         kbmap->bind("~C-~S-~M-dead_circumflex", FuncRequest(LFUN_ACCENT_CIRCUMFLEX));
1020         kbmap->bind("~C-~S-~M-dead_abovedot", FuncRequest(LFUN_ACCENT_DOT));
1021         kbmap->bind("~C-~S-~M-dead_grave", FuncRequest(LFUN_ACCENT_GRAVE));
1022         kbmap->bind("~C-~S-~M-dead_doubleacute", FuncRequest(LFUN_ACCENT_HUNGARIAN_UMLAUT));
1023         kbmap->bind("~C-~S-~M-dead_macron", FuncRequest(LFUN_ACCENT_MACRON));
1024         // nothing with this name
1025         // kbmap->bind("~C-~S-~M-dead_special_caron", LFUN_ACCENT_SPECIAL_CARON);
1026         kbmap->bind("~C-~S-~M-dead_tilde", FuncRequest(LFUN_ACCENT_TILDE));
1027         kbmap->bind("~C-~S-~M-dead_diaeresis", FuncRequest(LFUN_ACCENT_UMLAUT));
1028         // nothing with this name either...
1029         //kbmap->bind("~C-~S-~M-dead_underbar", FuncRequest(LFUN_ACCENT_UNDERBAR));
1030         kbmap->bind("~C-~S-~M-dead_belowdot", FuncRequest(LFUN_ACCENT_UNDERDOT));
1031         kbmap->bind("~C-~S-~M-dead_tie", FuncRequest(LFUN_ACCENT_TIE));
1032         kbmap->bind("~C-~S-~M-dead_ogonek",FuncRequest(LFUN_ACCENT_OGONEK));
1033 }
1034
1035
1036 namespace {
1037
1038 // return true if file does not exist or is older than configure.py.
1039 bool needsUpdate(string const & file)
1040 {
1041         // We cannot initialize configure_script directly because the package
1042         // is not initialized yet when  static objects are constructed.
1043         static string configure_script;
1044         static bool firstrun = true;
1045         if (firstrun) {
1046                 configure_script = FileName(addName(
1047                                 package().system_support(),
1048                                 "configure.py")).toFilesystemEncoding();
1049                 firstrun = false;
1050         }
1051
1052         string const absfile = FileName(addName(
1053                 package().user_support(), file)).toFilesystemEncoding();
1054         return (! fs::exists(absfile))
1055                 || (fs::last_write_time(configure_script)
1056                     > fs::last_write_time(absfile));
1057 }
1058
1059 }
1060
1061
1062 bool LyX::queryUserLyXDir(bool explicit_userdir)
1063 {
1064         // Does user directory exist?
1065         string const user_support =
1066                 FileName(package().user_support()).toFilesystemEncoding();
1067         if (fs::exists(user_support) && fs::is_directory(user_support)) {
1068                 first_start = false;
1069
1070                 return needsUpdate("lyxrc.defaults")
1071                         || needsUpdate("textclass.lst")
1072                         || needsUpdate("packages.lst");
1073         }
1074
1075         first_start = !explicit_userdir;
1076
1077         // If the user specified explicitly a directory, ask whether
1078         // to create it. If the user says "no", then exit.
1079         if (explicit_userdir &&
1080             Alert::prompt(
1081                     _("Missing user LyX directory"),
1082                     bformat(_("You have specified a non-existent user "
1083                                            "LyX directory, %1$s.\n"
1084                                            "It is needed to keep your own configuration."),
1085                             from_utf8(package().user_support())),
1086                     1, 0,
1087                     _("&Create directory"),
1088                     _("&Exit LyX"))) {
1089                 lyxerr << to_utf8(_("No user LyX directory. Exiting.")) << endl;
1090                 earlyExit(EXIT_FAILURE);
1091         }
1092
1093         lyxerr << to_utf8(bformat(_("LyX: Creating directory %1$s"),
1094                           from_utf8(package().user_support())))
1095                << endl;
1096
1097         if (!createDirectory(package().user_support(), 0755)) {
1098                 // Failed, so let's exit.
1099                 lyxerr << to_utf8(_("Failed to create directory. Exiting."))
1100                        << endl;
1101                 earlyExit(EXIT_FAILURE);
1102         }
1103
1104         return true;
1105 }
1106
1107
1108 bool LyX::readRcFile(string const & name)
1109 {
1110         lyxerr[Debug::INIT] << "About to read " << name << "... ";
1111
1112         FileName const lyxrc_path = libFileSearch(string(), name);
1113         if (!lyxrc_path.empty()) {
1114
1115                 lyxerr[Debug::INIT] << "Found in " << lyxrc_path << endl;
1116
1117                 if (lyxrc.read(lyxrc_path) < 0) {
1118                         showFileError(name);
1119                         return false;
1120                 }
1121         } else
1122                 lyxerr[Debug::INIT] << "Not found." << lyxrc_path << endl;
1123         return true;
1124
1125 }
1126
1127
1128 // Read the ui file `name'
1129 bool LyX::readUIFile(string const & name, bool include)
1130 {
1131         enum Uitags {
1132                 ui_menuset = 1,
1133                 ui_toolbar,
1134                 ui_toolbars,
1135                 ui_include,
1136                 ui_last
1137         };
1138
1139         struct keyword_item uitags[ui_last - 1] = {
1140                 { "include", ui_include },
1141                 { "menuset", ui_menuset },
1142                 { "toolbar", ui_toolbar },
1143                 { "toolbars", ui_toolbars }
1144         };
1145
1146         // Ensure that a file is read only once (prevents include loops)
1147         static std::list<string> uifiles;
1148         std::list<string>::const_iterator it  = uifiles.begin();
1149         std::list<string>::const_iterator end = uifiles.end();
1150         it = std::find(it, end, name);
1151         if (it != end) {
1152                 lyxerr[Debug::INIT] << "UI file '" << name
1153                                     << "' has been read already. "
1154                                     << "Is this an include loop?"
1155                                     << endl;
1156                 return false;
1157         }
1158
1159         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
1160
1161         
1162         FileName ui_path;
1163         if (include) {
1164                 ui_path = libFileSearch("ui", name, "inc");
1165                 if (ui_path.empty())
1166                         ui_path = libFileSearch("ui",
1167                                                 changeExtension(name, "inc"));
1168         }
1169         else
1170                 ui_path = libFileSearch("ui", name, "ui");
1171         
1172         if (ui_path.empty()) {
1173                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
1174                 showFileError(name);
1175                 return false;
1176         }
1177
1178         uifiles.push_back(name);
1179
1180         lyxerr[Debug::INIT] << "Found " << name
1181                             << " in " << ui_path << endl;
1182         LyXLex lex(uitags, ui_last - 1);
1183         lex.setFile(ui_path);
1184         if (!lex.isOK()) {
1185                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
1186                        << endl;
1187         }
1188
1189         if (lyxerr.debugging(Debug::PARSER))
1190                 lex.printTable(lyxerr);
1191
1192         while (lex.isOK()) {
1193                 switch (lex.lex()) {
1194                 case ui_include: {
1195                         lex.next(true);
1196                         string const file = lex.getString();
1197                         if (!readUIFile(file, true))
1198                                 return false;
1199                         break;
1200                 }
1201                 case ui_menuset:
1202                         menubackend.read(lex);
1203                         break;
1204
1205                 case ui_toolbar:
1206                         toolbarbackend.read(lex);
1207                         break;
1208
1209                 case ui_toolbars:
1210                         toolbarbackend.readToolbars(lex);
1211                         break;
1212
1213                 default:
1214                         if (!rtrim(lex.getString()).empty())
1215                                 lex.printError("LyX::ReadUIFile: "
1216                                                "Unknown menu tag: `$$Token'");
1217                         break;
1218                 }
1219         }
1220         return true;
1221 }
1222
1223
1224 // Read the languages file `name'
1225 bool LyX::readLanguagesFile(string const & name)
1226 {
1227         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
1228
1229         FileName const lang_path = libFileSearch(string(), name);
1230         if (lang_path.empty()) {
1231                 showFileError(name);
1232                 return false;
1233         }
1234         languages.read(lang_path);
1235         return true;
1236 }
1237
1238
1239 // Read the encodings file `name'
1240 bool LyX::readEncodingsFile(string const & enc_name,
1241                             string const & symbols_name)
1242 {
1243         lyxerr[Debug::INIT] << "About to read " << enc_name << " and "
1244                             << symbols_name << "..." << endl;
1245
1246         FileName const symbols_path = libFileSearch(string(), symbols_name);
1247         if (symbols_path.empty()) {
1248                 showFileError(symbols_name);
1249                 return false;
1250         }
1251
1252         FileName const enc_path = libFileSearch(string(), enc_name);
1253         if (enc_path.empty()) {
1254                 showFileError(enc_name);
1255                 return false;
1256         }
1257         encodings.read(enc_path, symbols_path);
1258         return true;
1259 }
1260
1261
1262 namespace {
1263
1264 string batch;
1265
1266 /// return the the number of arguments consumed
1267 typedef boost::function<int(string const &, string const &)> cmd_helper;
1268
1269 int parse_dbg(string const & arg, string const &)
1270 {
1271         if (arg.empty()) {
1272                 lyxerr << to_utf8(_("List of supported debug flags:")) << endl;
1273                 Debug::showTags(lyxerr);
1274                 exit(0);
1275         }
1276         lyxerr << to_utf8(bformat(_("Setting debug level to %1$s"), from_utf8(arg))) << endl;
1277
1278         lyxerr.level(Debug::value(arg));
1279         Debug::showLevel(lyxerr, lyxerr.level());
1280         return 1;
1281 }
1282
1283
1284 int parse_help(string const &, string const &)
1285 {
1286         lyxerr <<
1287                 to_utf8(_("Usage: lyx [ command line switches ] [ name.lyx ... ]\n"
1288                   "Command line switches (case sensitive):\n"
1289                   "\t-help              summarize LyX usage\n"
1290                   "\t-userdir dir       set user directory to dir\n"
1291                   "\t-sysdir dir        set system directory to dir\n"
1292                   "\t-geometry WxH+X+Y  set geometry of the main window\n"
1293                   "\t-dbg feature[,feature]...\n"
1294                   "                  select the features to debug.\n"
1295                   "                  Type `lyx -dbg' to see the list of features\n"
1296                   "\t-x [--execute] command\n"
1297                   "                  where command is a lyx command.\n"
1298                   "\t-e [--export] fmt\n"
1299                   "                  where fmt is the export format of choice.\n"
1300                   "\t-i [--import] fmt file.xxx\n"
1301                   "                  where fmt is the import format of choice\n"
1302                   "                  and file.xxx is the file to be imported.\n"
1303                   "\t-version        summarize version and build info\n"
1304                                "Check the LyX man page for more details.")) << endl;
1305         exit(0);
1306         return 0;
1307 }
1308
1309 int parse_version(string const &, string const &)
1310 {
1311         lyxerr << "LyX " << lyx_version
1312                << " (" << lyx_release_date << ")" << endl;
1313         lyxerr << "Built on " << __DATE__ << ", " << __TIME__ << endl;
1314
1315         lyxerr << lyx_version_info << endl;
1316         exit(0);
1317         return 0;
1318 }
1319
1320 int parse_sysdir(string const & arg, string const &)
1321 {
1322         if (arg.empty()) {
1323                 Alert::error(_("No system directory"),
1324                         _("Missing directory for -sysdir switch"));
1325                 exit(1);
1326         }
1327         cl_system_support = arg;
1328         return 1;
1329 }
1330
1331 int parse_userdir(string const & arg, string const &)
1332 {
1333         if (arg.empty()) {
1334                 Alert::error(_("No user directory"),
1335                         _("Missing directory for -userdir switch"));
1336                 exit(1);
1337         }
1338         cl_user_support = arg;
1339         return 1;
1340 }
1341
1342 int parse_execute(string const & arg, string const &)
1343 {
1344         if (arg.empty()) {
1345                 Alert::error(_("Incomplete command"),
1346                         _("Missing command string after --execute switch"));
1347                 exit(1);
1348         }
1349         batch = arg;
1350         return 1;
1351 }
1352
1353 int parse_export(string const & type, string const &)
1354 {
1355         if (type.empty()) {
1356                 lyxerr << to_utf8(_("Missing file type [eg latex, ps...] after "
1357                                          "--export switch")) << endl;
1358                 exit(1);
1359         }
1360         batch = "buffer-export " + type;
1361         use_gui = false;
1362         return 1;
1363 }
1364
1365 int parse_import(string const & type, string const & file)
1366 {
1367         if (type.empty()) {
1368                 lyxerr << to_utf8(_("Missing file type [eg latex, ps...] after "
1369                                          "--import switch")) << endl;
1370                 exit(1);
1371         }
1372         if (file.empty()) {
1373                 lyxerr << to_utf8(_("Missing filename for --import")) << endl;
1374                 exit(1);
1375         }
1376
1377         batch = "buffer-import " + type + ' ' + file;
1378         return 2;
1379 }
1380
1381 int parse_geometry(string const & arg1, string const &)
1382 {
1383         geometryArg = arg1;
1384 #if defined(_WIN32) || (defined(__CYGWIN__) && defined(X_DISPLAY_MISSING))
1385         // remove also the arg
1386         return 1;
1387 #else
1388         // don't remove "-geometry"
1389         return -1;
1390 #endif
1391 }
1392
1393
1394 } // namespace anon
1395
1396
1397 void LyX::easyParse(int & argc, char * argv[])
1398 {
1399         std::map<string, cmd_helper> cmdmap;
1400
1401         cmdmap["-dbg"] = parse_dbg;
1402         cmdmap["-help"] = parse_help;
1403         cmdmap["--help"] = parse_help;
1404         cmdmap["-version"] = parse_version;
1405         cmdmap["--version"] = parse_version;
1406         cmdmap["-sysdir"] = parse_sysdir;
1407         cmdmap["-userdir"] = parse_userdir;
1408         cmdmap["-x"] = parse_execute;
1409         cmdmap["--execute"] = parse_execute;
1410         cmdmap["-e"] = parse_export;
1411         cmdmap["--export"] = parse_export;
1412         cmdmap["-i"] = parse_import;
1413         cmdmap["--import"] = parse_import;
1414         cmdmap["-geometry"] = parse_geometry;
1415
1416         for (int i = 1; i < argc; ++i) {
1417                 std::map<string, cmd_helper>::const_iterator it
1418                         = cmdmap.find(argv[i]);
1419
1420                 // don't complain if not found - may be parsed later
1421                 if (it == cmdmap.end())
1422                         continue;
1423
1424                 string const arg((i + 1 < argc) ? to_utf8(from_local8bit(argv[i + 1])) : string());
1425                 string const arg2((i + 2 < argc) ? to_utf8(from_local8bit(argv[i + 2])) : string());
1426
1427                 int const remove = 1 + it->second(arg, arg2);
1428
1429                 // Now, remove used arguments by shifting
1430                 // the following ones remove places down.
1431                 if (remove > 0) {
1432                         argc -= remove;
1433                         for (int j = i; j < argc; ++j)
1434                                 argv[j] = argv[j + remove];
1435                         --i;
1436                 }
1437         }
1438
1439         batch_command = batch;
1440 }
1441
1442
1443 FuncStatus getStatus(FuncRequest const & action)
1444 {
1445         return LyX::ref().lyxFunc().getStatus(action);
1446 }
1447
1448
1449 void dispatch(FuncRequest const & action)
1450 {
1451         LyX::ref().lyxFunc().dispatch(action);
1452 }
1453
1454
1455 BufferList & theBufferList()
1456 {
1457         return LyX::ref().bufferList();
1458 }
1459
1460
1461 LyXFunc & theLyXFunc()
1462 {
1463         return LyX::ref().lyxFunc();
1464 }
1465
1466
1467 LyXServer & theLyXServer()
1468 {
1469         // FIXME: this should not be use_gui dependent
1470         BOOST_ASSERT(use_gui);
1471         return LyX::ref().server();
1472 }
1473
1474
1475 LyXServerSocket & theLyXServerSocket()
1476 {
1477         // FIXME: this should not be use_gui dependent
1478         BOOST_ASSERT(use_gui);
1479         return LyX::ref().socket();
1480 }
1481
1482
1483 kb_keymap & theTopLevelKeymap()
1484 {
1485         BOOST_ASSERT(use_gui);
1486         return LyX::ref().topLevelKeymap();
1487 }
1488
1489
1490 Converters & theConverters()
1491 {
1492         return  LyX::ref().converters();
1493 }
1494
1495
1496 Converters & theSystemConverters()
1497 {
1498         return  LyX::ref().systemConverters();
1499 }
1500
1501
1502 Movers & theMovers()
1503 {
1504         return  LyX::ref().pimpl_->movers_;
1505 }
1506
1507
1508 Mover const & getMover(std::string  const & fmt)
1509 {
1510         return  LyX::ref().pimpl_->movers_(fmt);
1511 }
1512
1513
1514 void setMover(std::string const & fmt, std::string const & command)
1515 {
1516         LyX::ref().pimpl_->movers_.set(fmt, command);
1517 }
1518
1519
1520 Movers & theSystemMovers()
1521 {
1522         return  LyX::ref().pimpl_->system_movers_;
1523 }
1524
1525
1526 Messages & getMessages(std::string const & language)
1527 {
1528         return LyX::ref().getMessages(language);
1529 }
1530
1531
1532 Messages & getGuiMessages()
1533 {
1534         return LyX::ref().getGuiMessages();
1535 }
1536
1537 } // namespace lyx