]> 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 96755245da2571759802a3f3926e77423ba6e280..31f33f4c86595abf2e594720d9dce933ddeca3b4 100644 (file)
@@ -1,4 +1,14 @@
 // -*- 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
 
 /** Stackrel objects
  *  \author André Pönitz
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 class MathStackrelInset : public MathFracbaseInset {
 public:
        ///
        MathStackrelInset();
        ///
-       MathInset * clone() const;
-       ///
-       void metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
 
@@ -25,6 +33,8 @@ public:
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif