]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlayout.h
Really fix start_of_appendix output
[lyx.git] / src / lyxlayout.h
index 772d9aeca45e110dc8135b20573c8ed30f4215f2..25d07d90a8fa5dbb87dfba3c49056266bb7e526c 100644 (file)
@@ -65,6 +65,10 @@ public:
        ///
        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_;
        }
@@ -106,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;
        ///
@@ -211,6 +215,10 @@ private:
        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_;
 };