]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_fontinset.C
index 2982a9d2682aa55b4019ed917a0da76aee8dd0aa..4a72b3110213926bdcebb96da92b9f49fc195b86 100644 (file)
@@ -1,14 +1,24 @@
+/**
+ * \file math_fontinset.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_fontinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "math_support.h"
 #include "math_parser.h"
 #include "LaTeXFeatures.h"
-#include "support/LOstream.h"
-#include "textpainter.h"
+#include "support/std_ostream.h"
 
+using std::string;
+using std::auto_ptr;
 
 
 MathFontInset::MathFontInset(latexkeys const * key)
@@ -16,9 +26,9 @@ MathFontInset::MathFontInset(latexkeys const * key)
 {}
 
 
-InsetBase * MathFontInset::clone() const
+auto_ptr<InsetBase> MathFontInset::doClone() const
 {
-       return new MathFontInset(*this);
+       return auto_ptr<InsetBase>(new MathFontInset(*this));
 }
 
 
@@ -35,9 +45,9 @@ MathInset::mode_type MathFontInset::currentMode() const
 void MathFontInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        FontSetChanger dummy(mi.base, key_->name.c_str());
-       cell(0).metrics(mi, dim_);
-       metricsMarkers(1);
-       dim = dim_;
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
@@ -49,7 +59,7 @@ void MathFontInset::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void MathFontInset::metricsT(TextMetricsInfo const & mi, Dimension & /*dim*/) const
+void MathFontInset::metricsT(TextMetricsInfo const & mi, Dimension &) const
 {
        cell(0).metricsT(mi, dim_);
 }