]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_diminset.h
index e9e612450f09329efa2b29b05192db58da119c83..1fb5a18af1bd508996add90c2fc89a23d7ca9f0b 100644 (file)
@@ -3,25 +3,24 @@
 #define MATH_DIMINSET_H
 
 #include "math_inset.h"
+#include "dimension.h"
+
 
 /// things that need the dimension cache
 
 class MathDimInset : public MathInset {
 public:
-       MathDimInset();
-       /// 
-       int ascent() const;
+       /// not sure whether the initialization is really necessary
+       MathDimInset() {}
+       ///
+       Dimension dimensions() const { return dim_; }
        ///
-       int descent() const;
+       void metricsT(TextMetricsInfo const &) const;
        ///
-       int width() const;
+       void drawT(TextPainter & pain, int x, int y) const;
 
 protected:
        ///
-       mutable int width_;
-       ///
-       mutable int ascent_;
-       ///
-       mutable int descent_;
+       mutable Dimension dim_;
 };
 #endif