]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathChar.h
listerrors.lyx : Update a link.
[lyx.git] / src / mathed / InsetMathChar.h
index a9b1db3b6dcf0bbfe3a6d79ad3b68a1d841128e1..65fac82fffb04c5067ebec2c0d4beb7f9e793068 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 "Font.h"
-
 namespace lyx {
 
 /// The base character inset.
@@ -24,7 +22,7 @@ public:
        ///
        explicit InsetMathChar(char_type c);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -32,22 +30,28 @@ 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;
        ///
        void mathmlize(MathStream & ms) const;
+       ///
+       void htmlize(HtmlStream & ms) const;
        /// identifies Charinsets
        InsetMathChar const * asCharInset() const { return this; }
        ///
        char_type getChar() const { return char_; }
        ///
        bool isRelOp() const;
+       ///
+       InsetCode lyxCode() const { return MATH_CHAR_CODE; }
 
 private:
        virtual Inset * clone() const;