X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFont.h;h=2dc524177ec391bad471a1eb08a13c1a3c8ef34e;hb=85e693806e206b24e9fd7d010368fba36a2b9710;hp=fecf7e7d43e224cdd9eb829b4fc8d148100a62fa;hpb=0a90c42b866d17ba0c5818be363f320b894b1d7b;p=lyx.git diff --git a/src/mathed/InsetMathFont.h b/src/mathed/InsetMathFont.h index fecf7e7d43..2dc524177e 100644 --- a/src/mathed/InsetMathFont.h +++ b/src/mathed/InsetMathFont.h @@ -24,7 +24,7 @@ class latexkeys; class InsetMathFont : public InsetMathNest { public: /// - explicit InsetMathFont(latexkeys const * key); + explicit InsetMathFont(Buffer * buf, latexkeys const * key); /// InsetMathFont * asFontInset() { return this; } /// @@ -34,6 +34,8 @@ public: /// do we allow changing mode during latex export? bool lockedMode() const; /// + void write(WriteStream & os) const; + /// docstring name() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; @@ -46,11 +48,19 @@ public: /// void validate(LaTeXFeatures & features) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void infoize(odocstream & os) const; /// int kerning(BufferView const * bv) const { return cell(0).kerning(bv); } + /// + InsetCode lyxCode() const { return MATH_FONT_CODE; } private: + std::string font() const; + /// virtual Inset * clone() const; /// the font to be used on screen latexkeys const * key_;