]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Use convert instead of a stream to read LFUN_REPEAT count
[lyx.git] / src / BufferParams.h
index 5083b68ee84c970d502ddb6fd25f08d3abcd4be8..30a157eb6fd93f5d967a8b2fac28f354c0baaaf0 100644 (file)
@@ -280,6 +280,8 @@ public:
        std::string fonts_cjk;
        /// use LaTeX microtype package
        bool use_microtype;
+       /// use font ligatures for en- and em-dashes
+       bool use_dash_ligatures;
        ///
        Spacing & spacing();
        Spacing const & spacing() const;
@@ -378,8 +380,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 use_bibtopic;
+       bool splitbib() const { return use_bibtopic; }
+       /// Set split bibliography
+       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?
@@ -405,7 +413,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;
@@ -552,6 +560,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_;
        ///