]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetfoot.h
index 0f417281d1561761b227b0773c3772100c98efdc..8c8895d62aaafb128c835873e4fd23f1f52203eb 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 1998 The LyX Team.
 #pragma interface
 #endif
 
-#include "insetcollapsable.h"
-
-class Painter;
+#include "LaTeXFeatures.h"
+#include "insetfootlike.h"
 
 /** The footnote inset
-  
+
 */
-class InsetFoot : public InsetCollapsable {
+class InsetFoot : public InsetFootlike {
 public:
        ///
-       explicit
-       InsetFoot();
-       ///
-       ~InsetFoot() {}
-       ///
-       void Write(Buffer const * buf, std::ostream & os) const;
-       ///
-       Inset * Clone() const;
-       ///
-       Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
+       InsetFoot(BufferParams const &);
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       InsetFoot(InsetFoot const &, bool same_id = false);
        ///
-       const char * EditMessage() const;
+       Inset * clone(Buffer const &, bool same_id = false) 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