]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / OutputParams.h
index f0c06dc846461194837bc65f1b4f02e6eeb85381..1abbfe8dc776c29e45a6eb16d4be77f1130ac7af 100644 (file)
@@ -25,6 +25,7 @@ namespace lyx {
 class Encoding;
 class ExportData;
 class Font;
+class Language;
 
 
 class OutputParams {
@@ -33,7 +34,9 @@ public:
                LATEX,
                PDFLATEX,
                XETEX,
-               XML
+               XML,
+               HTML,
+               TEXT
        };
 
        enum TableCell {
@@ -75,6 +78,14 @@ public:
        */
        bool intitle;
 
+       /** inulemcmd == true means that the environment in which the
+           inset is typeset is part of a ulem command (\uline, \uuline,
+           \uwave, or \sout). Insets that output latex commands relying
+           on local assignments (such as \cite) should enclose such
+           commands in \mbox{} in order to avoid breakage.
+       */
+       mutable bool inulemcmd;
+
        /** the font at the point where the inset is
         */
        Font const * local_font;
@@ -83,6 +94,10 @@ public:
         */
        mutable std::string document_language;
 
+       /** The master language. Non-null only for child documents.
+        */
+       mutable Language const * master_language;
+
        /** Current stream encoding. Only used for LaTeX.
            This must be set to the document encoding (via the constructor)
            before output starts. Afterwards it must be kept up to date for
@@ -119,7 +134,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;
 
@@ -152,6 +175,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.
          */
@@ -182,6 +210,12 @@ public:
        bool dryrun;
        /// Should we output verbatim or escape LaTeX's special chars?
        bool verbatim;
+       /// Should we output captions?
+       bool html_disable_captions;
+       /// Are we already in a paragraph?
+       bool html_in_par;
+       /// Does the present context even permit paragraphs?
+       bool html_make_pars;
 };