lyx_mirror/src/insets/insetmarginal.C
Lars Gullik Bjønnes 8ed9dbabde read the Changelog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@885 a592a061-630c-0410-9148-cb99ea01b6c8
2000-07-15 23:51:46 +00:00

74 lines
1.3 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 "insetmarginal.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;
InsetMarginal::InsetMarginal()
: InsetFootlike()
{
setLabel(_("margin"));
setInsetName("Marginal");
}
Inset * InsetMarginal::Clone() const
{
InsetMarginal * result = new InsetMarginal;
result->inset->init(inset);
result->collapsed = collapsed;
return result;
}
char const * InsetMarginal::EditMessage() const
{
return _("Opened Marginal Note Inset");
}
int InsetMarginal::Latex(Buffer const * buf,
ostream & os, bool fragile, bool fp) const
{
os << "\\marginpar{%\n";
int i = inset->Latex(buf, os, fragile, fp);
os << "}%\n";
return i + 2;
}
bool InsetMarginal::InsertInsetAllowed(Inset * in) const
{
if ((in->LyxCode() == Inset::FOOT_CODE) ||
(in->LyxCode() == Inset::MARGIN_CODE)) {
return false;
}
return true;
}