]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnderset.h
Kill macro mode when using LFUN_ESCAPE
[lyx.git] / src / mathed / InsetMathUnderset.h
index 51311e6c6fb56e6a5c06a449c6c49dbf9395d9f5..239a576aebb06d6d4b909a4553dbe4119621e8b9 100644 (file)
@@ -21,6 +21,8 @@ namespace lyx {
 /// Inset for underset
 class InsetMathUnderset : public InsetMathFracBase {
 public:
+       ///
+       InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {}
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -36,7 +38,14 @@ public:
        ///
        void normalize(NormalStream & ns) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
+       ///
+       InsetCode lyxCode() const { return MATH_UNDERSET_CODE; }
+
 private:
        virtual Inset * clone() const;
 };