2000-06-26 18:48:45 +00:00
|
|
|
/* 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 "Painter.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "support/LOstream.h"
|
|
|
|
|
|
|
|
using std::ostream;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
InsetMarginal::InsetMarginal() : InsetCollapsable()
|
|
|
|
{
|
2000-06-28 15:12:29 +00:00
|
|
|
setLabel(_("margin"));
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
|
|
|
font.decSize();
|
|
|
|
font.setColor(LColor::footnote);
|
|
|
|
setLabelFont(font);
|
|
|
|
setAutoCollapse(false);
|
|
|
|
setInsetName("Marginal");
|
2000-06-26 18:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-28 13:35:52 +00:00
|
|
|
void InsetMarginal::Write(Buffer const * buf, ostream & os) const
|
|
|
|
{
|
2000-06-28 15:12:29 +00:00
|
|
|
os << getInsetName() << "\n";
|
|
|
|
InsetCollapsable::Write(buf, os);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-26 18:48:45 +00:00
|
|
|
Inset * InsetMarginal::Clone() const
|
|
|
|
{
|
2000-06-28 15:12:29 +00:00
|
|
|
InsetMarginal * result = new InsetMarginal;
|
|
|
|
result->init(this);
|
|
|
|
|
|
|
|
result->collapsed = collapsed;
|
|
|
|
return result;
|
2000-06-26 18:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char const * InsetMarginal::EditMessage() const
|
|
|
|
{
|
2000-06-28 15:12:29 +00:00
|
|
|
return _("Opened Marginal Note Inset");
|
2000-06-26 18:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMarginal::Latex(Buffer const * buf,
|
|
|
|
ostream & os, bool fragile, bool fp) const
|
|
|
|
{
|
2000-06-28 13:35:52 +00:00
|
|
|
os << "\\marginpar{%\n";
|
2000-06-26 18:48:45 +00:00
|
|
|
|
|
|
|
int i = InsetText::Latex(buf, os, fragile, fp);
|
2000-06-28 13:35:52 +00:00
|
|
|
os << "}%\n";
|
2000-06-26 18:48:45 +00:00
|
|
|
|
|
|
|
return i + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetMarginal::InsertInset(BufferView * bv, Inset * inset)
|
|
|
|
{
|
|
|
|
if (!InsertInsetAllowed(inset))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return InsetText::InsertInset(bv, inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetMarginal::InsertInsetAllowed(Inset * inset) const
|
|
|
|
{
|
|
|
|
if ((inset->LyxCode() == Inset::FOOT_CODE) ||
|
|
|
|
(inset->LyxCode() == Inset::MARGIN_CODE)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont InsetMarginal::GetDrawFont(BufferView * bv,
|
|
|
|
LyXParagraph * p, int pos) const
|
|
|
|
{
|
|
|
|
LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
|
|
|
|
fn.decSize().decSize();
|
|
|
|
return fn;
|
|
|
|
}
|