]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_main.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / lyx_main.h
index c68c87185db0a8f09006adfd826bfff6ca8f3351..ba840c422f9afcf33536eb7b259d2c24aa1f731e 100644 (file)
@@ -22,7 +22,7 @@
 #include <csignal>
 
 #include "LString.h"
-#include "support/utility.hpp"
+#include <boost/utility.hpp>
 
 class LyXGUI;
 class LyXRC;
@@ -30,10 +30,13 @@ class LastFiles;
 class Buffer;
 class kb_keymap;
 
+///
 extern string system_lyxdir;
+///
 extern string user_lyxdir;
+///
 extern string system_tempdir;
-
+///
 extern LastFiles * lastfiles; /* we should hopefully be able to move this
                              * inside the LyX class */
 
@@ -43,29 +46,18 @@ extern LastFiles * lastfiles; /* we should hopefully be able to move this
 */
 class LyX : public noncopyable {
 public:
-       /**@name Constructors and Deconstructors */
-       //@{
        /// the only allowed constructor
        LyX(int * argc, char * argv[]); // constructor
-       // Always is useful a destructor
+       /// Always is useful a destructor
        ~LyX();
-       //@}
 
-       /**@name Pointers to... */
-       //@{
        ///
        LyXGUI * lyxGUI;  // should be only one of this
-       //@}
 private:
-       /**@name Private variables */
-       //@{
        /// does this user start lyx for the first time?
        bool first_start;
        ///
        string batch_command;
-       //@}
-       /**@name Private Members */
-       //@{
        ///
        void runtime();
        ///
@@ -82,9 +74,12 @@ private:
         bool ReadRcFile(string const & name);
        /// Read the ui file `name'
        void ReadUIFile(string const & name);
+       /// Read the languages file `name'
+       void ReadLangugesFile(string const & name);
+       /// Read the encodings file `name'
+       void ReadEncodingsFile(string const & name);
         ///
        bool easyParse(int * argc, char * argv[]);
-       //@}
 };
 
 #endif