lyx_mirror/src/mathed/math_dotsinset.C
André Pönitz ff13a3e736 remove symbol_def.h
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2666 a592a061-630c-0410-9148-cb99ea01b6c8
2001-09-03 15:22:55 +00:00

58 lines
1.0 KiB
C

#ifdef __GNUG__
#pragma implementation
#endif
#include "math_dotsinset.h"
#include "mathed/support.h"
#include "support/LOstream.h"
using std::ostream;
MathDotsInset::MathDotsInset(string const & name)
: name_(name)
{}
MathInset * MathDotsInset::clone() const
{
return new MathDotsInset(*this);
}
void MathDotsInset::draw(Painter & pain, int x, int y) const
{
mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
char const c = name_[0];
if (c == 'v' || c == 'd')
++x;
if (c != 'v')
--y;
mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
}
void MathDotsInset::metrics(MathStyles st) const
{
size(st);
mathed_char_dim(LM_TC_VAR, size(), 'M', ascent_, descent_, width_);
switch (name_[0]) {
case 'l': dh_ = 0; break;
case 'c': dh_ = ascent_ / 2; break;
case 'v': width_ /= 2;
case 'd': dh_ = ascent_; break;
}
}
void MathDotsInset::write(ostream & os, bool /* fragile */) const
{
os << '\\' << name_ << ' ';
}
void MathDotsInset::writeNormal(ostream & os) const
{
os << "[" << name_ << "] ";
}