lyx_mirror/src/insets/insetfoot.C

74 lines
1.3 KiB
C++
Raw Normal View History

/* 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"
using std::ostream;
using std::endl;
InsetFoot::InsetFoot()
: InsetFootlike()
{
setLabel(_("foot"));
setInsetName("Foot");
}
Inset * InsetFoot::Clone() const
{
InsetFoot * result = new InsetFoot;
result->inset->init(inset);
result->collapsed = collapsed;
return result;
}
char const * InsetFoot::EditMessage() const
{
return _("Opened Footnote Inset");
}
int InsetFoot::Latex(Buffer const * buf,
ostream & os, bool fragile, bool fp) const
{
os << "\\footnote{%\n";
int i = inset->Latex(buf, os, fragile, fp);
os << "}%\n";
return i + 2;
}
bool InsetFoot::InsertInsetAllowed(Inset * in) const
{
if ((in->LyxCode() == Inset::FOOT_CODE) ||
(in->LyxCode() == Inset::MARGIN_CODE)) {
return false;
}
return true;
}