X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.h;h=c3cadca668719d91f4aefff88f11a636f8020e88;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=03e0f014892ef51606a709665fab672df1d7a748;hpb=b3e20a15e74bc3a419ed6d01e49dccc11192b205;p=lyx.git diff --git a/src/insets/insetfoot.h b/src/insets/insetfoot.h index 03e0f01489..c3cadca668 100644 --- a/src/insets/insetfoot.h +++ b/src/insets/insetfoot.h @@ -4,7 +4,7 @@ * * LyX, The Document Processor * - * Copyright (C) 1998 The LyX Team. + * Copyright 1998 The LyX Team. * *====================================================== */ @@ -20,7 +20,6 @@ #include "insetcollapsable.h" - class Painter; /** The footnote inset @@ -29,27 +28,25 @@ class Painter; class InsetFoot : public InsetCollapsable { public: /// + explicit InsetFoot(Buffer *); /// ~InsetFoot() {} /// - InsetFoot * InsetFoot::Clone() const; + 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) 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