mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
2a5ab60ce8
Some mathed internal renamings to prepare further IU git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7173 a592a061-630c-0410-9148-cb99ea01b6c8
66 lines
1.1 KiB
C
66 lines
1.1 KiB
C
/**
|
|
* \file insetmarginal.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 "insetmarginal.h"
|
|
#include "gettext.h"
|
|
#include "lyxfont.h"
|
|
#include "BufferView.h"
|
|
#include "lyxtext.h"
|
|
#include "insets/insettext.h"
|
|
#include "support/LOstream.h"
|
|
#include "debug.h"
|
|
|
|
|
|
using std::ostream;
|
|
|
|
|
|
InsetMarginal::InsetMarginal(BufferParams const & bp)
|
|
: InsetFootlike(bp)
|
|
{
|
|
setLabel(_("margin"));
|
|
setInsetName("Marginal");
|
|
}
|
|
|
|
|
|
InsetMarginal::InsetMarginal(InsetMarginal const & in)
|
|
: InsetFootlike(in)
|
|
{
|
|
setLabel(_("margin"));
|
|
setInsetName("Marginal");
|
|
}
|
|
|
|
|
|
InsetBase * InsetMarginal::clone() const
|
|
{
|
|
return new InsetMarginal(*this);
|
|
}
|
|
|
|
|
|
string const InsetMarginal::editMessage() const
|
|
{
|
|
return _("Opened Marginal Note Inset");
|
|
}
|
|
|
|
|
|
int InsetMarginal::latex(Buffer const * buf, ostream & os,
|
|
LatexRunParams const & runparams) const
|
|
{
|
|
os << "%\n\\marginpar{";
|
|
|
|
int const i = inset.latex(buf, os, runparams);
|
|
os << "%\n}";
|
|
|
|
return i + 2;
|
|
}
|