]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_lefteqninset.h
index 15c37262a973cd176ccc5383e170760f7c0b46ec..d5fe40ee6b2ffc05daa3cae46eb8b4ca4d0a8176 100644 (file)
@@ -1,12 +1,19 @@
 // -*- C++ -*-
+/**
+ * \file math_lefteqninset.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_LEFTEQNINSET_H
 #define MATH_LEFTEQNINSET_H
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /// Support for LaTeX's \\lefteqn command
 
@@ -15,14 +22,14 @@ public:
        ///
        MathLefteqnInset();
        ///
-       MathInset * clone() const;
-       ///
-       void draw(Painter &, int x, int y) const;
+       std::string name() const;
        ///
-       void write(MathWriteInfo & os) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void infoize(std::ostream & os) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 #endif