X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.h;h=d5610b746a0344a18d1cf551d5c72e91a3988e8f;hb=96dea61f22c04529e726cab36acf0240d41fa778;hp=2fb33bf2098dd9c80f6f507fa5c7612474aac5e0;hpb=3f27f951cbc2521edfbf78792839d61306bdb978;p=lyx.git diff --git a/src/insets/InsetBox.h b/src/insets/InsetBox.h index 2fb33bf209..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,7 +14,7 @@ #ifndef INSETBOX_H #define INSETBOX_H -#include "InsetCollapsable.h" +#include "InsetCollapsible.h" #include "Length.h" @@ -52,6 +53,16 @@ public: Length height; /// std::string height_special; + /// + Length thickness; + /// + Length separation; + /// + Length shadowsize; + /// + std::string framecolor; + /// + std::string backgroundcolor; }; @@ -63,7 +74,7 @@ public: /////////////////////////////////////////////////////////////////////// -class InsetBox : public InsetCollapsable +class InsetBox : public InsetCollapsible { public: /// @@ -79,15 +90,16 @@ public: }; /// InsetBox(Buffer *, std::string const &); + /// static std::string params2string(InsetBoxParams const &); /// static void string2params(std::string const &, InsetBoxParams &); /// InsetBoxParams const & params() const { return params_; } -private: - /// - friend class InsetBoxParams; + + /// \name Public functions inherited from Inset class + //@{ /// InsetCode lyxCode() const { return BOX_CODE; } /// @@ -97,25 +109,28 @@ private: /// void read(Lexer & lex); /// - void setButtonLabel(); - /// void metrics(MetricsInfo &, Dimension &) const; /// DisplayType display() const { return Inline; } /// + ColorCode backgroundColor(PainterInfo const &) const; + /// + LyXAlignment contentAlignment() const; + /// bool allowParagraphCustomization(idx_type = 0) const { return !forcePlainLayout(); } /// + bool allowMultiPar() const; + /// bool forcePlainLayout(idx_type = 0) const; /// bool neverIndent() const { return true; } - /** returns false if, when outputing LaTeX, font changes should - be closed before generating this inset. This is needed for - insets that may contain several paragraphs */ + /// bool inheritFont() const { return false; } /// 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; /// @@ -123,19 +138,34 @@ private: /// void validate(LaTeXFeatures &) const; /// + bool hasFixedWidth() const; + /// + std::string contextMenuName() const; + //@} + + /// \name Public functions inherited from InsetCollapsible class + //@{ + /// + void setButtonLabel(); + //@} + +protected: + /// \name Protected functions inherited from Inset class + //@{ + /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// void doDispatch(Cursor & cur, FuncRequest & cmd); - /// Is the width forced to some value? - bool hasFixedWidth() const; /// Inset * clone() const { return new InsetBox(*this); } + //@} + +private: /// used by the constructors void init(); - /// - docstring contextMenuName() const; /// + friend class InsetBoxParams; InsetBoxParams params_; };