]> git.lyx.org Git - features.git/blobdiff - src/BufferParams.h
Make biblio_style private
[features.git] / src / BufferParams.h
index fec76d06c070d2acba7564de7574059103e21b16..29897fd9754f046dd37927204e45f347c0da3638 100644 (file)
@@ -108,6 +108,8 @@ public:
        ///
        InsetQuotesParams::QuoteStyle quotes_style;
        ///
+       bool dynamic_quotes;
+       ///
        std::string fontsize;
        /// Get the LayoutFile this document is using.
        LayoutFile const * baseClass() const;
@@ -460,9 +462,9 @@ public:
        /// the available citation styles
        std::vector<CitationStyle> citeStyles() const;
 
-       /// the default BibTeX style file for the document
-       std::string biblio_style;
-       /// the default BibTeX style file from the TextClass
+       /// 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;
@@ -533,6 +535,8 @@ private:
        LayoutModuleList cite_engine_;
        /// the type of cite engine (authoryear or numerical)
        CiteEngineType cite_engine_type_;
+       /// the default BibTeX style file for the document
+       std::string biblio_style;
        ///
        DocumentClassPtr doc_class_;
        ///