X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlist.h;h=ea9b1db588596e90d5ae1d8d0443542eaa4a18b4;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=a8e1a27c0f129374db548c725988ba1c4a2eb37e;hpb=ee16c6dfc0268060144dd4de0d40d43d2b25622c;p=lyx.git diff --git a/src/insets/insetlist.h b/src/insets/insetlist.h index a8e1a27c0f..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