X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetmarginal.h;h=09ae022f6e70cf2de77518eb80c1788a7d06743a;hb=3ce727041d6eef7a30ea58d8469ac8042eb20409;hp=6a47bfeb7b51237c175773c87261bbf9b5e90479;hpb=eb7220abe64a6e301c51974fb34bb916ac41d64b;p=lyx.git diff --git a/src/insets/insetmarginal.h b/src/insets/insetmarginal.h index 6a47bfeb7b..09ae022f6e 100644 --- a/src/insets/insetmarginal.h +++ b/src/insets/insetmarginal.h @@ -16,36 +16,21 @@ #pragma interface #endif -#include "insetcollapsable.h" - -class Painter; +#include "insetfootlike.h" /** The marginal note inset */ -class InsetMarginal : public InsetCollapsable { +class InsetMarginal : public InsetFootlike { public: /// - explicit InsetMarginal(); /// - ~InsetMarginal() {} - /// - void Write(Buffer const * buf, std::ostream & os) const; - /// - Inset * Clone() const; - /// - Inset::Code LyxCode() const { return Inset::MARGIN_CODE; } - /// - int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; - /// - const char * EditMessage() const; - /// - bool InsertInset(BufferView *, Inset * inset); + Inset::Code lyxCode() const { return Inset::MARGIN_CODE; } /// - bool InsertInsetAllowed(Inset * inset) const; + int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; /// -// LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const; + string const editMessage() const; }; #endif