X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLayout.h;h=c1bbe5c07371afa2b14764d9d6c0dc85de57b493;hb=239b9919ffe28338d789e6dc9122228f77ab77a7;hp=6bad059232ec7f390bc54315094879e3224c8c87;hpb=6c70da4d9eb53451bdf25ba95d1b928631981808;p=lyx.git diff --git a/src/insets/InsetLayout.h b/src/insets/InsetLayout.h index 6bad059232..c1bbe5c073 100644 --- a/src/insets/InsetLayout.h +++ b/src/insets/InsetLayout.h @@ -85,8 +85,17 @@ public: FontInfo labelfont() const { return labelfont_; } /// ColorCode bgcolor() const { return bgcolor_; } + /// + Layout::LaTeXArgMap const & latexargs() const { return latexargs_; } /// - Layout::LaTeXArgMap latexargs() const { return latexargs_; } + Layout::LaTeXArgMap const & postcommandargs() const { return postcommandargs_; } + /// Returns latexargs() + postcommandargs(). + /// But note that it returns a *copy*, not a reference, so do not do + /// anything like: + /// Layout::LaTeXArgMap::iterator it = args().begin(); + /// Layout::LaTeXArgMap::iterator en = args().end(); + /// Those are iterators for different containers. + Layout::LaTeXArgMap args() const; /// unsigned int optArgs() const; /// @@ -99,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_; } @@ -145,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_; } @@ -155,6 +168,8 @@ public: /// bool forceLTR() const { return forceltr_; } /// + bool forceOwnlines() const { return forceownlines_; } + /// bool isInToc() const { return intoc_; } /// bool spellcheck() const { return spellcheck_; } @@ -164,14 +179,20 @@ 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; /// std::string defaultCSSClass() const; /// - std::string defaultCSSLabelClass() const { return defaultCSSClass() + "_label"; } - /// void readArgument(Lexer &); /// docstring name_; @@ -212,6 +233,8 @@ private: /// Language and babel dependent macro definitions needed for this inset docstring babelpreamble_; /// + bool fixedwidthpreambleencoding_; + /// docstring refprefix_; /// mutable std::string htmltag_; @@ -247,6 +270,8 @@ private: /// bool passthru_; /// + docstring passthru_chars_; + /// bool parbreakisnewline_; /// bool freespacing_; @@ -255,6 +280,8 @@ private: /// bool forceltr_; /// + bool forceownlines_; + /// bool needprotect_; /// should the contents be written to TOC strings? bool intoc_; @@ -266,8 +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_; }; ///