]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / OutputParams.h
index ddb3482b02c07e0c388b292f96ef849afd1fb394..56e698c873ea0bc5160c04098fae0331ae0a215f 100644 (file)
@@ -102,6 +102,20 @@ public:
        */
        bool intitle;
 
+       /** need_maketitle == true means that the last layout was a title layout
+        * this is to track when \maketitle needs to be output.
+       */
+       mutable bool need_maketitle;
+
+       /** have_maketitle == true means that \maketitle already hase been output.
+       */
+       mutable bool have_maketitle;
+
+       /** inbranch == true means that the environment being typeset
+           is inside an active branch inset.
+       */
+       bool inbranch;
+
        /** inulemcmd > 0 means that the environment in which the
            inset is typeset is part of a ulem command (\uline, \uuline,
            \uwave, \sout  or \xout). Insets that output latex commands relying
@@ -156,6 +170,10 @@ public:
        */
        bool use_polyglossia;
 
+       /** Do we use hyperref?
+       */
+       bool use_hyperref;
+
        /** Are we generating multiple indices?
        */
        bool use_indices;
@@ -172,6 +190,10 @@ public:
        */
        std::string index_command;
 
+       /** Hyperref driver
+       */
+       std::string hyperref_driver;
+
        /** Line length to use with plaintext or LaTeX export.
        */
        size_type linelen;
@@ -265,7 +287,7 @@ public:
        bool isLastPar;
 
 
-       /** whether or not do actual file copying and image conversion
+       /** whether or not to do actual file copying and image conversion
         *  This mode will be used to preview the source code
         */
        bool dryrun;