]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_ertinset.C
more IU
[lyx.git] / src / mathed / math_ertinset.C
index 14f6bc7fed800b00b6ac2b5f52516a09c0cd9839..d5e5cacbb96c3c51f993a8f854b6dc24eaf25625 100644 (file)
@@ -1,35 +1,43 @@
-
-#ifdef __GNUG__
-#pragma implementation 
-#endif
+/**
+ * \file math_ertinset.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_ertinset.h"
 #include "math_mathmlstream.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
-MathInset * MathErtInset::clone() const
+auto_ptr<InsetBase> MathErtInset::clone() const
 {
-       return new MathErtInset(*this);
+       return auto_ptr<InsetBase>(new MathErtInset(*this));
 }
 
 
-void MathErtInset::metrics(MathMetricsInfo & mi) const
+void MathErtInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       MathFontSetChanger dummy(mi.base, "lyxert");
-       MathTextInset::metrics(mi);
+       FontSetChanger dummy(mi.base, "lyxert");
+       MathTextInset::metrics(mi, dim_);
        cache_.colinfo_[0].align_ = 'l';
-       metricsMarkers2();
+       metricsMarkers();
+       dim = dim_;
 }
 
 
-void MathErtInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathErtInset::draw(PainterInfo & pi, int x, int y) const
 {
-       MathFontSetChanger dummy(pi.base, "lyxert");
+       FontSetChanger dummy(pi.base, "lyxert");
        MathTextInset::draw(pi, x + 1, y);
-       drawMarkers2(pi, x, y);
+       drawMarkers(pi, x, y);
 }
 
 
@@ -46,4 +54,3 @@ void MathErtInset::infoize(std::ostream & os) const
 {
        os << "Box: Ert";
 }
-