]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathChar.h
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / InsetMathChar.h
index f01f3f04472a6f21c9498ad4236b690ae7898681..a9b8c2eb545ad8dd49460c2c65784b1374448d13 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -14,8 +14,6 @@
 
 #include "InsetMath.h"
 
-#include "LyXFont.h"
-
 namespace lyx {
 
 /// The base character inset.
@@ -24,7 +22,9 @@ public:
        ///
        explicit InsetMathChar(char_type c);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void setBuffer(Buffer &) {}
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -32,11 +32,13 @@ public:
        ///
        void drawT(TextPainter &, int x, int y) const;
        ///
-       int kerning() const { return kerning_; }
+       int kerning(BufferView const *) const { return kerning_; }
 
        ///
        void write(WriteStream & os) const;
        ///
+       void validate(LaTeXFeatures & features) const;
+       ///
        void normalize(NormalStream & ns) const;
        ///
        void octave(OctaveStream & os) const;
@@ -50,13 +52,11 @@ public:
        bool isRelOp() const;
 
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
        /// the character
        char_type char_;
        /// cached kerning for superscript
        mutable int kerning_;
-       ///
-       mutable LyXFont font_cache_;
 };
 
 } // namespace lyx