]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diffinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_diffinset.h
index a96388f77613d4d253a39063cb2aa6e44d089d94..b25140ec4a170e373bcafa8cd0bfb2cd4ef979ae 100644 (file)
@@ -1,7 +1,18 @@
 // -*- C++ -*-
+/**
+ * \file math_diffinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_DIFFINSET_H
 #define MATH_DIFFINSET_H
 
+
 // d f(x)/dx in one block
 // for interfacing external programs
 
 class MathDiffInset : public MathNestInset {
 public:
        ///
-       explicit MathDiffInset();
-       ///
-       MathInset * clone() const;
+       MathDiffInset();
        ///
        void addDer(MathArray const & der);
        ///
-       void metrics(MathMetricsInfo & st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 
        ///
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
        ///
-       void mathematicize(MathematicaStream &) const;
+       void mathematica(MathematicaStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
        void write(WriteStream & os) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif