]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.C
Change the color of the background widget to red.
[lyx.git] / src / mathed / math_boxinset.C
index e57a151e54f7079c982dfe65f15bf9b0ae79f374..10e070c8b75dc492f3a13e573db64790695eb6e1 100644 (file)
@@ -1,10 +1,23 @@
+/**
+ * \file math_boxinset.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_boxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+using std::string;
+using std::auto_ptr;
 
 
 MathBoxInset::MathBoxInset(string const & name)
@@ -12,9 +25,9 @@ MathBoxInset::MathBoxInset(string const & name)
 {}
 
 
-MathInset * MathBoxInset::clone() const
+auto_ptr<InsetBase> MathBoxInset::clone() const
 {
-       return new MathBoxInset(*this);
+       return auto_ptr<InsetBase>(new MathBoxInset(*this));
 }
 
 
@@ -32,12 +45,12 @@ void MathBoxInset::normalize(NormalStream & os) const
 }
 
 
-Dimension MathBoxInset::metrics(MetricsInfo & mi) const
+void MathBoxInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        FontSetChanger dummy(mi.base, "textnormal");
-       cell(0).metrics(mi, dim_);
-       metricsMarkers();
-       return dim_;
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }