2001-02-28 11:56:36 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "math_spaceinset.h"
|
2001-11-08 12:15:12 +00:00
|
|
|
#include "math_support.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "LColor.h"
|
|
|
|
#include "Painter.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2001-02-14 15:00:50 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-08-09 10:48:50 +00:00
|
|
|
|
2001-07-09 10:19:50 +00:00
|
|
|
MathSpaceInset::MathSpaceInset(int sp)
|
|
|
|
: space_(sp)
|
2001-02-13 13:28:32 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * MathSpaceInset::clone() const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return new MathSpaceInset(*this);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
void MathSpaceInset::metrics(MathMetricsInfo const & mi) const
|
2001-02-28 11:56:36 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
width_ = space_ ? space_ * 2 : 2;
|
2001-04-25 15:43:57 +00:00
|
|
|
if (space_ > 3)
|
2001-06-25 00:06:33 +00:00
|
|
|
width_ *= 2;
|
2001-04-25 15:43:57 +00:00
|
|
|
if (space_ == 5)
|
2001-06-25 00:06:33 +00:00
|
|
|
width_ *= 2;
|
2001-07-25 14:15:05 +00:00
|
|
|
width_ += 4;
|
|
|
|
ascent_ = 4;
|
2001-06-25 00:06:33 +00:00
|
|
|
descent_ = 0;
|
2001-02-28 11:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
void MathSpaceInset::draw(Painter & pain, int x, int y) const
|
|
|
|
{
|
|
|
|
|
|
|
|
// XPoint p[4] = {{++x, y-3}, {x, y}, {x+width-2, y}, {x+width-2, y-3}};
|
|
|
|
|
|
|
|
// Sadly, HP-UX CC can't handle that kind of initialization.
|
|
|
|
|
|
|
|
int xp[4];
|
|
|
|
int yp[4];
|
|
|
|
|
|
|
|
xp[0] = ++x; yp[0] = y - 3;
|
|
|
|
xp[1] = x; yp[1] = y;
|
|
|
|
xp[2] = x + width_ - 2; yp[2] = y;
|
|
|
|
xp[3] = x + width_ - 2; yp[3] = y - 3;
|
|
|
|
|
|
|
|
pain.lines(xp, yp, 4, space_ ? LColor::latex : LColor::math);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-25 14:15:05 +00:00
|
|
|
void MathSpaceInset::incSpace()
|
2001-02-13 19:10:18 +00:00
|
|
|
{
|
2001-07-25 14:15:05 +00:00
|
|
|
space_ = (space_ + 1) % 6;
|
2001-02-13 19:10:18 +00:00
|
|
|
}
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::maplize(MapleStream & os) const
|
|
|
|
{
|
|
|
|
os << ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::octavize(OctaveStream & os) const
|
|
|
|
{
|
|
|
|
os << ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[space " << space_ << "] ";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
if (space_ >= 0 && space_ < 6)
|
|
|
|
os << '\\' << latex_mathspace[space_] << ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
|