]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
When selecting special logos, set their color correctly
[lyx.git] / src / insets / InsetLayout.h
index 2ef6be4fdfb30f4a47dde10ebdcb9c7d6dbdf227..c1bbe5c07371afa2b14764d9d6c0dc85de57b493 100644 (file)
@@ -108,6 +108,8 @@ public:
        /// this inset
        docstring const babelpreamble() const { return babelpreamble_; }
        ///
+       bool fixedwidthpreambleencoding() const { return fixedwidthpreambleencoding_; }
+       ///
        docstring counter() const { return counter_; }
        ///
        docstring refprefix() const { return refprefix_; }
@@ -154,6 +156,8 @@ public:
        ///
        bool isPassThru() const { return passthru_; }
        ///
+       docstring passThruChars() const { return passthru_chars_; }
+       ///
        bool parbreakIsNewline() const { return parbreakisnewline_; }
        ///
        bool isNeedProtect() const { return needprotect_; }
@@ -175,6 +179,14 @@ public:
        bool isDisplay() const { return display_; }
        ///
        bool forcelocalfontswitch() const { return forcelocalfontswitch_; }
+       ///
+       docstring const & obsoleted_by() const { return obsoleted_by_; }
+       ///
+       bool addToToc() const { return add_to_toc_; }
+       ///
+       std::string tocType() const { return toc_type_; }
+       ///
+       bool isTocCaption() const { return is_toc_caption_; }
 private:
        ///
        void makeDefaultCSS() const;
@@ -221,6 +233,8 @@ private:
        /// Language and babel dependent macro definitions needed for this inset
        docstring babelpreamble_;
        ///
+       bool fixedwidthpreambleencoding_;
+       ///
        docstring refprefix_;
        ///
        mutable std::string htmltag_;
@@ -256,6 +270,8 @@ private:
        ///
        bool passthru_;
        ///
+       docstring passthru_chars_;
+       ///
        bool parbreakisnewline_;
        ///
        bool freespacing_;
@@ -277,10 +293,21 @@ private:
        bool display_;
        ///
        bool forcelocalfontswitch_;
+       /** Name of an insetlayout that has replaced this insetlayout.
+           This is used to rename an insetlayout, while keeping backward
+           compatibility
+       */
+       docstring obsoleted_by_;
        ///
        Layout::LaTeXArgMap latexargs_;
        ///
        Layout::LaTeXArgMap postcommandargs_;
+       ///
+       bool add_to_toc_;
+       ///
+       std::string toc_type_;
+       ///
+       bool is_toc_caption_;
 };
 
 ///