]> git.lyx.org Git - lyx.git/blobdiff - src/Layout.h
continue spellchecking after "replace all"
[lyx.git] / src / Layout.h
index 3c1d0847d63a50bfb18a5e27fd81922f83533a28..aeca0f4f83ae7c9b6a84b672704d0aefb61a0fe2 100644 (file)
@@ -108,6 +108,24 @@ public:
        std::string const & labeltag() const { return labeltag_; }
        ///
        std::string const & itemtag() const { return itemtag_; }
+       /// 
+       std::string const & htmltag() const { return htmltag_; }
+       /// 
+       std::string const & htmlattr() const { return htmlattr_; }
+       /// 
+       std::string const & htmlitem() const { return htmlitem_; }
+       /// 
+       std::string const & htmlitemattr() const { return htmlitemattr_; }
+       /// 
+       std::string const & htmllabel() const { return htmllabel_; }
+       /// 
+       std::string const & htmllabelattr() const { return htmllabelattr_; }
+       ///
+       bool htmllabelfirst() const { return htmllabelfirst_; }
+       /// 
+       docstring const & htmlstyle() const { return htmlstyle_; }
+       /// 
+       docstring const & htmlpreamble() const { return htmlpreamble_; }
        ///
        docstring const & labelstring_appendix() const {
                return labelstring_appendix_;
@@ -271,6 +289,36 @@ private:
        std::string labeltag_;
        /// Internal tag to surround the item text in a list)
        std::string itemtag_;
+       /// Tag for HTML output, e.g., h2.
+       std::string htmltag_;
+       /// Additional attributes for inclusion with the start tag, 
+       /// e.g.: class='section'.
+       std::string htmlattr_;
+       /// Tag for individual paragraphs in an environment. In lists, this
+       /// would be something like "li". But it also needs to be set for
+       /// quotation, e.g., since the paragraphs in a quote need to be 
+       /// in "p" tags.
+       std::string htmlitem_;
+       /// Attributes for htmlitem_
+       std::string htmlitemattr_;
+       /// Tag for labels, of whatever sort. One use for this is in setting
+       /// descriptions, in which case it would be: dt. Another use is to
+       /// customize the display of, say, the auto-generated label for 
+       /// sections (in that case, it might be: span).
+       std::string htmllabel_;
+       /// Attributes for the label.
+       std::string htmllabelattr_;
+       /// Whether to put the label before the item, or within the item.
+       /// I.e., do we have (true):
+       ///    <label>...</label><item>...</item>
+       /// or instead (false):
+       ///    <item><label>...</label>...</item>
+       /// The latter is the default.
+       bool htmllabelfirst_;
+       /// CSS information needed by this layout.
+       docstring htmlstyle_;
+       /// Any other info for the HTML header.
+       docstring htmlpreamble_;
        /// This is the `category' for this layout. The following are
        /// recommended basic categories: FrontMatter, BackMatter, MainText,
        /// Section, Starred, List, Theorem.