mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
33868acd2c
inset which should work now quite stable (well better as before anyway ;) There have been especially problems with insets inside insets for which LyX was not prepared, so if you only tried the ERT-inset all should have worked great also before. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@681 a592a061-630c-0410-9148-cb99ea01b6c8
94 lines
1.8 KiB
C
94 lines
1.8 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"
|
|
#include "support/LOstream.h"
|
|
|
|
using std::ostream;
|
|
|
|
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);
|
|
setInsetName("Foot");
|
|
}
|
|
|
|
|
|
Inset * InsetFoot::Clone() const
|
|
{
|
|
InsetFoot * result = new InsetFoot(buffer);
|
|
result->init(buffer, this);
|
|
|
|
result->collapsed = collapsed;
|
|
return result;
|
|
}
|
|
|
|
|
|
char const * InsetFoot::EditMessage() const
|
|
{
|
|
return _("Opened Footnote Inset");
|
|
}
|
|
|
|
|
|
int InsetFoot::Latex(ostream & os, bool fragile, bool fp) const
|
|
{
|
|
if (fragile)
|
|
os << "\\footnote{"; // was footnotemark but that won't work
|
|
else
|
|
os << "\\footnote{";
|
|
|
|
int i = InsetText::Latex(os, fragile, fp);
|
|
os << "}";
|
|
|
|
return i;
|
|
}
|
|
|
|
|
|
bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
|
|
{
|
|
if (!InsertInsetAllowed(inset))
|
|
return false;
|
|
|
|
return InsetText::InsertInset(bv, inset);
|
|
}
|
|
|
|
bool InsetFoot::InsertInsetAllowed(Inset * inset) const
|
|
{
|
|
if ((inset->LyxCode() == Inset::FOOT_CODE) ||
|
|
(inset->LyxCode() == Inset::MARGIN_CODE)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
LyXFont InsetFoot::GetDrawFont(LyXParagraph * par, int pos) const
|
|
{
|
|
LyXFont fn = InsetCollapsable::GetDrawFont(par, pos);
|
|
fn.decSize();
|
|
fn.decSize();
|
|
return fn;
|
|
}
|