]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.h
Accept \kern and \mkern for math kerning
[lyx.git] / src / mathed / InsetMathDelim.h
index 67e1db09063db2ea4494fbbd354d710ab9761732..5a7e8164049cfb7948559b8dd12587adc149d57a 100644 (file)
@@ -15,8 +15,6 @@
 
 #include "InsetMathNest.h"
 
-#include <string>
-
 
 namespace lyx {
 
@@ -32,6 +30,8 @@ public:
        InsetMathDelim * asDelimInset() { return this; }
        ///
        InsetMathDelim const * asDelimInset() const { return this; }
+       ///
+       MathClass mathClass() const { return MC_INNER; }
        /// is it (...)?
        bool isParenthesis() const;
        /// is it [...]?
@@ -45,6 +45,8 @@ public:
        ///
        void draw(PainterInfo &, int x, int y) const;
 
+       ///
+       void validate(LaTeXFeatures & features) const;
        ///
        void write(WriteStream & os) const;
        /// write normalized content
@@ -58,6 +60,8 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void octave(OctaveStream &) const;
        ///
        InsetCode lyxCode() const { return MATH_DELIM_CODE; }