2000-03-08 13:52:57 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetfoot.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2000-03-08 13:52:57 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2000-03-08 13:52:57 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSETFOOT_H
|
|
|
|
|
#define INSETFOOT_H
|
|
|
|
|
|
2000-07-04 19:16:35 +00:00
|
|
|
|
#include "insetfootlike.h"
|
2000-03-08 13:52:57 +00:00
|
|
|
|
|
|
|
|
|
/** The footnote inset
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-03-08 13:52:57 +00:00
|
|
|
|
*/
|
2000-07-04 19:16:35 +00:00
|
|
|
|
class InsetFoot : public InsetFootlike {
|
2000-03-08 13:52:57 +00:00
|
|
|
|
public:
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2002-03-03 20:25:07 +00:00
|
|
|
|
InsetFoot(BufferParams const &);
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::Code lyxCode() const { return InsetBase::FOOT_CODE; }
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int latex(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int docbook(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const;
|
2002-04-03 17:44:05 +00:00
|
|
|
|
///
|
2006-09-09 18:52:00 +00:00
|
|
|
|
virtual lyx::docstring const editMessage() const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
protected:
|
|
|
|
|
InsetFoot(InsetFoot const &);
|
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2000-03-08 13:52:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|