2001-02-13 13:28:32 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
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"
|
|
|
|
#include "LColor.h"
|
|
|
|
#include "Painter.h"
|
|
|
|
#include "mathed/support.h"
|
2001-02-14 15:00:50 +00:00
|
|
|
#include "support/LOstream.h"
|
|
|
|
|
|
|
|
using std::ostream;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
MathSpaceInset::MathSpaceInset(int sp, short ot, short st)
|
2001-02-28 11:56:36 +00:00
|
|
|
: MathedInset("", ot, st), space_(sp)
|
2001-02-13 13:28:32 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathedInset * MathSpaceInset::Clone()
|
|
|
|
{
|
2001-02-28 11:56:36 +00:00
|
|
|
return new MathSpaceInset(space_, GetType(), GetStyle());
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
void MathSpaceInset::draw(Painter & pain, int x, int y)
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
pain.lines(xp, yp, 4, (space_) ? LColor::latex : LColor::math);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
void MathSpaceInset::Write(ostream & os, bool /* fragile */)
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-02-28 11:56:36 +00:00
|
|
|
if (space_ >= 0 && space_ < 6) {
|
|
|
|
os << '\\' << latex_mathspace[space_] << ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
void MathSpaceInset::WriteNormal(ostream & os)
|
|
|
|
{
|
2001-04-27 12:35:55 +00:00
|
|
|
os << "[space " << space_ << "] ";
|
2001-04-25 15:43:57 +00:00
|
|
|
}
|
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
|
|
|
|
void MathSpaceInset::Metrics()
|
|
|
|
{
|
|
|
|
width = space_ ? space_ * 2 : 2;
|
2001-04-25 15:43:57 +00:00
|
|
|
if (space_ > 3)
|
|
|
|
width *= 2;
|
|
|
|
if (space_ == 5)
|
|
|
|
width *= 2;
|
2001-02-28 11:56:36 +00:00
|
|
|
width += 4;
|
|
|
|
ascent = 4;
|
|
|
|
descent = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::SetSpace(int sp)
|
|
|
|
{
|
|
|
|
space_ = sp;
|
|
|
|
Metrics();
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
2001-02-13 19:10:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
int MathSpaceInset::GetSpace()
|
|
|
|
{
|
2001-02-28 11:56:36 +00:00
|
|
|
return space_;
|
2001-02-13 19:10:18 +00:00
|
|
|
}
|