]> 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 931efa9f4bd6f058b9605df2fd1f8964ee4132bb..64fe5ee58e2c4f2c36217ef854d877cefb776c30 100644 (file)
@@ -4,23 +4,29 @@
 
 #include "math_inset.h"
 
-/// thing that need the dimension cache
+/// things that need the dimension cache
+
 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:
        ///
-       int width_;
+       mutable int width_;
        ///
-       int ascent_;
+       mutable int ascent_;
        ///
-       int descent_;
+       mutable int descent_;
 };
 #endif