]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.h
the DocIterator stuff
[lyx.git] / src / mathed / math_charinset.h
index 1cad4cf94fa515c653a22ceb946cdc38e17eccee..76a1feab001a61fb5476971bf6ae88a0504ad211 100644 (file)
 #ifndef MATH_CHARINSET_H
 #define MATH_CHARINSET_H
 
-#include "math_diminset.h"
+#include "math_inset.h"
 
-#warning this should not derive from the fat MathDimInset
 
 /// The base character inset.
-class MathCharInset : public MathDimInset {
+class MathCharInset : public MathInset {
 public:
        ///
        explicit MathCharInset(char c);
@@ -31,6 +30,8 @@ public:
        void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
        ///
        void drawT(TextPainter &, int x, int y) const;
+       ///
+       int width() const { return width_; }
 
        ///
        void write(WriteStream & os) const;
@@ -48,5 +49,7 @@ public:
 private:
        /// the character
        char char_;
+       /// cached width
+       mutable int width_;
 };
 #endif