]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_substackinset.C
Change the color of the background widget to red.
[lyx.git] / src / mathed / math_substackinset.C
index bd4cf9eaf2eebb28fd857a76f2a53be85ce943bd..696a9986e9559d52964832ff468127a53d71f6bc 100644 (file)
@@ -1,9 +1,21 @@
+/**
+ * \file math_substackinset.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_substackinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
 MathSubstackInset::MathSubstackInset()
@@ -11,29 +23,27 @@ MathSubstackInset::MathSubstackInset()
 {}
 
 
-MathInset * MathSubstackInset::clone() const
+auto_ptr<InsetBase> MathSubstackInset::clone() const
 {
-       return new MathSubstackInset(*this);
+       return auto_ptr<InsetBase>(new MathSubstackInset(*this));
 }
 
 
-Dimension MathSubstackInset::metrics(MetricsInfo & mi) const
+void MathSubstackInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        if (mi.base.style == LM_ST_DISPLAY) {
                StyleChanger dummy(mi.base, LM_ST_TEXT);
-               MathGridInset::metrics(mi);
+               MathGridInset::metrics(mi, dim);
        } else {
-               MathGridInset::metrics(mi);
+               MathGridInset::metrics(mi, dim);
        }
-       metricsMarkers();
-       return dim_;
+       dim_ = dim;
 }
 
 
 void MathSubstackInset::draw(PainterInfo & pi, int x, int y) const
 {
        MathGridInset::draw(pi, x + 1, y);
-       drawMarkers(pi, x, y);
 }