]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_fontinset.C
index ef7cdb7393ce2889ff2c5348f1c7c6a71c03ff01..9a288afd7364f98b85e091426d242cbb0e2f802c 100644 (file)
@@ -1,26 +1,20 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_fontinset.h"
-#include "debug.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 "frontends/Painter.h"
 
 
 
 MathFontInset::MathFontInset(latexkeys const * key)
        : MathNestInset(1), key_(key)
-{
-       //lock(true);
-}
+{}
 
 
 MathInset * MathFontInset::clone() const
@@ -42,48 +36,40 @@ MathInset::mode_type MathFontInset::currentMode() const
 void MathFontInset::metrics(MathMetricsInfo & mi) const
 {
        MathFontSetChanger dummy(mi.base, key_->name.c_str());
-       dim_ = xcell(0).metrics(mi);
+       dim_ = cell(0).metrics(mi);
        metricsMarkers();
 }
 
 
 void MathFontInset::draw(MathPainterInfo & pi, int x, int y) const
 {
-       //lyxerr << "MathFontInset::draw\n";
-       //MathNestInset::draw(pi, x, y);
        MathFontSetChanger dummy(pi.base, key_->name.c_str());
-       xcell(0).draw(pi, x + 1, y);
+       cell(0).draw(pi, x + 1, y);
        drawMarkers(pi, x, y);
 }
 
 
 void MathFontInset::metricsT(TextMetricsInfo const & mi) const
 {
-       dim_ = xcell(0).metricsT(mi);
+       dim_ = cell(0).metricsT(mi);
 }
 
 
 void MathFontInset::drawT(TextPainter & pain, int x, int y) const
 {
-       //lyxerr << "drawing font code: " << code_ << '\n';
-       xcell(0).drawT(pain, x, y);
-}
-
-
-void MathFontInset::write(WriteStream & os) const
-{
-       os << '\\' << key_->name << '{' << cell(0) << '}';
+       cell(0).drawT(pain, x, y);
 }
 
 
-void MathFontInset::normalize(NormalStream & os) const
+string MathFontInset::name() const
 {
-       os << "[font " << key_->name << " " << cell(0) << "]";
+       return key_->name;
 }
 
 
 void MathFontInset::validate(LaTeXFeatures & features) const
 {
+       MathNestInset::validate(features);
        // Make sure amssymb is put in preamble if Blackboard Bold or
        // Fraktur used:
        if (key_->name == "mathfrak" || key_->name == "mathbb")