lyx_mirror/src/insets/insetmarginal.C

51 lines
916 B
C++
Raw Normal View History

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1998 The LyX Team.
*
* ======================================================
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#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"
InsetMarginal::InsetMarginal()
: InsetFootlike()
{
setLabel(_("margin"));
setInsetName("Marginal");
}
string const InsetMarginal::editMessage() const
{
return _("Opened Marginal Note Inset");
}
int InsetMarginal::latex(Buffer const * buf,
std::ostream & os, bool fragile, bool fp) const
{
os << "%\n\\marginpar{";
int const i = inset.latex(buf, os, fragile, fp);
os << "%\n}";
return i + 2;
}