]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
sk.po: layouts + modules
[lyx.git] / src / insets / InsetLayout.h
index 21d11a6f3a5c1ba71d2accd3b8e646d9932168a7..6bad059232ec7f390bc54315094879e3224c8c87 100644 (file)
@@ -15,6 +15,7 @@
 
 #include "ColorCode.h"
 #include "FontInfo.h"
+#include "Layout.h"
 
 #include "support/docstring.h"
 
 namespace lyx {
 
 class Lexer;
-       
+class TextClass;
+
 ///
 class InsetLayout {
 public:
        ///
        InsetLayout();
        ///
-       bool read(Lexer & lexrc);
+       enum InsetDecoration {
+               CLASSIC,
+               MINIMALISTIC,
+               CONGLOMERATE,
+               DEFAULT
+       };
+       ///
+       enum InsetLyXType {
+               NOLYXTYPE,
+               CHARSTYLE,
+               CUSTOM,
+               ELEMENT,
+               END,
+               STANDARD
+       };
+       ///
+       enum InsetLaTeXType {
+               NOLATEXTYPE,
+               COMMAND,
+               ENVIRONMENT,
+               ILT_ERROR
+       };
+       ///
+       bool read(Lexer & lexrc, TextClass const & tclass);
+       ///
+       docstring name() const { return name_; }
+       ///
+       void setName(docstring const & n) { name_ = n; }
+       ///
+       InsetLyXType lyxtype() const { return lyxtype_; }
+       ///
+       docstring labelstring() const { return labelstring_; }
+       ///
+       bool contentaslabel() const { return contentaslabel_; }
+       ///
+       InsetDecoration decoration() const { return decoration_; }
+       ///
+       InsetLaTeXType latextype() const { return latextype_; }
+       ///
+       std::string latexname() const { return latexname_; }
+       ///
+       std::string latexparam() const { return latexparam_; }
        ///
-       docstring name() const { return name_; };
+       docstring leftdelim() const { return leftdelim_; }
        ///
-       std::string lyxtype() const { return lyxtype_; };
+       docstring rightdelim() const { return rightdelim_; }
        ///
-       docstring labelstring() const { return labelstring_; };
+       FontInfo font() const { return font_; }
        ///
-       //FIXME This could be an enum
-       std::string decoration() const { return decoration_; };
+       FontInfo labelfont() const { return labelfont_; }
        ///
-       std::string latextype() const { return latextype_; };
+       ColorCode bgcolor() const { return bgcolor_; }
        ///
-       std::string latexname() const { return latexname_; };
+       Layout::LaTeXArgMap latexargs() const { return latexargs_; }
        ///
-       std::string latexparam() const { return latexparam_; };
+       unsigned int optArgs() const;
        ///
-       FontInfo font() const { return font_; };
+       unsigned int requiredArgs() const;
        ///
-       FontInfo labelfont() const { return labelfont_; };
+       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_; }
        ///
-       ColorCode bgcolor() const { return bgcolor_; };
+       docstring counter() const { return counter_; }
        ///
-       std::string preamble() const { return preamble_; };
+       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_; }
+       /// 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::set<std::string> requires() const { return requires_; };
+       inline std::string htmllabeltag() const { return "span"; }
        ///
-       bool isMultiPar() const { return multipar_; };
+       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_; }
        ///
-       bool isPassThru() const { return passthru_; };
+       std::set<std::string> requires() const { return requires_; }
        ///
-       bool isNeedProtect() const { return needprotect_; };
+       bool isMultiPar() const { return multipar_; }
        ///
-       bool isFreeSpacing() const { return freespacing_; };
+       bool forcePlainLayout() const { return forceplain_; }
        ///
-       bool isKeepEmpty() const { return keepempty_; };
+       bool allowParagraphCustomization() const { return custompars_; }
        ///
-       bool isForceLtr() const { return forceltr_; };
+       bool isPassThru() const { return passthru_; }
+       ///
+       bool parbreakIsNewline() const { return parbreakisnewline_; }
+       ///
+       bool isNeedProtect() const { return needprotect_; }
+       ///
+       bool isFreeSpacing() const { return freespacing_; }
+       ///
+       bool isKeepEmpty() const { return keepempty_; }
+       ///
+       bool forceLTR() const { return forceltr_; }
+       ///
+       bool isInToc() const { return intoc_; }
+       ///
+       bool spellcheck() const { return spellcheck_; }
+       ///
+       bool resetsFont() const { return resetsfont_; }
+       ///
+       bool isDisplay() const { return display_; }
+       ///
+       bool forcelocalfontswitch() const { return forcelocalfontswitch_; }
 private:
        ///
-       docstring name_;
+       void makeDefaultCSS() const;
+       ///
+       std::string defaultCSSClass() const;
+       ///
+       std::string defaultCSSLabelClass() const { return defaultCSSClass() + "_label"; }
        ///
-       std::string lyxtype_;
+       void readArgument(Lexer &);
+       ///
+       docstring name_;
+       /**
+               * This is only used (at present) to decide where to put them on the menus.
+               * Values are 'charstyle', 'custom' (things that by default look like a
+               * footnote), 'element' (docbook), 'standard'.
+               */
+       InsetLyXType lyxtype_;
        ///
        docstring labelstring_;
        ///
-       std::string decoration_;
+       bool contentaslabel_;
        ///
-       std::string latextype_;
+       InsetDecoration decoration_;
+       ///
+       InsetLaTeXType latextype_;
        ///
        std::string latexname_;
        ///
        std::string latexparam_;
        ///
+       docstring leftdelim_;
+       ///
+       docstring rightdelim_;
+       ///
        FontInfo font_;
        ///
        FontInfo labelfont_;
        ///
        ColorCode bgcolor_;
        ///
-       std::string preamble_;
+       docstring counter_;
+       ///
+       docstring preamble_;
+       /// 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_;
+       ///
+       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_;
+       /// 
+       bool custompars_;
+       ///
+       bool forceplain_;
        ///
        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_;
+       ///
+       bool forcelocalfontswitch_;
+       ///
+       Layout::LaTeXArgMap latexargs_;
 };
 
+///
+InsetLayout::InsetLyXType translateLyXType(std::string const & str);
+InsetLayout::InsetDecoration translateDecoration(std::string const & str);
+
 } // namespace lyx
 
 #endif