]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fboxinset.h
fix #1073
[lyx.git] / src / mathed / math_fboxinset.h
index 9f1ea4a770d8f85586f52fb63158ac512edb610d..549dab00ea28baf2eadaa81ad2772f1619e2f9c0 100644 (file)
@@ -3,32 +3,36 @@
 #define MATH_FBOXINSET_H
 
 #include "math_nestinset.h"
-#include "math_metricsinfo.h"
+#include "metricsinfo.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** Extra nesting
-    \author André Pönitz
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
 */
 
+class latexkeys;
+
 class MathFboxInset : public MathNestInset {
 public:
        ///
-       MathFboxInset();
+       MathFboxInset(latexkeys const * key);
        ///
        MathInset * clone() const;
        ///
-       mode_type currentMode() const { return TEXT_MODE; }
+       mode_type currentMode() const;
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi) const;
        ///
-       void draw(MathPainterInfo &, int x, int y) 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_;
 };
 
 #endif