]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.h
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_sizeinset.h
index 1b14135d01d5fffa41801a7202ee353961c3efba..5847ac1f1f2dd7edd8befadea99d831435bc2865 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file math_sizeinset.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 MATHSIZEINSET_H
 #define MATHSIZEINSET_H
 
 #include "metricsinfo.h"
 
 
-/** An inset for \scriptsize etc
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS
-*/
-
 class latexkeys;
 
+/// An inset for \scriptsize etc.
 class MathSizeInset : public MathNestInset {
 public:
        ///
        explicit MathSizeInset(latexkeys const * l);
-       ///
-       MathInset * clone() const;
        /// we write extra braces in any case...
        bool extraBraces() const { return true; }
        ///
-       Dimension metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
 
@@ -33,8 +36,8 @@ public:
        void normalize(NormalStream &) const;
        ///
        void infoize(std::ostream & os) const;
-
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
        latexkeys const * key_;
        ///