X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxlayout.h;h=25452e7a0f37957f8d0a46fa70949af0c60a97e3;hb=d68ec289063394f24296ee098f5113e9242f2b0b;hp=adc64f7135ce94005646cb323323c7a783c08ea0;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/lyxlayout.h b/src/lyxlayout.h index adc64f7135..25452e7a0f 100644 --- a/src/lyxlayout.h +++ b/src/lyxlayout.h @@ -63,6 +63,12 @@ public: /// std::string const & latexparam() const { return latexparam_; } /// + std::string const & innertag() const { return innertag_; } + /// + std::string const & labeltag() const { return labeltag_; } + /// + std::string const & itemtag() const { return itemtag_; } + /// std::string const & labelstring_appendix() const { return labelstring_appendix_; } @@ -178,6 +184,8 @@ public: int optionalargs; /// Which counter to step std::string counter; + /// Depth of XML command + int commanddepth; private: /// Name of the layout/paragraph environment @@ -205,6 +213,12 @@ private: std::string labelstring_appendix_; /// LaTeX parameter for environment std::string latexparam_; + /// Internal tag to use (e.g., for sect header) + std::string innertag_; + /// Internal tag to use e.g. to surround varlistentry label) + std::string labeltag_; + /// Internal tag to surround the item text in a list) + std::string itemtag_; /// Macro definitions needed for this layout std::string preamble_; };