]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.h
more changes, read the Changelog
[lyx.git] / src / lyxrc.h
index fffbdccf464ac651101ab511f4135713e4234283..7eec3c242fb2c7c75381b647410e836b67c298e1 100644 (file)
 #pragma interface
 #endif
 
-#include <map>
-
 #include "ToolbarDefaults.h"
 #include "bufferparams.h"
 
-using std::map;
-
 /// This contains the runtime configuration of LyX
 class LyXRC {
 public:
@@ -36,7 +32,7 @@ public:
        ///
         void print() const;
        ///
-       void output(ostream & os) const;
+       void output(std::ostream & os) const;
        /// Is a bind file already (or currently) read?
        bool hasBindFile;
        ///
@@ -44,6 +40,8 @@ public:
        ///
        ToolbarDefaults toolbardefaults;
        ///
+       string bind_file;
+       ///
        string printer;
        ///
        string print_command;
@@ -121,8 +119,6 @@ public:
        /// command to run an html converter incl. options
        string html_command;
        ///
-       string sgml_extra_options;
-       ///
        string document_path;
        ///
        string template_path;
@@ -150,6 +146,8 @@ public:
        bool use_scalable_fonts;
        /// DPI of monitor
        float dpi;
+       /// Whether lyx should handle deadkeys by itself
+       bool override_x_deadkeys;
        ///
        string fontenc;
        ///
@@ -223,16 +221,25 @@ public:
        ///
        bool rtl_support;
        ///
-       string auto_mathmode;
+       bool auto_number;
+       ///
+       bool mark_foreign_language;
        ///
        bool show_banner;
+       /// Do we have to use a GUI?
+       bool use_gui;
+       ///
+       string linuxdoc_to_lyx_command;
+       ///
+       string linuxdoc_to_html_command;
+       ///
+       string linuxdoc_to_latex_command;
        ///
-       typedef map<string, int> Bindings;
+       string docbook_to_dvi_command;
        ///
-       Bindings bindings;
-private:
+       string docbook_to_html_command;
        ///
-       void defaultKeyBindings();
+       string docbook_to_pdf_command;
 };
 
 extern LyXRC lyxrc;