X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrc.h;h=ede04f705552e83bab5df1e93f89372d91dbd4ea;hb=9e5bd1d609877e602cb697bc695d410e2ab48e0d;hp=9cab1ff5e0fe04c484f5b8a5a960e445256aa257;hpb=014ebb2efe7082ce0c269198c9dfe8da43296baa;p=lyx.git diff --git a/src/lyxrc.h b/src/lyxrc.h index 9cab1ff5e0..ede04f7055 100644 --- a/src/lyxrc.h +++ b/src/lyxrc.h @@ -21,8 +21,6 @@ #include "ToolbarDefaults.h" #include "bufferparams.h" -using std::map; - /// This contains the runtime configuration of LyX class LyXRC { public: @@ -36,7 +34,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; /// @@ -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; @@ -140,6 +136,8 @@ public: unsigned int num_lastfiles; /// shall a backup file be created bool make_backup; + /// A directory for storing backup files + string backupdir_path; /// Zoom factor for screen fonts unsigned int zoom; /// Screen font sizes in points for each font size @@ -221,11 +219,25 @@ public: /// bool rtl_support; /// - string auto_mathmode; + bool auto_number; /// 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; + /// + string docbook_to_dvi_command; + /// + string docbook_to_html_command; + /// + string docbook_to_pdf_command; /// - typedef map Bindings; + typedef std::map Bindings; /// Bindings bindings; private: