]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetlist.h
index a8e1a27c0f129374db548c725988ba1c4a2eb37e..ea9b1db588596e90d5ae1d8d0443542eaa4a18b4 100644 (file)
 
 #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