]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSplit.h
Cmake export tests: Added sublabel handling also to revertedTests
[lyx.git] / src / mathed / InsetMathSplit.h
index 9a8d4b93d4e7056695dc1e0371247945000b0acf..b0ff437f3ddcc5a2920f24f718024eca9062447a 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', bool numbered = false);
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -32,6 +33,10 @@ 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; }
@@ -45,6 +50,8 @@ private:
        virtual Inset * clone() const;
        ///
        docstring name_;
+       ///
+       bool numbered_;
 };