]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSplit.h
Fix bug #8746: Images have to have alt tags.
[lyx.git] / src / mathed / InsetMathSplit.h
index 4f92d59ae7dfcea3bb8b746bc0a12b174031abf0..0310ce13c492ca6495b8e068a0f7c8697fa11fa3 100644 (file)
@@ -21,7 +21,8 @@ namespace lyx {
 class InsetMathSplit : public InsetMathGrid {
 public:
        ///
-       explicit InsetMathSplit(docstring const & name, char valign = 'c');
+       explicit InsetMathSplit(Buffer * buf, docstring const & name,
+               char valign = 'c');
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -32,11 +33,18 @@ public:
        ///
        void infoize(odocstream & os) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
        ///
        int defaultColSpace(col_type) { return 0; }
        ///
        char defaultColAlign(col_type);
+       ///
+       InsetCode lyxCode() const { return MATH_SPLIT_CODE; }
+
 private:
        ///
        virtual Inset * clone() const;