X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfootlike.h;h=09e24ba4205503b8d9593bf3385ce5db8232f0a8;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=12615d57a080ecddf6ad23a31f24a85b98288c13;hpb=50bbb55cb07642f4fa80fa5659de4826609da8f0;p=lyx.git diff --git a/src/insets/insetfootlike.h b/src/insets/insetfootlike.h index 12615d57a0..09e24ba420 100644 --- a/src/insets/insetfootlike.h +++ b/src/insets/insetfootlike.h @@ -14,6 +14,9 @@ #include "insetcollapsable.h" + +namespace lyx { + // To have this class is probably a bit overkill... (Lgb) // The footnote inset @@ -24,17 +27,20 @@ public: /// InsetFootlike(InsetFootlike const &); /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// - void write(Buffer const & buf, std::ostream & os) const; + void draw(PainterInfo & pi, int x, int y) const; /// - bool display() const { return true; } + void write(Buffer const & buf, std::ostream & os) const; /// - bool insetAllowed(InsetOld::Code) const; + bool insetAllowed(InsetBase::Code) const; /** returns true if, when outputing LaTeX, font changes should be closed before generating this inset. This is needed for insets that may contain several paragraphs */ bool noFontChange() const { return true; } }; + +} // namespace lyx + #endif