]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.h
fix #1073
[lyx.git] / src / mathed / math_charinset.h
index 325990280aa516142a41091246e1a6d124d434f4..1f9fa26ccfde18ba3ed1f63daa447932e60e411d 100644 (file)
@@ -4,12 +4,11 @@
 
 #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 MathDimInset {
@@ -17,48 +16,32 @@ public:
        ///
        explicit MathCharInset(char c);
        ///
-       MathCharInset(char c, MathTextCodes t);
-       ///
        MathInset * clone() const;
        ///
-       static MathTextCodes nativeCode(char c);
+       void metrics(MetricsInfo & st) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void draw(PainterInfo &, int x, int y) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void metricsT(TextMetricsInfo const & st) const;
        ///
-       void write(WriteStream & os) const;
+       void drawT(TextPainter &, int x, int y) const;
        ///
-       void writeHeader(std::ostream &) const;
-       ///
-       void writeTrailer(std::ostream &) const;
+       void write(WriteStream & os) const;
        ///
-       void writeRaw(std::ostream &) const;
+       void normalize(NormalStream & ns) const;
        ///
-       void normalize(NormalStream &) const;
+       void octave(OctaveStream & os) const;
        /// identifies Charinsets
        MathCharInset const * asCharInset() const { return this; }
        ///
        char getChar() const { return char_; }
        ///
-       MathTextCodes code() const { return code_; }
-       ///
        bool isRelOp() const;
        ///
-       void validate(LaTeXFeatures & features) const;
-       ///
-       void handleFont(MathTextCodes t);
-       ///
-       bool match(MathInset *) const;
-       /// identifies complicated things that need braces if used as arg
-       bool needsBraces() const { return false; }
+       bool match(MathInset const *) const;
 
 private:
        /// the character
        char char_;
-       /// the font to be used on screen
-       MathTextCodes code_;
-       ///
-       mutable MathMetricsInfo mi_;
 };
 #endif