]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Extend LATEXIFY command param handling and add literal param.
[lyx.git] / src / BufferParams.h
index 29897fd9754f046dd37927204e45f347c0da3638..a09366bb3c8744470080c07f43b705ffaa7c3762 100644 (file)
@@ -379,7 +379,9 @@ public:
        /// All packages that can be switched on or off
        static std::map<std::string, std::string> const & auto_packages();
        /// Split bibliography?
-       bool use_bibtopic;
+       bool useBibtopic() const { return use_bibtopic && !useBiblatex(); }
+       /// Set split bibliography
+       void bibtopic(bool const b) { use_bibtopic = b; }
        /// Split the index?
        bool use_indices;
        /// Save transient properties?
@@ -462,12 +464,27 @@ public:
        /// the available citation styles
        std::vector<CitationStyle> citeStyles() const;
 
+       /// Return the actual bibtex command (lyxrc or buffer param)
+       std::string const bibtexCommand() const;
+
+       /// Are we using biblatex?
+       bool useBiblatex() const;
+
        /// Set the default BibTeX style file for the document
        void setDefaultBiblioStyle(std::string const & s){ biblio_style = s; }
        /// Get the default BibTeX style file from the TextClass
        std::string const & defaultBiblioStyle() const;
        /// whether the BibTeX style supports full author lists
        bool const & fullAuthorList() const;
+       /// Check if a citation style is an alias to another style
+       std::string getCiteAlias(std::string const & s) const;
+
+       /// Options of the bibiography package
+       std::string biblio_opts;
+       /// The biblatex bibliography style
+       std::string biblatex_bibstyle;
+       /// The biblatex citation style
+       std::string biblatex_citestyle;
 
        /// options for pdf output
        PDFOptions & pdfoptions();
@@ -537,6 +554,8 @@ private:
        CiteEngineType cite_engine_type_;
        /// the default BibTeX style file for the document
        std::string biblio_style;
+       /// Split bibliography?
+       bool use_bibtopic;
        ///
        DocumentClassPtr doc_class_;
        ///