]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_undersetinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_undersetinset.C
index fc3085482d1a3ccbfc33a2de34734cf0857d7028..526981fa3dd3fdf32aeab6b04abd58d7d4021b0a 100644 (file)
@@ -1,42 +1,40 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "math_undersetinset.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
 
 
 using std::max;
+using std::auto_ptr;
 
 
 MathUndersetInset::MathUndersetInset()
 {}
 
 
-MathInset * MathUndersetInset::clone() const
+auto_ptr<InsetBase> MathUndersetInset::clone() const
 {
-       return new MathUndersetInset(*this);
+       return auto_ptr<InsetBase>(new MathUndersetInset(*this));
 }
 
 
-void MathUndersetInset::metrics(MathMetricsInfo & mi) const
+void MathUndersetInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        cell(1).metrics(mi);
-       MathFracChanger dummy(mi.base);
+       FracChanger dummy(mi.base);
        cell(0).metrics(mi);
-       dim_.w = max(cell(0).width(), cell(1).width()) + 4;
-       dim_.a = cell(1).ascent();
-       dim_.d = cell(1).descent() + cell(0).height() + 4;
+       dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
+       dim_.asc = cell(1).ascent();
+       dim_.des = cell(1).descent() + cell(0).height() + 4;
+       dim = dim_;
 }
 
 
-void MathUndersetInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
 {
-       int m  = x + width() / 2;
+       int m  = x + pi.width / 2;
        int yo = y + cell(1).descent() + cell(0).ascent() + 1;
        cell(1).draw(pi, m - cell(1).width() / 2, y);
-       MathFracChanger dummy(pi.base);
+       FracChanger dummy(pi.base);
        cell(0).draw(pi, m - cell(0).width() / 2, yo);
 }