X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.h;h=cf0f689ed135b5f3ad294ea3f08d7e589dd7c2d5;hb=90f7007a2e6c78ffd031e4636ff909ab1bc2ddec;hp=52cb776416f6cf0d0c365c2ffa65e2b9d4e8bd61;hpb=7287a259c5436b8f3f384c0d0bd7641a2f2601e9;p=lyx.git diff --git a/src/insets/InsetBox.h b/src/insets/InsetBox.h index 52cb776416..cf0f689ed1 100644 --- a/src/insets/InsetBox.h +++ b/src/insets/InsetBox.h @@ -79,15 +79,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,20 +98,18 @@ private: /// void read(Lexer & lex); /// - void setButtonLabel(); - /// void metrics(MetricsInfo &, Dimension &) const; /// DisplayType display() const { return Inline; } /// + ColorCode backgroundColor(PainterInfo const &) const; + /// bool allowParagraphCustomization(idx_type = 0) const { return !forcePlainLayout(); } /// 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; @@ -123,19 +122,34 @@ private: /// void validate(LaTeXFeatures &) const; /// + bool hasFixedWidth() const; + /// + std::string contextMenuName() const; + //@} + + /// \name Public functions inherited from InsetCollapsable 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(); - /// - std::string contextMenuName() const; /// + friend class InsetBoxParams; InsetBoxParams params_; };