]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathString.h
Fix faulty undo recording
[lyx.git] / src / mathed / InsetMathString.h
index e74402d17a3c0248394c28e2f21ad124c2b40a58..6112b2546bbdf0a49b13a4034cb74032fd040366 100644 (file)
@@ -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.
  */
@@ -26,33 +26,35 @@ namespace lyx {
 class InsetMathString : public InsetMath {
 public:
        ///
-       explicit InsetMathString(docstring const & s);
+       explicit InsetMathString(Buffer * buf, docstring const & s);
        ///
-       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;
        ///
        docstring str() const { return str_; }
        ///
-       InsetMathString * asStringInset() { return this; }
+       InsetMathString * asStringInset() override { return this; }
        ///
-       InsetMathString const * asStringInset() const { return this; }
+       InsetMathString const * asStringInset() const override { return this; }
 
        ///
-       void normalize(NormalStream &) const;
+       void normalize(NormalStream &) const override;
        ///
-       void octave(OctaveStream &) const;
+       void octave(OctaveStream &) const override;
        ///
-       void maple(MapleStream &) const;
+       void maple(MapleStream &) const override;
        ///
-       void mathematica(MathematicaStream &) const;
+       void mathematica(MathematicaStream &) const override;
        ///
-       void mathmlize(MathStream &) const;
+       void mathmlize(MathMLStream &) const override;
        ///
-       void write(WriteStream & os) const;
+       void write(TeXMathStream & os) const override;
+       ///
+       InsetCode lyxCode() const override { return MATH_STRING_CODE; }
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
        /// the string
        docstring str_;
 };