]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.C
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_sizeinset.C
index 2b6f667fd4a8d82b1bb688d644f2e422bf11a829..099e421694406a9cd9f88930cd9581e0db0b6363 100644 (file)
@@ -1,39 +1,52 @@
-#include <config.h>
+/**
+ * \file math_sizeinset.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_sizeinset.h"
-#include "math_parser.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
+#include "math_parser.h"
 #include "math_streamstr.h"
-#include "math_support.h"
-#include "support/LOstream.h"
 
-using std::atoi;
+#include "support/convert.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
+
 
 MathSizeInset::MathSizeInset(latexkeys const * l)
-       : MathNestInset(1), key_(l), style_(MathStyles(atoi(l->extra.c_str())))
+       : MathNestInset(1), key_(l), style_(Styles(convert<int>(l->extra)))
 {}
 
 
-MathInset * MathSizeInset::clone() const
+auto_ptr<InsetBase> MathSizeInset::doClone() const
 {
-       return new MathSizeInset(*this);
+       return auto_ptr<InsetBase>(new MathSizeInset(*this));
 }
 
 
-void MathSizeInset::metrics(MathMetricsInfo & mi) const
+void MathSizeInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       MathStyleChanger dummy(mi.base, style_);
-       dim_ = cell(0).metrics(mi);
-       metricsMarkers2();
+       StyleChanger dummy(mi.base, style_);
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
-void MathSizeInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathSizeInset::draw(PainterInfo & pi, int x, int y) const
 {
-       MathStyleChanger dummy(pi.base, style_);
+       StyleChanger dummy(pi.base, style_);
        cell(0).draw(pi, x + 1, y);
-       drawMarkers2(pi, x, y);
+       drawMarkers(pi, x, y);
 }