mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
d32d0cbb95
inserting characters in insets (forced font change) which does not work as the method seems not to be called. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2366 a592a061-630c-0410-9148-cb99ea01b6c8
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
/* 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");
|
|
}
|
|
|
|
|
|
InsetMarginal::InsetMarginal(InsetMarginal const & in, bool same_id)
|
|
: InsetFootlike(in, same_id)
|
|
{
|
|
setLabel(_("margin"));
|
|
setInsetName("Marginal");
|
|
}
|
|
|
|
|
|
Inset * InsetMarginal::clone(Buffer const &, bool same_id) const
|
|
{
|
|
return new InsetMarginal(*const_cast<InsetMarginal *>(this), same_id);
|
|
}
|
|
|
|
|
|
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;
|
|
}
|