lyx_mirror/src/insets/insetfoot.C
Jürgen Vigna b3e20a15e7 Various updates for insets mostly regarding fixes for text-insets.
Added a new BaseClass InsetCollapsable and changed InsetERT to this
new BaseClass, also added a footnote-inset.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@591 a592a061-630c-0410-9148-cb99ea01b6c8
2000-03-08 13:52:57 +00:00

115 lines
2.0 KiB
C

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright (C) 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 "lyxscreen.h"
#include "Painter.h"
InsetFoot::InsetFoot(Buffer * bf): InsetCollapsable(bf)
{
setLabel(_("foot"));
LyXFont font(LyXFont::ALL_SANE);
font.decSize();
font.decSize();
font.setColor(LColor::footnote);
setLabelFont(font);
setAutoCollapse(false);
}
InsetFoot * InsetFoot::Clone() const
{
InsetFoot * result = new InsetFoot(buffer);
return result;
}
const char * InsetFoot::EditMessage() const
{
return _("Opened Footnote Inset");
}
#ifndef USE_OSTREAM_ONLY
int InsetFoot::Latex(string & l, signed char fragile) const
{
int i;
if (fragile)
l += "\\footnotetext{";
else
l += "\\footnote{";
i = InsetText::Latex(l, fragile);
l += "}";
return i;
}
#endif
int InsetFoot::Latex(ostream & os, signed char fragile) const
{
int i;
if (fragile)
os << "\\footnotetext{";
else
os << "\\footnote{";
i = InsetText::Latex(os, fragile);
os << "}";
return i;
}
void InsetFoot::Write(ostream & os) const
{
os << "Foot\n";
os << "\ncollapsed ";
if (display())
os << "false";
else
os << "true";
os << "\n";
WriteParagraphData(os);
}
void InsetFoot::Read(LyXLex & lex)
{
if (lex.IsOK()) {
string token, tmptok;
lex.next();
token = lex.GetString();
if (token == "collapsed") {
lex.next();
collapsed = lex.GetBool();
}
}
InsetText::Read(lex);
}
bool InsetFoot::InsertInset(BufferView *bv, Inset * inset)
{
if ((inset->LyxCode() == Inset::FOOT_CODE) ||
(inset->LyxCode() == Inset::MARGIN_CODE)) {
return false;
}
return InsetText::InsertInset(bv, inset);
}