lyx_mirror/src/mathed/math_kerninset.C
Lars Gullik Bjønnes 53274e31ec the string -> char patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5725 a592a061-630c-0410-9148-cb99ea01b6c8
2002-11-27 10:30:28 +00:00

56 lines
884 B
C

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "math_kerninset.h"
#include "math_extern.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_support.h"
MathKernInset::MathKernInset()
{}
MathKernInset::MathKernInset(LyXLength const & w)
: wid_(w)
{}
MathKernInset::MathKernInset(string const & s)
: wid_(s)
{}
MathInset * MathKernInset::clone() const
{
return new MathKernInset(*this);
}
void MathKernInset::metrics(MathMetricsInfo & mi) const
{
dim_.w = wid_.inPixels(0, mathed_char_width(mi.base.font, 'M'));
dim_.a = 0;
dim_.d = 0;
}
void MathKernInset::draw(MathPainterInfo &, int, int) const
{}
void MathKernInset::write(WriteStream & os) const
{
os << "\\kern" << wid_.asLatexString() << ' ';
}
void MathKernInset::normalize(NormalStream & os) const
{
os << "[kern " << wid_.asLatexString() << ']';
}