X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxlayout.h;h=25d07d90a8fa5dbb87dfba3c49056266bb7e526c;hb=530749439472bddf13d9f4ee74ee6184ef76e3f9;hp=adc64f7135ce94005646cb323323c7a783c08ea0;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/lyxlayout.h b/src/lyxlayout.h index adc64f7135..25d07d90a8 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_; } @@ -104,17 +110,17 @@ public: /// Text that dictates the width of the indentation of indented pars std::string parindent; /// - float parskip; + double parskip; /// - float itemsep; + double itemsep; /// - float topsep; + double topsep; /// - float bottomsep; + double bottomsep; /// - float labelbottomsep; + double labelbottomsep; /// - float parsep; + double parsep; /// Spacing spacing; /// @@ -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_; };