X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLayout.h;h=c1bbe5c07371afa2b14764d9d6c0dc85de57b493;hb=83d2c7fa3704a221b143a54b0c78747fbd712504;hp=3fdc17f8cecfb5f5036a77789b821d8cd061db86;hpb=4cd5bcefe9e54468df2454a8f6123526adc50aa0;p=lyx.git diff --git a/src/insets/InsetLayout.h b/src/insets/InsetLayout.h index 3fdc17f8ce..c1bbe5c073 100644 --- a/src/insets/InsetLayout.h +++ b/src/insets/InsetLayout.h @@ -15,6 +15,7 @@ #include "ColorCode.h" #include "FontInfo.h" +#include "Layout.h" #include "support/docstring.h" @@ -75,13 +76,39 @@ public: /// std::string latexparam() const { return latexparam_; } /// + docstring leftdelim() const { return leftdelim_; } + /// + docstring rightdelim() const { return rightdelim_; } + /// FontInfo font() const { return font_; } /// FontInfo labelfont() const { return labelfont_; } /// ColorCode bgcolor() const { return bgcolor_; } + /// + Layout::LaTeXArgMap const & 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; + /// + unsigned int requiredArgs() const; /// docstring preamble() const { return preamble_; } + /// Get language dependent macro definitions needed for this inset + docstring const langpreamble() const { return langpreamble_; } + /// Get language and babel dependent macro definitions needed for + /// this inset + docstring const babelpreamble() const { return babelpreamble_; } + /// + bool fixedwidthpreambleencoding() const { return fixedwidthpreambleencoding_; } /// docstring counter() const { return counter_; } /// @@ -129,6 +156,10 @@ public: /// bool isPassThru() const { return passthru_; } /// + docstring passThruChars() const { return passthru_chars_; } + /// + bool parbreakIsNewline() const { return parbreakisnewline_; } + /// bool isNeedProtect() const { return needprotect_; } /// bool isFreeSpacing() const { return freespacing_; } @@ -137,16 +168,32 @@ public: /// bool forceLTR() const { return forceltr_; } /// + bool forceOwnlines() const { return forceownlines_; } + /// bool isInToc() const { return intoc_; } /// bool spellcheck() const { return spellcheck_; } + /// + bool resetsFont() const { return resetsfont_; } + /// + 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_; /** @@ -168,6 +215,10 @@ private: /// std::string latexparam_; /// + docstring leftdelim_; + /// + docstring rightdelim_; + /// FontInfo font_; /// FontInfo labelfont_; @@ -177,6 +228,12 @@ private: docstring counter_; /// docstring preamble_; + /// Language dependent macro definitions needed for this inset + docstring langpreamble_; + /// Language and babel dependent macro definitions needed for this inset + docstring babelpreamble_; + /// + bool fixedwidthpreambleencoding_; /// docstring refprefix_; /// @@ -213,21 +270,49 @@ private: /// bool passthru_; /// - bool needprotect_; + docstring passthru_chars_; + /// + bool parbreakisnewline_; /// bool freespacing_; /// bool keepempty_; /// bool forceltr_; + /// + bool forceownlines_; + /// + bool needprotect_; /// should the contents be written to TOC strings? bool intoc_; /// check spelling of this inset? bool spellcheck_; + /// + bool resetsfont_; + /// + 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_; }; /// InsetLayout::InsetLyXType translateLyXType(std::string const & str); +InsetLayout::InsetDecoration translateDecoration(std::string const & str); } // namespace lyx