]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.h
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_charinset.h
index 629e93e46332243e114421e1bbf37b75f3c46c57..3673ba15c58cf67d9583a0257ff08c5a9184a8e1 100644 (file)
@@ -2,55 +2,46 @@
 #ifndef MATH_CHARINSET_H
 #define MATH_CHARINSET_H
 
-#include "math_inset.h"
+#include "math_diminset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** The base character inset.
-    \author André Pönitz
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 
-class MathCharInset : public MathInset {
+class MathCharInset : public MathDimInset {
 public:
        ///
        explicit MathCharInset(char c);
        ///
-       MathCharInset(char c, MathTextCodes t);
-       ///
        MathInset * clone() const;
        ///
-       MathTextCodes nativeCode(char c) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void metrics(MathStyles st) const;
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void metricsT(TextMetricsInfo const & st) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void drawT(TextPainter &, int x, int y) const;
        ///
-       void writeNormal(std::ostream &) const;
-       /// 
-       int ascent() const;
+       void write(WriteStream & os) const;
        ///
-       int descent() const;
+       void normalize(NormalStream & ns) const;
        ///
-       int width() const;
+       void octave(OctaveStream & os) const;
        /// identifies Charinsets
-       bool isCharInset() const { return true; }
+       MathCharInset const * asCharInset() const { return this; }
        ///
        char getChar() const { return char_; }
        ///
-       MathTextCodes code() const { return code_; }
-       ///
        bool isRelOp() const;
        ///
-       void handleFont(MathTextCodes t);
+       bool match(MathInset const *) const;
 
 private:
        /// the character
        char char_;
-       /// 
-       MathTextCodes code_;
 };
 #endif