mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
fa492d6bf0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@597 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
1.7 KiB
C
97 lines
1.7 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 "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);
|
|
}
|
|
|
|
|
|
Inset * InsetFoot::Clone() const
|
|
{
|
|
Inset * result = new InsetFoot(buffer);
|
|
return result;
|
|
}
|
|
|
|
|
|
char const * InsetFoot::EditMessage() const
|
|
{
|
|
return _("Opened Footnote Inset");
|
|
}
|
|
|
|
|
|
int InsetFoot::Latex(ostream & os, signed char fragile, bool fp) const
|
|
{
|
|
if (fragile)
|
|
os << "\\footnotetext{";
|
|
else
|
|
os << "\\footnote{";
|
|
|
|
int i = InsetText::Latex(os, fragile, fp);
|
|
os << "}";
|
|
|
|
return i;
|
|
}
|
|
|
|
|
|
void InsetFoot::Write(ostream & os) const
|
|
{
|
|
os << "Foot\n"
|
|
<< "\ncollapsed ";
|
|
if (display())
|
|
os << "false\n";
|
|
else
|
|
os << "true\n";
|
|
WriteParagraphData(os);
|
|
}
|
|
|
|
|
|
void InsetFoot::Read(LyXLex & lex)
|
|
{
|
|
if (lex.IsOK()) {
|
|
lex.next();
|
|
string 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);
|
|
}
|