]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_kerninset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_kerninset.C
index cf7cb756119a6223536e5b819c3df6daefd8a43d..b07c8eee1e60ae6a2583d961f0ac9b76ff12fa5a 100644 (file)
@@ -1,11 +1,23 @@
-#include <config.h>
+/**
+ * \file math_kerninset.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_kerninset.h"
-#include "math_extern.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "math_support.h"
+#include "dimension.h"
+
+using std::string;
+using std::auto_ptr;
 
 
 MathKernInset::MathKernInset()
@@ -22,19 +34,17 @@ MathKernInset::MathKernInset(string const & s)
 {}
 
 
-MathInset * MathKernInset::clone() const
+auto_ptr<InsetBase> MathKernInset::doClone() const
 {
-       return new MathKernInset(*this);
+       return auto_ptr<InsetBase>(new MathKernInset(*this));
 }
 
 
-Dimension MathKernInset::metrics(MetricsInfo & mi) const
+void MathKernInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       Dimension dim;
        dim.wid = wid_.inPixels(0, mathed_char_width(mi.base.font, 'M'));
        dim.asc = 0;
        dim.des = 0;
-       return dim;
 }
 
 
@@ -44,7 +54,11 @@ void MathKernInset::draw(PainterInfo &, int, int) const
 
 void MathKernInset::write(WriteStream & os) const
 {
-       os << "\\kern" << wid_.asLatexString() << ' ';
+#ifdef WITH_WARNINGS
+#warning this crashs on startup!
+#endif
+       //os << "\\kern" << wid_.asLatexString() << ' ';
+       os << "\\kern0mm ";
 }