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