mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2bd998c29e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19498 a592a061-630c-0410-9148-cb99ea01b6c8
87 lines
1.6 KiB
C++
87 lines
1.6 KiB
C++
/**
|
|
* \file InsetMarginal.cpp
|
|
* 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 "Buffer.h"
|
|
#include "gettext.h"
|
|
#include "OutputParams.h"
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using std::string;
|
|
using std::auto_ptr;
|
|
using std::ostream;
|
|
|
|
|
|
InsetMarginal::InsetMarginal(BufferParams const & bp)
|
|
: InsetFootlike(bp)
|
|
{
|
|
setLayout(bp);
|
|
}
|
|
|
|
|
|
InsetMarginal::InsetMarginal(InsetMarginal const & in)
|
|
: InsetFootlike(in)
|
|
{}
|
|
|
|
|
|
auto_ptr<Inset> InsetMarginal::doClone() const
|
|
{
|
|
return auto_ptr<Inset>(new InsetMarginal(*this));
|
|
}
|
|
|
|
|
|
docstring const InsetMarginal::editMessage() const
|
|
{
|
|
return _("Opened Marginal Note Inset");
|
|
}
|
|
|
|
|
|
int InsetMarginal::latex(Buffer const & buf, odocstream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
os << "%\n\\marginpar{";
|
|
int const i = InsetText::latex(buf, os, runparams);
|
|
os << "%\n}";
|
|
return i + 2;
|
|
}
|
|
|
|
|
|
int InsetMarginal::plaintext(Buffer const & buf, odocstream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
os << '[' << buf.B_("margin") << ":\n";
|
|
InsetText::plaintext(buf, os, runparams);
|
|
os << "\n]";
|
|
|
|
return PLAINTEXT_NEWLINE + 1; // one char on a separate line
|
|
}
|
|
|
|
|
|
int InsetMarginal::docbook(Buffer const & buf, odocstream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
os << "<note role=\"margin\">";
|
|
int const i = InsetText::docbook(buf, os, runparams);
|
|
os << "</note>";
|
|
|
|
return i;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|