]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / lyxrc.h
index e948e6489fcf8ec6ae1b56988da30fe1b677f23b..5cd5bc34b6036bade70afe485349b330e78ae050 100644 (file)
@@ -120,6 +120,7 @@ enum LyXRCTags {
        RC_SHOW_BANNER,
        RC_WHEEL_JUMP,
        RC_CONVERTER,
+       RC_COPIER,
        RC_VIEWER,
        RC_FORMAT,
        RC_DEFAULT_LANGUAGE,
@@ -131,6 +132,7 @@ enum LyXRCTags {
        RC_USE_SPELL_LIB,
        RC_USER_NAME,
        RC_USER_EMAIL,
+       RC_INDEX_COMMAND,
        RC_LAST
 };
 
@@ -209,6 +211,8 @@ public:
        std::string chktex_command;
        /// command to run bibtex incl. options
        std::string bibtex_command;
+       /// command to run makeindex incl. options or other index programs
+       std::string index_command;
        ///
        std::string document_path;
        ///
@@ -378,10 +382,10 @@ public:
  *  having to expose lyxrc.h.
  */
 class LyXRC_PreviewStatus {
-        LyXRC::PreviewStatus val_;
+       LyXRC::PreviewStatus val_;
 public:
        LyXRC_PreviewStatus(LyXRC::PreviewStatus val) : val_(val) {}
-        operator LyXRC::PreviewStatus() const{ return val_; }
+       operator LyXRC::PreviewStatus() const{ return val_; }
 };