]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
tex2lyx/text.cpp: fix typos
[lyx.git] / src / insets / InsetLayout.h
index b37a0f97b9163c4c03f5e886b3b1705e437bdf5e..4619abcb0a363fe520009af7d7cae1ce7677649b 100644 (file)
@@ -38,6 +38,7 @@ public:
                CONGLOMERATE,
                DEFAULT
        };
+       ///
        enum InsetLyXType {
                NOLYXTYPE,
                CHARSTYLE,
@@ -46,6 +47,7 @@ public:
                END,
                STANDARD
        };
+       ///
        enum InsetLaTeXType {
                NOLATEXTYPE,
                COMMAND,
@@ -63,6 +65,8 @@ public:
        ///
        docstring labelstring() const { return labelstring_; }
        ///
+       bool contentaslabel() const { return contentaslabel_; }
+       ///
        InsetDecoration decoration() const { return decoration_; }
        ///
        InsetLaTeXType latextype() const { return latextype_; }
@@ -78,43 +82,82 @@ public:
        ColorCode bgcolor() const { return bgcolor_; }
        ///
        docstring preamble() const { return preamble_; }
+       /// Get language dependent macro definitions needed for this inset
+       docstring const langpreamble() const { return langpreamble_; }
+       /// Get language and babel dependent macro definitions needed for
+       /// this inset
+       docstring const babelpreamble() const { return babelpreamble_; }
        ///
        docstring counter() const { return counter_; }
-       /// 
+       ///
+       docstring refprefix() const { return refprefix_; }
+       /// The tag enclosing all the material in this inset. Default is "span".
+       std::string const & htmltag() const;
+       /// Additional attributes for inclusion with the start tag. Default (if
+       /// a tag is provided) is: class="name".
+       std::string const & htmlattr() const;
+       /// Tag for individual paragraphs in the inset. Default is none.
        std::string const & htmlinnertag() const { return htmlinnertag_; }
-       /// 
-       std::string const & htmlinnerattr() const { return htmlinnerattr_; }
+       /// Attributes for that tag. Default (if a tag is provided) is: 
+       /// class="name_inner".
+       std::string const & htmlinnerattr() const;
+       /// A label for this environment, possibly including a reference
+       /// to a counter. E.g., for footnote, it might be:
+       ///    \arabic{footnote}
+       /// No default.
+       /// FIXME Could we get this from the layout?
+       std::string const & htmllabel() const { return htmllabel_; }
        ///
-       std::string const & htmltag() const { return htmltag_; }
-       /// 
-       std::string const & htmlattr() const { return htmlattr_; }
+       inline std::string htmllabeltag() const { return "span"; }
        ///
-       std::string const & htmllabel() const { return htmllabel_; }
-       /// 
-       docstring htmlstyle() const { return htmlstyle_; }
-       /// 
+       std::string htmllabelattr() const 
+               { return "class=\"" + defaultCSSClass() + "_label\""; }
+       /// CSS associated with this inset.
+       docstring htmlstyle() const;
+       /// Additional material for the header.
        docstring htmlpreamble() const { return htmlpreamble_; }
+       /// Whether this inset represents a "block" of material, i.e., a set
+       /// of paragraphs of its own (true), or should be run into the previous
+       /// paragraph (false). Examples:
+       ///   For branches, this is false.
+       ///   For footnotes, this is true.
+       /// Defaults to true.
+       bool htmlisblock() const { return htmlisblock_; }
        ///
-       std::set<std::string> requires() const { return requires_; };
+       std::set<std::string> requires() const { return requires_; }
        ///
-       bool isMultiPar() const { return multipar_; };
+       bool isMultiPar() const { return multipar_; }
        ///
        bool forcePlainLayout() const { return forceplain_; }
        ///
        bool allowParagraphCustomization() const { return custompars_; }
        ///
-       bool isPassThru() const { return passthru_; };
+       bool isPassThru() const { return passthru_; }
+       ///
+       bool parbreakIsNewline() const { return parbreakisnewline_; }
+       ///
+       bool isNeedProtect() const { return needprotect_; }
+       ///
+       bool isFreeSpacing() const { return freespacing_; }
        ///
-       bool isNeedProtect() const { return needprotect_; };
+       bool isKeepEmpty() const { return keepempty_; }
        ///
-       bool isFreeSpacing() const { return freespacing_; };
+       bool forceLTR() const { return forceltr_; }
        ///
-       bool isKeepEmpty() const { return keepempty_; };
+       bool isInToc() const { return intoc_; }
        ///
-       bool forceLTR() const { return forceltr_; };
+       bool spellcheck() const { return spellcheck_; }
        ///
-       bool isInToc() const { return intoc_; };
+       bool resetsFont() const { return resetsfont_; }
+       ///
+       bool isDisplay() const { return display_; }
 private:
+       ///
+       void makeDefaultCSS() const;
+       ///
+       std::string defaultCSSClass() const;
+       ///
+       std::string defaultCSSLabelClass() const { return defaultCSSClass() + "_label"; }
        ///
        docstring name_;
        /**
@@ -126,6 +169,8 @@ private:
        ///
        docstring labelstring_;
        ///
+       bool contentaslabel_;
+       ///
        InsetDecoration decoration_;
        ///
        InsetLaTeXType latextype_;
@@ -143,21 +188,36 @@ private:
        docstring counter_;
        ///
        docstring preamble_;
-       /// 
-       std::string htmltag_;
-       /// 
-       std::string htmlattr_;
+       /// Language dependent macro definitions needed for this inset
+       docstring langpreamble_;
+       /// Language and babel dependent macro definitions needed for this inset
+       docstring babelpreamble_;
+       ///
+       docstring refprefix_;
+       ///
+       mutable std::string htmltag_;
+       ///
+       mutable std::string htmlattr_;
        ///
        std::string htmlinnertag_;
-       /// 
-       std::string htmlinnerattr_;
+       ///
+       mutable std::string htmlinnerattr_;
        ///
        std::string htmllabel_;
-       /// 
+       ///
        docstring htmlstyle_;
-       /// 
+       /// Cache for default CSS info for this inset.
+       mutable docstring htmldefaultstyle_;
+       /// Cache for default CSS class.
+       mutable std::string defaultcssclass_;
+       /// Whether to force generation of default CSS even if some is given.
+       /// False by default.
+       bool htmlforcecss_;
+       ///
        docstring htmlpreamble_;
        ///
+       bool htmlisblock_;
+       ///
        std::set<std::string> requires_;
        ///
        bool multipar_;
@@ -168,15 +228,23 @@ private:
        ///
        bool passthru_;
        ///
-       bool needprotect_;
+       bool parbreakisnewline_;
        ///
        bool freespacing_;
        ///
        bool keepempty_;
        ///
        bool forceltr_;
+       ///
+       bool needprotect_;
        /// should the contents be written to TOC strings?
        bool intoc_;
+       /// check spelling of this inset?
+       bool spellcheck_;
+       ///
+       bool resetsfont_;
+       ///
+       bool display_;
 };
 
 ///