X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlist.h;h=ea9b1db588596e90d5ae1d8d0443542eaa4a18b4;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=342a7f8b28ba57bc4ee162440cfe9853df42cc79;hpb=eb7220abe64a6e301c51974fb34bb916ac41d64b;p=lyx.git diff --git a/src/insets/insetlist.h b/src/insets/insetlist.h index 342a7f8b28..ea9b1db588 100644 --- a/src/insets/insetlist.h +++ b/src/insets/insetlist.h @@ -18,34 +18,21 @@ #include "insetcollapsable.h" -class Painter; - -/** The footnote inset +/** The list inset */ class InsetList : public InsetCollapsable { public: /// - explicit InsetList(); /// - ~InsetList() {} - /// - void Write(Buffer const * buf, std::ostream & os) const; - /// - Inset * Clone() const; - /// - Inset::Code LyxCode() const { return Inset::FOOT_CODE; } - /// - int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; - /// - const char * EditMessage() const; + void write(Buffer const * buf, std::ostream & os) const; /// - bool InsertInset(BufferView *, Inset * inset); + Inset::Code lyxCode() const { return Inset::FOOT_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