X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBox.h;h=3dfe2286c3a13e49f79ff3cbfa848b247d384f72;hb=f67cf6f4bb3e3d22ac9aebfa22027c3537cbdf61;hp=d5c269cfecc85a55587ebeda793cd644909416d9;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathBox.h b/src/mathed/InsetMathBox.h index d5c269cfec..3dfe2286c3 100644 --- a/src/mathed/InsetMathBox.h +++ b/src/mathed/InsetMathBox.h @@ -23,7 +23,7 @@ namespace lyx { class InsetMathBox : public InsetMathNest { public: /// - explicit InsetMathBox(docstring const & name); + explicit InsetMathBox(Buffer * buf, docstring const & name); /// mode_type currentMode() const { return TEXT_MODE; } /// @@ -35,9 +35,15 @@ public: /// void normalize(NormalStream & ns) const; /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// void infoize(odocstream & os) const; /// void validate(LaTeXFeatures & features) const; + /// + InsetCode lyxCode() const { return MATH_BOX_CODE; } private: Inset * clone() const { return new InsetMathBox(*this); } @@ -50,7 +56,7 @@ private: class InsetMathFBox : public InsetMathNest { public: /// - InsetMathFBox(); + InsetMathFBox(Buffer * buf); /// mode_type currentMode() const { return TEXT_MODE; } /// @@ -62,7 +68,13 @@ public: /// write normalized content void normalize(NormalStream & ns) const; /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// void infoize(odocstream & os) const; + /// + void validate(LaTeXFeatures & features) const; private: /// Inset * clone() const { return new InsetMathFBox(*this); } @@ -73,7 +85,7 @@ private: class InsetMathMakebox : public InsetMathNest { public: /// - InsetMathMakebox(bool framebox); + InsetMathMakebox(Buffer * buf, bool framebox); /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -83,9 +95,15 @@ public: /// write normalized content void normalize(NormalStream & ns) const; /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// mode_type currentMode() const { return TEXT_MODE; } /// void infoize(odocstream & os) const; + /// + void validate(LaTeXFeatures & features) const; private: Inset * clone() const { return new InsetMathMakebox(*this); } /// @@ -98,7 +116,7 @@ private: class InsetMathBoxed : public InsetMathNest { public: /// - InsetMathBoxed(); + InsetMathBoxed(Buffer * buf); /// void validate(LaTeXFeatures & features) const; /// @@ -107,6 +125,10 @@ public: void draw(PainterInfo & pi, int x, int y) const; /// void write(WriteStream & os) const; + /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; /// write normalized content void normalize(NormalStream & ns) const; ///