lyx_mirror/src/insets/insetfoot.C
Dekel Tsur 88c555f798 Misc. small fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2816 a592a061-630c-0410-9148-cb99ea01b6c8
2001-09-28 20:23:49 +00:00

65 lines
1.1 KiB
C

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1998 The LyX Team.
*
* ======================================================
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "insetfoot.h"
#include "gettext.h"
#include "lyxfont.h"
#include "BufferView.h"
#include "lyxtext.h"
#include "insets/insettext.h"
#include "support/LOstream.h"
#include "debug.h"
InsetFoot::InsetFoot()
: InsetFootlike()
{
setLabel(_("foot"));
setInsetName("Foot");
}
InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
: InsetFootlike(in, same_id)
{
setLabel(_("foot"));
setInsetName("Foot");
}
Inset * InsetFoot::clone(Buffer const &, bool same_id) const
{
return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
}
string const InsetFoot::editMessage() const
{
return _("Opened Footnote Inset");
}
int InsetFoot::latex(Buffer const * buf,
std::ostream & os, bool fragile, bool fp) const
{
os << "%\n\\footnote{";
int const i = inset.latex(buf, os, fragile, fp);
os << "%\n}";
return i + 2;
}