]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.C
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_sqrtinset.C
index 1ff4b84c57260b23fe6bdd8609f8cbfb39e5fab0..ccece1e1190e8557a8f3504fda18aa6ca3fd129e 100644 (file)
@@ -1,68 +1,86 @@
-#include <config.h>
+#ifdef __GNUG__
+#pragma implementation
+#endif
 
 #include "math_sqrtinset.h"
-#include "math_iter.h"
+#include "math_mathmlstream.h"
 #include "LColor.h"
 #include "Painter.h"
-#include "support.h"
+#include "textpainter.h"
 
 
-MathSqrtInset::MathSqrtInset(short st)
-       : MathParInset(st, "sqrt", LM_OT_SQRT) {}
+MathSqrtInset::MathSqrtInset()
+       : MathNestInset(1)
+{}
 
 
-MathedInset * MathSqrtInset::Clone()
-{   
-       MathSqrtInset * p = new MathSqrtInset(GetStyle());
-       MathedIter it(array);
-       p->SetData(it.Copy());
-       return p;
+MathInset * MathSqrtInset::clone() const
+{
+       return new MathSqrtInset(*this);
+}
+
+
+void MathSqrtInset::metrics(MathMetricsInfo const & mi) const
+{
+       xcell(0).metrics(mi);
+       ascent_  = xcell(0).ascent()  + 4;
+       descent_ = xcell(0).descent() + 2;
+       width_   = xcell(0).width()   + 12;
+}
+
+
+void MathSqrtInset::draw(Painter & pain, int x, int y) const
+{
+       xcell(0).draw(pain, x + 10, y);
+       int const a = ascent_;
+       int const d = descent_;
+       int xp[4];
+       int yp[4];
+       xp[0] = x + width_; yp[0] = y - a + 1;
+       xp[1] = x + 8;      yp[1] = y - a + 1;
+       xp[2] = x + 5;      yp[2] = y + d - 1;
+       xp[3] = x;          yp[3] = y + (d - a)/2;
+       pain.lines(xp, yp, 4, LColor::math);
 }
 
 
-bool MathSqrtInset::Inside(int x, int y) 
+void MathSqrtInset::metricsT(TextMetricsInfo const & mi) const
 {
-       return x >= xo - hmax
-               && x <= xo + width - hmax
-               && y <= yo + descent
-               && y >= yo - ascent;
+       xcell(0).metricsT(mi);
+       ascent_  = xcell(0).ascent()  + 1;
+       descent_ = xcell(0).descent();
+       width_   = xcell(0).width()   + 2;
 }
 
 
-void
-MathSqrtInset::draw(Painter & pain, int x, int y)
-{ 
-       MathParInset::draw(pain, x + hmax + 2, y); 
-       int h = ascent;
-       int d = descent;
-       int h2 = Height() / 2;
-       int w2 = (Height() > 4 * hmax) ? hmax : hmax / 2; 
-       int xp[4], yp[4];
-       xp[0] = x + hmax + wbody; yp[0] = y - h;
-       xp[1] = x + hmax;         yp[1] = y - h;
-       xp[2] = x + w2;           yp[2] = y + d;
-       xp[3] = x;                yp[3] = y + d - h2;
-       pain.lines(xp, yp, 4, LColor::mathline);
+void MathSqrtInset::drawT(TextPainter & pain, int x, int y) const
+{
+       xcell(0).drawT(pain, x + 2, y);
+       pain.horizontalLine(x + 2, y - xcell(0).ascent(), xcell(0).width(), '_');
+       pain.verticalLine  (x + 1, y - xcell(0).ascent() + 1, xcell(0).height());
+       pain.draw(x, y + xcell(0).descent(), '\\');
+}
+
+
+void MathSqrtInset::write(WriteStream & os) const
+{
+       os << "\\sqrt{" << cell(0) << '}';
+}
+
+
+void MathSqrtInset::normalize(NormalStream & os) const
+{
+       os << "[sqrt " << cell(0) << ']';
 }
 
 
-void
-MathSqrtInset::Metrics()
+void MathSqrtInset::maplize(MapleStream & os) const
 {
-       MathParInset::Metrics();
-       ascent += 4;
-       descent += 2;
-       int a, b;
-       hmax = mathed_char_height(LM_TC_VAR, size, 'I', a, b);
-       if (hmax < 10) hmax = 10;
-       wbody = width + 4;
-       width += hmax + 4;
+       os << "sqrt(" << cell(0) << ')';
 }
 
 
-void MathSqrtInset::Write(ostream & os, bool fragile)
+void MathSqrtInset::mathmlize(MathMLStream & os) const
 {
-       os << '\\' << name << '{';
-       MathParInset::Write(os, fragile); 
-       os << '}';
+       os << MTag("msqrt") << cell(0) << ETag("msqrt");
 }