X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.h;h=46caafc48683b3f8e3883e42f7ecf7cf2f33f61d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=0f417281d1561761b227b0773c3772100c98efdc;hpb=ee16c6dfc0268060144dd4de0d40d43d2b25622c;p=lyx.git diff --git a/src/insets/insetfoot.h b/src/insets/insetfoot.h index 0f417281d1..46caafc486 100644 --- a/src/insets/insetfoot.h +++ b/src/insets/insetfoot.h @@ -1,53 +1,47 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor +/** + * \file insetfoot.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * Copyright 1998 The LyX Team. + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - *====================================================== + * Full author contact details are available in file CREDITS. */ -// The pristine updatable inset: Text - #ifndef INSETFOOT_H #define INSETFOOT_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "insetfootlike.h" -#include "insetcollapsable.h" -class Painter; +namespace lyx { /** The footnote inset - + */ -class InsetFoot : public InsetCollapsable { +class InsetFoot : public InsetFootlike { public: /// - explicit - InsetFoot(); - /// - ~InsetFoot() {} - /// - void Write(Buffer const * buf, std::ostream & os) const; + InsetFoot(BufferParams const &); /// - Inset * Clone() const; + InsetBase::Code lyxCode() const { return InsetBase::FOOT_CODE; } /// - Inset::Code LyxCode() const { return Inset::FOOT_CODE; } + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; + int docbook(Buffer const &, odocstream &, + OutputParams const & runparams) const; /// - const char * EditMessage() const; - /// - bool InsertInset(BufferView *, Inset * inset); - /// - bool InsertInsetAllowed(Inset * inset) const; - /// - LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const; + virtual docstring const editMessage() const; +protected: + InsetFoot(InsetFoot const &); +private: + virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif