]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
Circumvent odd stmary font metrics (part of #9990).
[lyx.git] / src / insets / InsetLayout.h
index 9589fadd5e13c6f8c29900e0d7f2c06b7e3140da..c1bbe5c07371afa2b14764d9d6c0dc85de57b493 100644 (file)
@@ -181,6 +181,12 @@ public:
        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;
@@ -296,6 +302,12 @@ private:
        Layout::LaTeXArgMap latexargs_;
        ///
        Layout::LaTeXArgMap postcommandargs_;
+       ///
+       bool add_to_toc_;
+       ///
+       std::string toc_type_;
+       ///
+       bool is_toc_caption_;
 };
 
 ///