]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_diminset.h
index 4bc853e03844aba145d3c3df6df77ca9ca20647e..1fb5a18af1bd508996add90c2fc89a23d7ca9f0b 100644 (file)
@@ -3,21 +3,17 @@
 #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) {}
-       /// 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_; }
-       /// 
-       void dimensions(int & w, int & a, int & d) const;
+       MathDimInset() {}
+       ///
+       Dimension dimensions() const { return dim_; }
        ///
        void metricsT(TextMetricsInfo const &) const;
        ///
@@ -25,10 +21,6 @@ public:
 
 protected:
        ///
-       mutable int width_;
-       ///
-       mutable int ascent_;
-       ///
-       mutable int descent_;
+       mutable Dimension dim_;
 };
 #endif