X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLayout.h;h=c1bbe5c07371afa2b14764d9d6c0dc85de57b493;hb=83d2c7fa3704a221b143a54b0c78747fbd712504;hp=cf5647dbc39b1132e8719acbf9573b7f15197b18;hpb=cfeddb9293bb1e3b45fe2f118a6ce35e37bbebf3;p=lyx.git diff --git a/src/insets/InsetLayout.h b/src/insets/InsetLayout.h index cf5647dbc3..c1bbe5c073 100644 --- a/src/insets/InsetLayout.h +++ b/src/insets/InsetLayout.h @@ -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_; } @@ -177,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; @@ -223,6 +233,8 @@ private: /// Language and babel dependent macro definitions needed for this inset docstring babelpreamble_; /// + bool fixedwidthpreambleencoding_; + /// docstring refprefix_; /// mutable std::string htmltag_; @@ -258,6 +270,8 @@ private: /// bool passthru_; /// + docstring passthru_chars_; + /// bool parbreakisnewline_; /// bool freespacing_; @@ -288,6 +302,12 @@ private: Layout::LaTeXArgMap latexargs_; /// Layout::LaTeXArgMap postcommandargs_; + /// + bool add_to_toc_; + /// + std::string toc_type_; + /// + bool is_toc_caption_; }; ///