2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_spaceinset.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
#include "math_spaceinset.h"
|
2003-06-02 10:03:27 +00:00
|
|
|
|
#include "math_data.h"
|
2002-05-23 09:21:32 +00:00
|
|
|
|
#include "frontends/Painter.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
|
#include "math_mathmlstream.h"
|
2002-09-20 12:36:36 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2003-09-16 09:01:15 +00:00
|
|
|
|
#include "LColor.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
2002-06-25 13:19:50 +00:00
|
|
|
|
|
2002-03-25 12:11:25 +00:00
|
|
|
|
char const * latex_mathspace[] = {
|
2002-08-15 07:13:21 +00:00
|
|
|
|
"!", "negmedspace", "negthickspace", // negative space
|
|
|
|
|
",", ":", ";", "quad", "qquad", // positive space
|
|
|
|
|
"lyxnegspace", "lyxposspace" // LyX special ("unvisible space")
|
2002-03-25 12:11:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-08-15 07:13:21 +00:00
|
|
|
|
int const nSpace = sizeof(latex_mathspace)/sizeof(char *);
|
2001-08-09 10:48:50 +00:00
|
|
|
|
|
2002-06-25 13:19: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
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2002-06-25 13:19:50 +00:00
|
|
|
|
MathSpaceInset::MathSpaceInset(string const & name)
|
|
|
|
|
: space_(1)
|
|
|
|
|
{
|
2002-12-01 22:59:25 +00:00
|
|
|
|
for (int i = 0; i < nSpace; ++i)
|
|
|
|
|
if (latex_mathspace[i] == name)
|
2002-06-25 13:19:50 +00:00
|
|
|
|
space_ = i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
auto_ptr<InsetBase> MathSpaceInset::clone() const
|
2001-02-13 13:28:32 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new MathSpaceInset(*this));
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void MathSpaceInset::metrics(MetricsInfo &, Dimension & dim) const
|
2001-02-28 11:56:36 +00:00
|
|
|
|
{
|
2002-03-25 12:11:25 +00:00
|
|
|
|
switch (space_) {
|
2003-05-28 13:22:36 +00:00
|
|
|
|
case 0: dim.wid = 6; break;
|
|
|
|
|
case 1: dim.wid = 8; break;
|
|
|
|
|
case 2: dim.wid = 10; break;
|
|
|
|
|
case 3: dim.wid = 6; break;
|
|
|
|
|
case 4: dim.wid = 8; break;
|
|
|
|
|
case 5: dim.wid = 10; break;
|
|
|
|
|
case 6: dim.wid = 20; break;
|
|
|
|
|
case 7: dim.wid = 40; break;
|
|
|
|
|
case 8: dim.wid = -2; break;
|
|
|
|
|
case 9: dim.wid = 2; break;
|
|
|
|
|
default: dim.wid = 6;
|
2002-03-25 12:11:25 +00:00
|
|
|
|
}
|
2003-05-28 13:22:36 +00:00
|
|
|
|
dim.asc = 4;
|
|
|
|
|
dim.des = 0;
|
2001-02-28 11:56:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void MathSpaceInset::draw(PainterInfo & pi, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
|
// Sadly, HP-UX CC can't handle that kind of initialization.
|
2002-03-25 12:11:25 +00:00
|
|
|
|
// XPoint p[4] = {{++x, y-3}, {x, y}, {x+width-2, y}, {x+width-2, y-3}};
|
2002-08-15 07:13:21 +00:00
|
|
|
|
if (space_ >= nSpace - 2)
|
2002-03-25 12:11:25 +00:00
|
|
|
|
return;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
|
int xp[4];
|
|
|
|
|
int yp[4];
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2003-05-28 13:22:36 +00:00
|
|
|
|
xp[0] = ++x; yp[0] = y - 3;
|
|
|
|
|
xp[1] = x; yp[1] = y;
|
|
|
|
|
xp[2] = x + pi.width - 2; yp[2] = y;
|
|
|
|
|
xp[3] = x + pi.width - 2; yp[3] = y - 3;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2002-08-15 07:13:21 +00:00
|
|
|
|
pi.pain.lines(xp, yp, 4, (space_ < 3) ? LColor::latex : LColor::math);
|
2001-10-22 15:37:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-07-25 14:15:05 +00:00
|
|
|
|
void MathSpaceInset::incSpace()
|
2001-02-13 19:10:18 +00:00
|
|
|
|
{
|
2002-08-15 07:13:21 +00:00
|
|
|
|
space_ = (space_ + 1) % (nSpace - 2);
|
2001-02-13 19:10:18 +00:00
|
|
|
|
}
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
2003-03-11 09:25:47 +00:00
|
|
|
|
|
2002-09-20 12:36:36 +00:00
|
|
|
|
void MathSpaceInset::validate(LaTeXFeatures & features) const
|
|
|
|
|
{
|
|
|
|
|
if (space_ >= 0 && space_< nSpace) {
|
|
|
|
|
if ((latex_mathspace[space_] == "negmedspace")
|
|
|
|
|
|| (latex_mathspace[space_] == "negthickspace"))
|
|
|
|
|
features.require("amsmath");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void MathSpaceInset::maple(MapleStream & os) const
|
2001-11-15 14:14:37 +00:00
|
|
|
|
{
|
|
|
|
|
os << ' ';
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void MathSpaceInset::mathematica(MathematicaStream & os) const
|
2002-07-01 11:17:14 +00:00
|
|
|
|
{
|
|
|
|
|
os << ' ';
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void MathSpaceInset::octave(OctaveStream & os) const
|
2001-11-15 14:14:37 +00:00
|
|
|
|
{
|
|
|
|
|
os << ' ';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::normalize(NormalStream & os) const
|
|
|
|
|
{
|
2002-08-22 13:02:14 +00:00
|
|
|
|
os << "[space " << int(space_) << "] ";
|
2001-11-15 14:14:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathSpaceInset::write(WriteStream & os) const
|
|
|
|
|
{
|
2002-08-22 10:04:11 +00:00
|
|
|
|
if (space_ >= 0 && space_ < nSpace) {
|
|
|
|
|
os << '\\' << latex_mathspace[space_];
|
|
|
|
|
os.pendingSpace(true);
|
|
|
|
|
}
|
2001-11-15 14:14:37 +00:00
|
|
|
|
}
|