]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Kornel's gcc compile fix.
[lyx.git] / src / OutputParams.h
index 9ead2167f7a475a8805ddecd9b03bbaf2a537de6..a368f9f81daabcf3c98054d89ffc5a5ef04b9443 100644 (file)
@@ -127,7 +127,15 @@ public:
        */
        bool use_japanese;
 
-       /** Line length to use with plaintext export.
+       /** Customized bibtex_command
+       */
+       mutable std::string bibtex_command;
+
+       /** Customized index_command
+       */
+       mutable std::string index_command;
+
+       /** Line length to use with plaintext or LaTeX export.
        */
        size_type linelen;
 
@@ -160,6 +168,11 @@ public:
         */
        Float inFloat;
 
+       /** Whether we are inside an index inset.
+        *  ERT needs to know this, due to the active chars.
+        */
+       bool inIndexEntry;
+
        /** Whether we are inside an inset that is logically deleted.
         *  A value > 0 indicates a deleted inset.
          */
@@ -190,6 +203,8 @@ public:
        bool dryrun;
        /// Should we output verbatim or escape LaTeX's special chars?
        bool verbatim;
+       /// Should we output captions? (Used in HTML output.)
+       bool disable_captions;
 };