]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlayout.h
Bug fix; ensure that all is Ok after the combox is moved with
[lyx.git] / src / lyxlayout.h
index adc64f7135ce94005646cb323323c7a783c08ea0..25452e7a0f37957f8d0a46fa70949af0c60a97e3 100644 (file)
@@ -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., <title></title> 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_;
 };