]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_kerninset.C
Fix.
[lyx.git] / src / mathed / math_kerninset.C
index b7fcd368554cca6c11111e794cd9c19775e626cf..0b03d25fa83f0336e9fd91ab9fccd9840b1936d6 100644 (file)
@@ -1,15 +1,11 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_kerninset.h"
 #include "math_extern.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "math_support.h"
-#include "lyxrc.h"
 
 
 MathKernInset::MathKernInset()
@@ -32,17 +28,11 @@ MathInset * MathKernInset::clone() const
 }
 
 
-void MathKernInset::metrics(MathMetricsInfo & /*mi*/) const
+void MathKernInset::metrics(MathMetricsInfo & mi) const
 {
-#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;
-       ascent_  = 0;
-       descent_ = 0;
-       //cerr << "handling kern of width " << wid_.value() << "\n";
+       dim_.w = wid_.inPixels(0, mathed_char_width(mi.base.font, 'M'));
+       dim_.a = 0;
+       dim_.d = 0;
 }
 
 
@@ -52,11 +42,11 @@ void MathKernInset::draw(MathPainterInfo &, 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() << ']';
 }