]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Remove LyXToolBox
[lyx.git] / src / BufferParams.h
index a09366bb3c8744470080c07f43b705ffaa7c3762..200b6d43963633041af86fceed784b6c3098773e 100644 (file)
@@ -378,10 +378,14 @@ public:
        void use_package(std::string const & p, Package u);
        /// All packages that can be switched on or off
        static std::map<std::string, std::string> const & auto_packages();
+       /// Do we use the bibtopic package?
+       bool useBibtopic() const;
        /// Split bibliography?
-       bool useBibtopic() const { return use_bibtopic && !useBiblatex(); }
+       bool splitbib() const { return use_bibtopic; }
        /// Set split bibliography
-       void bibtopic(bool const b) { use_bibtopic = b; }
+       void splitbib(bool const b) { use_bibtopic = b; }
+       /// Do we have multiple bibliographies (by chapter etc.)?
+       std::string multibib;
        /// Split the index?
        bool use_indices;
        /// Save transient properties?
@@ -407,7 +411,7 @@ public:
        AuthorMap author_map_;
 
        /// the buffer's active font encoding
-       std::string const font_encoding() const;
+       std::string const main_font_encoding() const;
        /// all font encodings requested by the prefs/document/main language.
        /// This does NOT include font encodings required by secondary languages
        std::vector<std::string> const font_encodings() const;