]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
simplificatons
[lyx.git] / src / insets / insetfoot.h
index 33f3eac1ade37b0414f24a52ba456462bd3d0cc6..2a64b918726127adba50fea8d8cc33cb2d9206a8 100644 (file)
 #pragma interface
 #endif
 
-#include "insetcollapsable.h"
-
-class Painter;
+#include "insetfootlike.h"
 
 /** The footnote inset
   
 */
-class InsetFoot : public InsetCollapsable {
+class InsetFoot : public InsetFootlike {
 public:
        ///
-       explicit
        InsetFoot();
        ///
-       ~InsetFoot() {}
-       ///
-       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;
+       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       const char * EditMessage() const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       bool InsertInset(BufferView *, Inset * inset);
-       ///
-       bool InsertInsetAllowed(Inset * inset) const;
-       ///
-       LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
+       string const editMessage() const;
 };
 
 #endif
+
+
+