X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFontOld.h;h=c27bfa6658b7a39b9c13407324f9454f46df7de5;hb=48b09463dd23e64fab605553a91542198e8361e4;hp=3cdf775602bd3a95c150e670e9d2d8edb0207f11;hpb=e53e4d06726919c0fbf386bbe8f9d62a640b74d7;p=lyx.git diff --git a/src/mathed/InsetMathFontOld.h b/src/mathed/InsetMathFontOld.h index 3cdf775602..c27bfa6658 100644 --- a/src/mathed/InsetMathFontOld.h +++ b/src/mathed/InsetMathFontOld.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -24,13 +24,13 @@ class latexkeys; class InsetMathFontOld : public InsetMathNest { public: /// - explicit InsetMathFontOld(latexkeys const * key); + explicit InsetMathFontOld(Buffer * buf, latexkeys const * key); /// we are in text mode. mode_type currentMode() const { return TEXT_MODE; } /// we write extra braces in any case... bool extraBraces() const { return true; } /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -44,10 +44,12 @@ public: /// void infoize(odocstream & os) const; /// - int kerning() const { return cell(0).kerning(); } + int kerning(BufferView const * bv) const { return cell(0).kerning(bv); } + /// + InsetCode lyxCode() const { return MATH_FONTOLD_CODE; } private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; /// the font to be used on screen latexkeys const * key_; };