X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.h;h=c3cadca668719d91f4aefff88f11a636f8020e88;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=6a3249ec0985b3ba84c58fef6338d71ecae95c35;hpb=8dbf9d296ef9568328d022b253abc7e2ec190a2d;p=lyx.git diff --git a/src/insets/insetfoot.h b/src/insets/insetfoot.h index 6a3249ec09..c3cadca668 100644 --- a/src/insets/insetfoot.h +++ b/src/insets/insetfoot.h @@ -20,7 +20,6 @@ #include "insetcollapsable.h" - class Painter; /** The footnote inset @@ -29,6 +28,7 @@ class Painter; class InsetFoot : public InsetCollapsable { public: /// + explicit InsetFoot(Buffer *); /// ~InsetFoot() {} @@ -36,20 +36,17 @@ public: Inset * Clone() const; /// Inset::Code LyxCode() const { return Inset::FOOT_CODE; } -#ifndef USE_OSTREAM_ONLY /// - int Latex(string &, signed char) const; -#endif + int Latex(std::ostream &, bool fragile, bool fp) const; /// - int Latex(ostream &, signed char, bool fp) const; + const char * EditMessage() const; /// - void Write(ostream &) const; + bool InsertInset(BufferView *, Inset * inset); /// - void Read(LyXLex &); + bool InsertInsetAllowed(Inset * inset) const; /// - const char * EditMessage() const; + LyXFont GetDrawFont(LyXParagraph * par, int pos) const; /// - bool InsertInset(BufferView *, Inset * inset); }; #endif