]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fboxinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_fboxinset.h
index 549dab00ea28baf2eadaa81ad2772f1619e2f9c0..405a7c5b2782c6abc02829f6b3a742b539ed212c 100644 (file)
@@ -1,38 +1,39 @@
 // -*- C++ -*-
+/**
+ * \file math_fboxinset.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_FBOXINSET_H
 #define MATH_FBOXINSET_H
 
 #include "math_nestinset.h"
-#include "metricsinfo.h"
 
 
-/** Extra nesting
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS
-*/
-
-class latexkeys;
-
+/// Non-AMS-style frame
 class MathFboxInset : public MathNestInset {
 public:
        ///
-       MathFboxInset(latexkeys const * key);
-       ///
-       MathInset * clone() const;
+       MathFboxInset();
        ///
        mode_type currentMode() const;
        ///
-       void metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(WriteStream & os) const;
        /// write normalized content
        void normalize(NormalStream & ns) const;
-private:
        ///
-       latexkeys const * key_;
+       void infoize(std::ostream & os) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif