]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.h
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_charinset.h
index eaba3cfcea321aee1d1507469342f8acf54cde20..3673ba15c58cf67d9583a0257ff08c5a9184a8e1 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,52 +16,32 @@ public:
        ///
        explicit MathCharInset(char c);
        ///
-       MathCharInset(char c, MathTextCodes t);
-       ///
        MathInset * clone() const;
        ///
-       static MathTextCodes nativeCode(char c);
-       ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
-       void metrics(TextMetricsInfo const & st) const;
+       void metricsT(TextMetricsInfo const & st) const;
        ///
-       void draw(TextPainter &, int x, int y) const;
+       void drawT(TextPainter &, int x, int y) const;
        ///
        void write(WriteStream & os) const;
        ///
-       void writeHeader(std::ostream &) const;
-       ///
-       void writeTrailer(std::ostream &) 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 LyXFont font_;
 };
 #endif