]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_main.h
Point fix, earlier forgotten
[lyx.git] / src / lyx_main.h
index f3b0f3c3b900a5554f4434e2685baf2a3d0e88ad..0c1fc0b462cb11a813f471c10f415615ef25b358 100644 (file)
@@ -1,34 +1,34 @@
 // -*- C++ -*-
 /**
  * \file lyx_main.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author unknown
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LYX_MAIN_H
 #define LYX_MAIN_H
 
 #include "LString.h"
+#include "errorlist.h"
 
 #include <boost/scoped_ptr.hpp>
 #include <boost/utility.hpp>
 
 #include <csignal>
 
+
 class LyXRC;
 class LastFiles;
 class Buffer;
 class kb_keymap;
 
 
-/// e.g. $HOME/.lyx/
-extern string user_lyxdir;
-/// e.g. /usr/share/lyx/
-extern string system_lyxdir;
-/// e.g. /tmp
-extern string system_tempdir;
 /// last files loaded
 extern boost::scoped_ptr<LastFiles> lastfiles;
 
@@ -50,8 +50,8 @@ private:
        void deadKeyBindings(kb_keymap * kbmap);
        /// check, set up and configure the user dir if necessary
        void queryUserLyXDir(bool explicit_userdir);
-       /// return true if the given prefs file was successfully read
-       bool readRcFile(string const & name);
+       /// read lyxrc/preferences
+       void readRcFile(string const & name);
        /// read the given ui (menu/toolbar) file
        void readUIFile(string const & name);
        /// read the given languages file
@@ -60,6 +60,8 @@ private:
        void readEncodingsFile(string const & name);
        /// parsing of non-gui LyX options. Returns true if gui
        bool easyParse(int & argc, char * argv[]);
+       /// shows up a parsing error on screen
+       void printError(ErrorItem const &);
 
        /// has this user started lyx for the first time?
        bool first_start;