lyx_mirror/src/insets/insetmarginal.C
André Pönitz 6c300f72a2 move everything into namespace lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-21 00:16:43 +00:00

78 lines
1.4 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 "paragraph.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)
{
setLabel(_("margin"));
setInsetName("Marginal");
}
InsetMarginal::InsetMarginal(InsetMarginal const & in)
: InsetFootlike(in)
{
setLabel(_("margin"));
setInsetName("Marginal");
}
auto_ptr<InsetBase> InsetMarginal::doClone() const
{
return auto_ptr<InsetBase>(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::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