]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.C
more IU
[lyx.git] / src / mathed / math_stackrelinset.C
index 621f07fd0e55d820e9cf37b9d5ed3d27b7b32518..90b9c5f0bac9028436e8124b6697351ad81d021c 100644 (file)
@@ -1,23 +1,35 @@
+/**
+ * \file math_stackrelinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
 
 #include "math_stackrelinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_support.h"
 
 
 using std::max;
+using std::auto_ptr;
 
 
 MathStackrelInset::MathStackrelInset()
 {}
 
 
-MathInset * MathStackrelInset::clone() const
+auto_ptr<InsetBase> MathStackrelInset::clone() const
 {
-       return new MathStackrelInset(*this);
+       return auto_ptr<InsetBase>(new MathStackrelInset(*this));
 }
 
 
-Dimension MathStackrelInset::metrics(MetricsInfo & mi) const
+void MathStackrelInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        cell(1).metrics(mi);
        FracChanger dummy(mi.base);
@@ -26,7 +38,7 @@ Dimension MathStackrelInset::metrics(MetricsInfo & mi) const
        dim_.asc = cell(1).ascent() + cell(0).height() + 4;
        dim_.des = cell(1).descent();
        metricsMarkers();
-       return dim_;
+       dim = dim_;
 }
 
 
@@ -37,7 +49,7 @@ void MathStackrelInset::draw(PainterInfo & pi, int x, int y) const
        cell(1).draw(pi, m - cell(1).width() / 2, y);
        FracChanger dummy(pi.base);
        cell(0).draw(pi, m - cell(0).width() / 2, yo);
-       drawMarkers(pi, x, y);  
+       drawMarkers(pi, x, y);
 }