]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathFontOld.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / mathed / InsetMathFontOld.h
index e93f3061be70fde4f5adc49472f25794bb7846b3..3046d03d485d305ff30aa55cd41ef95f4de3fa2c 100644 (file)
@@ -24,9 +24,9 @@ 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 { return current_mode_; }
        /// we write extra braces in any case...
        bool extraBraces() const { return true; }
        ///
@@ -45,11 +45,15 @@ public:
        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 Inset * clone() const;
        /// the font to be used on screen
        latexkeys const * key_;
+       /// the inherited mode
+       mutable mode_type current_mode_;
 };