]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_diminset.h
index e9e612450f09329efa2b29b05192db58da119c83..64fe5ee58e2c4f2c36217ef854d877cefb776c30 100644 (file)
@@ -8,13 +8,18 @@
 
 class MathDimInset : public MathInset {
 public:
-       MathDimInset();
-       /// 
-       int ascent() const;
+       /// not sure whether the initialization is really necessary
+       MathDimInset() : width_(0), ascent_(0), descent_(0) {}
+       /// read ascent value (should be inline according to gprof)
+       int ascent() const { return ascent_; }
+       /// read descent
+       int descent() const { return descent_; }
+       /// read width
+       int width() const { return width_; }
        ///
-       int descent() const;
+       void metricsT(TextMetricsInfo const &) const;
        ///
-       int width() const;
+       void drawT(TextPainter & pain, int x, int y) const;
 
 protected:
        ///