X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfootlike.h;h=09e24ba4205503b8d9593bf3385ce5db8232f0a8;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=329b80dcbe49acb3b3c2c4c5d1fa40b0b9e99239;hpb=13349032cb4dc8ef44146aa652ff6bbff6698249;p=lyx.git diff --git a/src/insets/insetfootlike.h b/src/insets/insetfootlike.h index 329b80dcbe..09e24ba420 100644 --- a/src/insets/insetfootlike.h +++ b/src/insets/insetfootlike.h @@ -6,37 +6,41 @@ * * \author Lars Gullik Bjønnes * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef INSETFOOTLIKE_H #define INSETFOOTLIKE_H -#ifdef __GNUG__ -#pragma interface -#endif - #include "insetcollapsable.h" -// To have this class is probably a bit overkill... (Lgb) -/** The footnote inset +namespace lyx { + +// To have this class is probably a bit overkill... (Lgb) -*/ +// The footnote inset class InsetFootlike : public InsetCollapsable { public: /// InsetFootlike(BufferParams const &); /// - InsetFootlike(InsetFootlike const &, bool same_id = false); + InsetFootlike(InsetFootlike const &); /// - void write(Buffer const * buf, std::ostream & os) const; + bool metrics(MetricsInfo &, Dimension &) const; /// - bool insetAllowed(Inset::Code) const; + void draw(PainterInfo & pi, int x, int y) const; + /// + void write(Buffer const & buf, std::ostream & os) 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