X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.h;h=d5610b746a0344a18d1cf551d5c72e91a3988e8f;hb=96dea61f22c04529e726cab36acf0240d41fa778;hp=4f207c28a832dbcb370ab9bc3afb1f932081285c;hpb=f2cd36e8ad344700f5bdb6457fdb7220b3904176;p=lyx.git diff --git a/src/insets/InsetBox.h b/src/insets/InsetBox.h index 4f207c28a8..d5610b746a 100644 --- a/src/insets/InsetBox.h +++ b/src/insets/InsetBox.h @@ -6,6 +6,7 @@ * * \author Angus Leeming * \author Martin Vermeer + * \author Uwe Stöhr * * Full author contact details are available in file CREDITS. */ @@ -13,14 +14,14 @@ #ifndef INSETBOX_H #define INSETBOX_H -#include "InsetCollapsable.h" +#include "InsetCollapsible.h" #include "Length.h" -#include "MailInset.h" namespace lyx { -class InsetBoxParams { +class InsetBoxParams +{ public: /// InsetBoxParams(std::string const &); @@ -28,16 +29,19 @@ public: void write(std::ostream & os) const; /// void read(Lexer & lex); + /// std::string type; - /// Use a parbox (true) or minipage (false) + /// Is there a parbox? bool use_parbox; + /// Is there a makebox? + bool use_makebox; /// Do we have an inner parbox or minipage to format paragraphs to /// columnwidth? bool inner_box; /// Length width; - /// "special" widths, see usrguide.dvi §3.5 + /// "special" widths, see usrguide.dvi §3.5 std::string special; /// char pos; @@ -49,13 +53,29 @@ public: Length height; /// std::string height_special; + /// + Length thickness; + /// + Length separation; + /// + Length shadowsize; + /// + std::string framecolor; + /// + std::string backgroundcolor; }; -/** The fbox/fancybox inset -*/ -class InsetBox : public InsetCollapsable { +/////////////////////////////////////////////////////////////////////// +// +// The fbox/fancybox inset +// +/////////////////////////////////////////////////////////////////////// + + +class InsetBox : public InsetCollapsible +{ public: /// enum BoxType { @@ -69,89 +89,86 @@ public: Doublebox }; /// - InsetBox(Buffer const &, std::string const &); + InsetBox(Buffer *, std::string const &); + /// - ~InsetBox(); -private: + static std::string params2string(InsetBoxParams const &); /// - friend class InsetBoxParams; - friend class InsetBoxMailer; + static void string2params(std::string const &, InsetBoxParams &); /// - docstring editMessage() const; + InsetBoxParams const & params() const { return params_; } + + /// \name Public functions inherited from Inset class + //@{ /// InsetCode lyxCode() const { return BOX_CODE; } /// - docstring name() const; + docstring layoutName() const; /// void write(std::ostream &) const; /// void read(Lexer & lex); /// - void setButtonLabel(); - /// void metrics(MetricsInfo &, Dimension &) const; - /// show the Box dialog - bool showInsetDialog(BufferView * bv) const; /// DisplayType display() const { return Inline; } /// - virtual bool allowParagraphCustomization(idx_type = 0) - { return forceEmptyLayout(); } + ColorCode backgroundColor(PainterInfo const &) const; + /// + LyXAlignment contentAlignment() const; + /// + bool allowParagraphCustomization(idx_type = 0) const { return !forcePlainLayout(); } /// - virtual bool forceEmptyLayout(idx_type = 0) const; + bool allowMultiPar() const; + /// + bool forcePlainLayout(idx_type = 0) const; /// bool neverIndent() const { return true; } /// - bool noFontChange() const { return true; } + bool inheritFont() const { return false; } /// - int latex(odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// int docbook(odocstream &, OutputParams const &) const; /// - void validate(LaTeXFeatures &) const; - /// - InsetBoxParams const & params() const { return params_; } + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; + void validate(LaTeXFeatures &) const; /// - void doDispatch(Cursor & cur, FuncRequest & cmd); - /// Is the width forced to some value? bool hasFixedWidth() const; /// - Inset * clone() const { return new InsetBox(*this); } - /// used by the constructors - void init(); + std::string contextMenuName() const; + //@} + /// \name Public functions inherited from InsetCollapsible class + //@{ /// - InsetBoxParams params_; -}; - + void setButtonLabel(); + //@} -class InsetBoxMailer : public MailInset { -public: - /// - InsetBoxMailer(InsetBox & inset); - /// - virtual Inset & inset() const { return inset_; } - /// - virtual std::string const & name() const { return name_; } +protected: + /// \name Protected functions inherited from Inset class + //@{ /// - virtual std::string const inset2string(Buffer const &) const; + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - static std::string const params2string(InsetBoxParams const &); + void doDispatch(Cursor & cur, FuncRequest & cmd); /// - static void string2params(std::string const &, InsetBoxParams &); + Inset * clone() const { return new InsetBox(*this); } + //@} private: + /// used by the constructors + void init(); + /// - static std::string const name_; - /// - InsetBox & inset_; + friend class InsetBoxParams; + InsetBoxParams params_; }; - } // namespace lyx -#endif // INSET_BOX_H +#endif // INSETBOX_H