]> 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 de99a1273aaccaee2b092bb52635c2de65002ad0..d5fe40ee6b2ffc05daa3cae46eb8b4ca4d0a8176 100644 (file)
@@ -1,28 +1,35 @@
 // -*- 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
 
-/// The \kern primitive
+/// Support for LaTeX's \\lefteqn command
 
 class MathLefteqnInset : public MathNestInset {
 public:
        ///
        MathLefteqnInset();
        ///
-       MathInset * clone() const;
-       ///
-       void draw(Painter &, int x, int y) const;
+       std::string name() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathStyles st) const;
+       void infoize(std::ostream & os) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 #endif