X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmathed%2FInsetMathFontOld.h;h=261696d104465b222517338878e61e068849f5a3;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=6239b9fa31611ca49417072580770f552c33ac76;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathFontOld.h b/src/mathed/InsetMathFontOld.h index 6239b9fa31..261696d104 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. */ @@ -15,15 +15,18 @@ #include "InsetMathNest.h" +namespace lyx { + + class latexkeys; /// Old-style font changes 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 { return current_mode_; } /// we write extra braces in any case... bool extraBraces() const { return true; } /// @@ -39,11 +42,22 @@ public: /// void normalize(NormalStream &) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; + /// + 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; + std::string font() const; + /// + virtual Inset * clone() const; /// the font to be used on screen latexkeys const * key_; + /// the inherited mode + mutable mode_type current_mode_; }; + + +} // namespace lyx #endif