]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_amsarrayinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_amsarrayinset.C
index cc8804f0ed7544f13d40a28ec6949ead1b8122ca..4acba92900884b75e8a82b059856ee03a72d84ee 100644 (file)
@@ -1,12 +1,23 @@
+/**
+ * \file math_amsarrayinset.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 "LaTeXFeatures.h"
 #include "math_amsarrayinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "metricsinfo.h"
 #include "math_streamstr.h"
 #include "math_support.h"
-#include "Lsstream.h"
 
+using std::string;
 using std::auto_ptr;
 
 
@@ -20,7 +31,7 @@ MathAMSArrayInset::MathAMSArrayInset(string const & name)
 {}
 
 
-auto_ptr<InsetBase> MathAMSArrayInset::clone() const
+auto_ptr<InsetBase> MathAMSArrayInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathAMSArrayInset(*this));
 }
@@ -63,9 +74,9 @@ void MathAMSArrayInset::metrics(MetricsInfo & mi, Dimension & dim) const
        MetricsInfo m = mi;
        if (m.base.style == LM_ST_DISPLAY)
                m.base.style = LM_ST_TEXT;
-       MathGridInset::metrics(m);
-       dim_.wid += 12;
-       dim = dim_;
+       MathGridInset::metrics(m, dim);
+       dim.wid += 12;
+       dim_ = dim;
 }
 
 
@@ -75,6 +86,7 @@ void MathAMSArrayInset::draw(PainterInfo & pi, int x, int y) const
        int const yy = y - dim_.ascent();
        mathed_draw_deco(pi, x + 1, yy, 5, dim_.height(), name_left());
        mathed_draw_deco(pi, x + dim_.width() - 6, yy, 5, dim_.height(), name_right());
+       setPosCache(pi, x, y);
 }
 
 
@@ -92,3 +104,10 @@ void MathAMSArrayInset::normalize(NormalStream & os) const
        MathGridInset::normalize(os);
        os << ']';
 }
+
+
+void MathAMSArrayInset::validate(LaTeXFeatures & features) const
+{
+       features.require("amsmath");
+       MathGridInset::validate(features);
+}