]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_envinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_envinset.C
index 5075e9867216798124eadc075203db49a4b85c8f..a7e2737be4390db56d926075f1fa079c6da710a0 100644 (file)
@@ -1,37 +1,36 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "math_envinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "support/LOstream.h"
 
+using std::auto_ptr;
+
 
 MathEnvInset::MathEnvInset(string const & name)
        : MathNestInset(1), name_(name)
 {}
 
 
-MathInset * MathEnvInset::clone() const
+auto_ptr<InsetBase> MathEnvInset::clone() const
 {
-       return new MathEnvInset(*this);
+       return auto_ptr<InsetBase>(new MathEnvInset(*this));
 }
 
 
-void MathEnvInset::metrics(MathMetricsInfo & mi) const
+void MathEnvInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       dim_ = cell(0).metrics(mi);
-       metricsMarkers2();
+       cell(0).metrics(mi, dim_);
+       metricsMarkers();
+       dim = dim_;
 }
 
 
-void MathEnvInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathEnvInset::draw(PainterInfo & pi, int x, int y) const
 {
        cell(0).draw(pi, x + 1, y);
-       drawMarkers2(pi, x, y);
+       drawMarkers(pi, x, y);
 }