X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFontOld.h;h=b8aa668a9c040d0a2da491ea01d3cd8f01fdb92c;hb=c609e9cbcf;hp=61d55b0e7561bd55c49e7c4cd5390d9ff7287667;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathFontOld.h b/src/mathed/InsetMathFontOld.h index 61d55b0e75..b8aa668a9c 100644 --- a/src/mathed/InsetMathFontOld.h +++ b/src/mathed/InsetMathFontOld.h @@ -24,34 +24,38 @@ class latexkeys; class InsetMathFontOld : public InsetMathNest { public: /// - explicit InsetMathFontOld(latexkeys const * key); - /// we are in text mode. - mode_type currentMode() const { return TEXT_MODE; } + explicit InsetMathFontOld(Buffer * buf, latexkeys const * key); + /// we inherit the mode + mode_type currentMode() const override { return current_mode_; } /// we write extra braces in any case... - bool extraBraces() const { return true; } + bool extraBraces() const override { return true; } /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const override; /// - void draw(PainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const override; /// - void metricsT(TextMetricsInfo const & mi, Dimension & dim) const; + void metricsT(TextMetricsInfo const & mi, Dimension & dim) const override; /// - void drawT(TextPainter & pi, int x, int y) const; + void drawT(TextPainter & pi, int x, int y) const override; /// - void write(WriteStream & os) const; + void write(TeXMathStream & os) const override; /// - void normalize(NormalStream &) const; + void normalize(NormalStream &) const override; /// - void infoize(odocstream & os) const; + void infoize(odocstream & os) const override; /// - int kerning(BufferView const * bv) const { return cell(0).kerning(bv); } + int kerning(BufferView const * bv) const override { return cell(0).kerning(bv); } /// - InsetCode lyxCode() const { return MATH_FONTOLD_CODE; } + InsetCode lyxCode() const override { return MATH_FONTOLD_CODE; } private: - virtual Inset * clone() const; + std::string font() const; + /// + Inset * clone() const override; /// the font to be used on screen latexkeys const * key_; + /// the inherited mode + mutable mode_type current_mode_; };