mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f3bff9d5d8
Remove paragraph.h from buffer.h, paragraph_funcs.h. Add paragraph.h to a heap of .C files. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7694 a592a061-630c-0410-9148-cb99ea01b6c8
81 lines
1.5 KiB
C
81 lines
1.5 KiB
C
/**
|
|
* \file insetfoot.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jürgen Vigna
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "insetfoot.h"
|
|
|
|
#include "gettext.h"
|
|
#include "latexrunparams.h"
|
|
// the following are needed just to get the layout of the enclosing
|
|
// paragraph. This seems a bit too much to me (JMarc)
|
|
#include "lyxlayout.h"
|
|
#include "paragraph.h"
|
|
#include "paragraph_funcs.h"
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
using std::auto_ptr;
|
|
using std::ostream;
|
|
|
|
|
|
InsetFoot::InsetFoot(BufferParams const & bp)
|
|
: InsetFootlike(bp)
|
|
{
|
|
setLabel(_("foot"));
|
|
setInsetName("Foot");
|
|
}
|
|
|
|
|
|
InsetFoot::InsetFoot(InsetFoot const & in)
|
|
: InsetFootlike(in)
|
|
{
|
|
setLabel(_("foot"));
|
|
setInsetName("Foot");
|
|
}
|
|
|
|
|
|
auto_ptr<InsetBase> InsetFoot::clone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new InsetFoot(*this));
|
|
}
|
|
|
|
|
|
string const InsetFoot::editMessage() const
|
|
{
|
|
return _("Opened Footnote Inset");
|
|
}
|
|
|
|
|
|
int InsetFoot::latex(Buffer const & buf, ostream & os,
|
|
LatexRunParams const & runparams_in) const
|
|
{
|
|
LatexRunParams runparams = runparams_in;
|
|
runparams.moving_arg |= ownerPar(buf, this).layout()->intitle;
|
|
|
|
os << "%\n\\footnote{";
|
|
|
|
int const i = inset.latex(buf, os, runparams);
|
|
os << "%\n}";
|
|
|
|
return i + 2;
|
|
}
|
|
|
|
|
|
int InsetFoot::docbook(Buffer const & buf, ostream & os, bool mixcont) const
|
|
{
|
|
os << "<footnote>";
|
|
int const i = inset.docbook(buf, os, mixcont);
|
|
os << "</footnote>";
|
|
|
|
return i;
|
|
}
|