]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.C
Fix.
[lyx.git] / src / mathed / math_diminset.C
index f3065be8e3a1ba825b46b06cd1f19ec7ea377617..6f35928e0660c7b281bed21b1449ad57ede97006 100644 (file)
@@ -1,24 +1,29 @@
-#include "math_diminset.h"
-
-
-MathDimInset::MathDimInset()
-       : width_(0), ascent_(0), descent_(0)
-{}
-
 
-int MathDimInset::ascent() const
-{
-       return ascent_;
-}
+#include "math_diminset.h"
+#include "Lsstream.h"
+#include "textpainter.h"
 
 
-int MathDimInset::descent() const
+void MathDimInset::metricsT(TextMetricsInfo const &) const
 {
-       return descent_;
+#ifndef WITH_WARNINGS
+#warning temporarily disabled
+#endif
+/*
+       std::ostringstream os;
+       os << MathAtom(this);
+       dim_.w = int(os.str().size());
+       dim_.a = 1;
+       dim_.d = 0;
+*/
 }
 
 
-int MathDimInset::width() const
+void MathDimInset::drawT(TextPainter &, int, int) const
 {
-       return width_;
+/*
+       std::ostringstream os;
+       os << MathAtom(this);
+       pain.draw(x, y, STRCONV(os.str()));
+*/
 }