]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.h
Fix.
[lyx.git] / src / mathed / math_diminset.h
index 64fe5ee58e2c4f2c36217ef854d877cefb776c30..801aa9952b60060f2ac7f623b4e81fa2526b82ba 100644 (file)
@@ -2,20 +2,24 @@
 #ifndef MATH_DIMINSET_H
 #define MATH_DIMINSET_H
 
+
 #include "math_inset.h"
+#include "dimension.h"
 
 /// things that need the dimension cache
 
 class MathDimInset : public MathInset {
 public:
        /// not sure whether the initialization is really necessary
-       MathDimInset() : width_(0), ascent_(0), descent_(0) {}
+       MathDimInset() {}
        /// read ascent value (should be inline according to gprof)
-       int ascent() const { return ascent_; }
+       int ascent() const { return dim_.ascent(); }
        /// read descent
-       int descent() const { return descent_; }
+       int descent() const { return dim_.descent(); }
        /// read width
-       int width() const { return width_; }
+       int width() const { return dim_.width(); }
+       ///
+       Dimension dimensions() const { return dim_; }
        ///
        void metricsT(TextMetricsInfo const &) const;
        ///
@@ -23,10 +27,6 @@ public:
 
 protected:
        ///
-       mutable int width_;
-       ///
-       mutable int ascent_;
-       ///
-       mutable int descent_;
+       mutable Dimension dim_;
 };
 #endif