X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.h;h=d5610b746a0344a18d1cf551d5c72e91a3988e8f;hb=96dea61f22c04529e726cab36acf0240d41fa778;hp=5c10dfad77562262a12072fa7ba9a95d74f4d619;hpb=00e305c9d9bd8b0ff54b6c58adb6192d5934ed60;p=lyx.git diff --git a/src/insets/InsetBox.h b/src/insets/InsetBox.h index 5c10dfad77..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,31 +14,34 @@ #ifndef INSETBOX_H #define INSETBOX_H -#include "InsetCollapsable.h" -#include "LyXLength.h" -#include "MailInset.h" +#include "InsetCollapsible.h" +#include "Length.h" namespace lyx { -class InsetBoxParams { +class InsetBoxParams +{ public: /// InsetBoxParams(std::string const &); /// void write(std::ostream & os) const; /// - void read(LyXLex & lex); + 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; /// - LyXLength width; - /// "special" widths, see usrguide.dvi §3.5 + Length width; + /// "special" widths, see usrguide.dvi §3.5 std::string special; /// char pos; @@ -46,104 +50,125 @@ public: /// char inner_pos; /// - LyXLength height; + 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: /// - InsetBox(BufferParams const &, std::string const &); + enum BoxType { + Frameless, + Boxed, + Framed, + ovalbox, + Ovalbox, + Shadowbox, + Shaded, + Doublebox + }; /// - ~InsetBox(); + InsetBox(Buffer *, std::string const &); + /// - virtual docstring const editMessage() const; + static std::string params2string(InsetBoxParams const &); /// - InsetBase::Code lyxCode() const { return InsetBase::BOX_CODE; } + static void string2params(std::string const &, InsetBoxParams &); /// - void write(Buffer const &, std::ostream &) const; + InsetBoxParams const & params() const { return params_; } + + /// \name Public functions inherited from Inset class + //@{ /// - void read(Buffer const & buf, LyXLex & lex); + InsetCode lyxCode() const { return BOX_CODE; } /// - void setButtonLabel(); + docstring layoutName() const; /// - bool metrics(MetricsInfo &, Dimension &) const; - /// show the Box dialog - bool showInsetDialog(BufferView * bv) const; + void write(std::ostream &) const; /// - bool display() const { return false; } + void read(Lexer & lex); /// - bool forceDefaultParagraphs(idx_type) const; + void metrics(MetricsInfo &, Dimension &) const; /// - bool neverIndent(Buffer const &) const { return true; } + DisplayType display() const { return Inline; } /// - bool noFontChange() const { return true; } + ColorCode backgroundColor(PainterInfo const &) const; /// - int latex(Buffer const &, odocstream &, OutputParams const &) const; + LyXAlignment contentAlignment() const; /// - int plaintext(Buffer const &, odocstream &, OutputParams const &) const; + bool allowParagraphCustomization(idx_type = 0) const { return !forcePlainLayout(); } /// - int docbook(Buffer const &, odocstream &, OutputParams const &) const; + bool allowMultiPar() const; /// - void validate(LaTeXFeatures &) const; + bool forcePlainLayout(idx_type = 0) const; /// - InsetBoxParams const & params() const { return params_; } + bool neverIndent() const { return true; } /// - bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const; + bool inheritFont() const { return false; } /// - enum BoxType { - Frameless, - Boxed, - ovalbox, - Ovalbox, - Shadowbox, - Doublebox - }; -protected: - InsetBox(InsetBox const &); - virtual void doDispatch(LCursor & cur, FuncRequest & cmd); - /// Is the width forced to some value? - virtual bool hasFixedWidth() const; -private: - friend class InsetBoxParams; - - virtual std::auto_ptr doClone() const; - - /// used by the constructors - void init(); + void latex(otexstream &, OutputParams const &) const; /// - InsetBoxParams params_; -}; - - -class InsetBoxMailer : public MailInset { -public: + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// - InsetBoxMailer(InsetBox & inset); + int docbook(odocstream &, OutputParams const &) const; /// - virtual InsetBase & inset() const { return inset_; } + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - virtual std::string const & name() const { return name_; } + void validate(LaTeXFeatures &) const; /// - virtual std::string const inset2string(Buffer const &) const; + bool hasFixedWidth() const; /// - static std::string const params2string(InsetBoxParams const &); + std::string contextMenuName() const; + //@} + + /// \name Public functions inherited from InsetCollapsible class + //@{ /// - static void string2params(std::string const &, InsetBoxParams &); + void setButtonLabel(); + //@} -private: +protected: + /// \name Protected functions inherited from Inset class + //@{ /// - static std::string const name_; + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - InsetBox & inset_; -}; + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// + Inset * clone() const { return new InsetBox(*this); } + //@} + +private: + /// used by the constructors + void init(); + /// + friend class InsetBoxParams; + InsetBoxParams params_; +}; } // namespace lyx -#endif // INSET_BOX_H +#endif // INSETBOX_H