]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_stackrelinset.h
index 699dffe402d6833346bc6123efebf4f4413c3657..31f33f4c86595abf2e594720d9dce933ddeca3b4 100644 (file)
@@ -1,31 +1,40 @@
 // -*- C++ -*-
+/**
+ * \file math_stackrelinset.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_STACKRELINSET_H
 #define MATH_STACKRELINSET_H
 
 #include "math_fracbase.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** Stackrel objects 
-    \author André Pönitz
+/** Stackrel objects
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
  */
 class MathStackrelInset : public MathFracbaseInset {
 public:
        ///
        MathStackrelInset();
        ///
-       MathInset * clone() const;
-       ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 
        ///
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif