]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_spaceinset.C
fix #1073
[lyx.git] / src / mathed / math_spaceinset.C
index 11a51d9228578183ea1960e5e5bda991b31aea7e..101553962ddc1d857e9a5646fe2f4f600523c5a5 100644 (file)
-#include <config.h>
 
 #include "math_spaceinset.h"
+#include "math_support.h"
 #include "LColor.h"
-#include "Painter.h"
-#include "mathed/support.h"
+#include "frontends/Painter.h"
+#include "math_mathmlstream.h"
+#include "LaTeXFeatures.h"
+#include "debug.h"
 
 
-void MathSpaceInset::Metrics()
-{
-       width = space ? space * 2 : 2;
-       if (space > 3) width *= 2;
-       if (space == 5) width *= 2;
-       width += 4;
-       ascent = 4; descent = 0;
-}
+char const * latex_mathspace[] = {
+       "!", "negmedspace", "negthickspace",  // negative space
+       ",", ":", ";", "quad", "qquad",       // positive space
+       "lyxnegspace", "lyxposspace"          // LyX special ("unvisible space")
+};
+
+int const nSpace = sizeof(latex_mathspace)/sizeof(char *);
+
+
+MathSpaceInset::MathSpaceInset(int sp)
+       : space_(sp)
+{}
 
 
-void MathSpaceInset::SetSpace(int sp)
-{ 
-       space = sp;
-       Metrics();
+MathSpaceInset::MathSpaceInset(string const & name)
+       : space_(1)
+{
+       for (int i = 0; i < nSpace; ++i)
+               if (latex_mathspace[i] == name)
+                       space_ = i;
 }
 
 
-MathSpaceInset::MathSpaceInset(int sp, short ot, short st)
-       : MathedInset("", ot, st), space(sp)
-{}
+
+MathInset * MathSpaceInset::clone() const
+{
+       return new MathSpaceInset(*this);
+}
 
 
-MathedInset * MathSpaceInset::Clone()
+void MathSpaceInset::metrics(MetricsInfo &) const
 {
-       return new MathSpaceInset(space, GetType(), GetStyle());
+       switch (space_) {
+               case 0: dim_.w = 6; break;
+               case 1: dim_.w = 8; break;
+               case 2: dim_.w = 10; break;
+               case 3: dim_.w = 6; break;
+               case 4: dim_.w = 8; break;
+               case 5: dim_.w = 10; break;
+               case 6: dim_.w = 20; break;
+               case 7: dim_.w = 40; break;
+               case 8: dim_.w = -2; break;
+               case 9: dim_.w =  2; break;
+               default: dim_.w = 6;
+       }
+       dim_.a = 4;
+       dim_.d = 0;
 }
 
 
-void
-MathSpaceInset::draw(Painter & pain, int x, int y)
-{ 
-       
-// XPoint p[4] = {{++x, y-3}, {x, y}, {x+width-2, y}, {x+width-2, y-3}};
-       
+void MathSpaceInset::draw(PainterInfo & pi, int x, int y) const
+{
+
 // Sadly, HP-UX CC can't handle that kind of initialization.
-       
+// XPoint p[4] = {{++x, y-3}, {x, y}, {x+width-2, y}, {x+width-2, y-3}};
+       if (space_ >= nSpace - 2)
+               return;
+
        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);
+
+       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;
+
+       pi.pain.lines(xp, yp, 4, (space_ < 3) ? LColor::latex : LColor::math);
+}
+
+
+void MathSpaceInset::incSpace()
+{
+       space_ = (space_ + 1) % (nSpace - 2);
+}
+
+
+void MathSpaceInset::validate(LaTeXFeatures & features) const
+{
+       if (space_ >= 0 && space_< nSpace) {
+               if ((latex_mathspace[space_] == "negmedspace")
+                || (latex_mathspace[space_] == "negthickspace"))
+                       features.require("amsmath");
+       }
+}
+
+
+void MathSpaceInset::maple(MapleStream & os) const
+{
+       os << ' ';
+}
+
+void MathSpaceInset::mathematica(MathematicaStream & os) const
+{
+       os << ' ';
+}
+
+
+void MathSpaceInset::octave(OctaveStream & os) const
+{
+       os << ' ';
+}
+
+
+void MathSpaceInset::normalize(NormalStream & os) const
+{
+       os << "[space " << int(space_) << "] ";
 }
 
 
-void
-MathSpaceInset::Write(ostream & os, bool /* fragile */)
+void MathSpaceInset::write(WriteStream & os) const
 {
-   if (space >= 0 && space < 6) {
-          os << '\\' << latex_mathspace[space] << ' ';
-   }
+       if (space_ >= 0 && space_ < nSpace) {
+               os << '\\' << latex_mathspace[space_];
+               os.pendingSpace(true);
+       }
 }