]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_kerninset.C
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_kerninset.C
index 42b5514ba2278ba25ed2a949affd4add3b192126..d5e533997710a111ed9dff1465734ab6bdb9b59c 100644 (file)
@@ -1,14 +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.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_kerninset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "math_support.h"
-#include "lyxrc.h"
+#include "dimension.h"
+
+using std::string;
+using std::auto_ptr;
 
 
 MathKernInset::MathKernInset()
@@ -25,37 +34,38 @@ 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));
 }
 
 
-void MathKernInset::draw(Painter &, int, int) const
-{}
+void MathKernInset::metrics(MetricsInfo & mi, Dimension & dim) const
+{
+       wid_pix_ = wid_.inPixels(0, mathed_char_width(mi.base.font, 'M'));
+       dim.wid = wid_pix_;
+       dim.asc = 0;
+       dim.des = 0;
+}
 
 
-void MathKernInset::metrics(MathMetricsInfo const &) const
+int MathKernInset::width() const
 {
-       ascent_  = 0;
-       descent_ = 0;
-#ifdef WITH_WARNINGS
-#warning fix this once the interface to LyXLength has improved
-#endif
-       // this uses the numerical valu in pixels, even if the unit is cm or ex!
-       width_   = static_cast<int>(wid_.value());
-       width_   = (width_*static_cast<int>(lyxrc.zoom))/150;
-       //cerr << "handling kern of width " << wid_.value() << "\n";
+       return wid_pix_;
 }
 
 
+void MathKernInset::draw(PainterInfo &, int, int) const
+{}
+
+
 void MathKernInset::write(WriteStream & os) const
 {
-       os << "\\kern" << wid_.asLatexString() << " ";
+       os << "\\kern" << wid_.asLatexString() << ' ';
 }
 
 
 void MathKernInset::normalize(NormalStream & os) const
 {
-       os << "[kern " << wid_.asLatexString() << "]";
+       os << "[kern " << wid_.asLatexString() << ']';
 }