lyx_mirror/src/mathed/math_notinset.C
Dekel Tsur 2806246e1e Few math fonts improvements (use cmr for uppercase greek, support for
\mathbb)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2647 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-31 21:15:57 +00:00

54 lines
893 B
C

#include "math_notinset.h"
#include "math_parser.h"
#include "support.h"
#include "support/LOstream.h"
using std::ostream;
MathNotInset::MathNotInset()
{}
MathInset * MathNotInset::clone() const
{
return new MathNotInset(*this);
}
void MathNotInset::write(ostream & os, bool /* fragile */) const
{
os << "\\not ";
}
void MathNotInset::writeNormal(ostream & os) const
{
os << "[not] ";
}
void MathNotInset::metrics(MathStyles st) const
{
size(st);
if (math_font_available(LM_TC_CMSY))
mathed_char_dim(LM_TC_CMSY, size_, 54,
ascent_, descent_, width_);
else
mathed_char_dim(LM_TC_VAR, size_, '/',
ascent_, descent_, width_);
width_ = 0;
}
void MathNotInset::draw(Painter & pain, int x, int y) const
{
xo(x);
yo(y);
if (math_font_available(LM_TC_CMSY))
drawChar(pain, LM_TC_CMSY, size_, x, y, 54);
else
drawChar(pain, LM_TC_VAR, size_, x, y, '/');
}