]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.h
small up/down tweaking
[lyx.git] / src / mathed / math_charinset.h
index 9cc0fbb3d696c2599c22eda56665cc4e00ce1049..383c325ff83fd3a45500fb1bb57886bab6d8309c 100644 (file)
@@ -2,40 +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:
        ///
-       MathCharInset(char c, MathTextCodes t);
+       explicit MathCharInset(char c);
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathStyles st) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void metricsT(TextMetricsInfo const & st) const;
        ///
-       void writeNormal(std::ostream &) const;
-       /// 
-       int ascent() const;
+       void drawT(TextPainter &, int x, int y) const;
        ///
-       int descent() const;
+       void write(WriteStream & os) const;
        ///
-       int width() const;
+       void normalize(NormalStream & ns) const;
+       ///
+       void octavize(OctaveStream & os) const;
        /// identifies Charinsets
-       bool isCharInset() const { return true; }
+       MathCharInset const * asCharInset() const { return this; }
        ///
        char getChar() const { return char_; }
+       ///
+       bool isRelOp() const;
+       ///
+       bool match(MathInset const *) const;
 
 private:
        /// the character