]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
fix #1073
[lyx.git] / src / mathed / math_boxinset.h
index 0dfc8e44760caa4c344ca52eca9ec80bab018c9d..37553b1af6ed7a43a2e1ff7860405088b2666e86 100644 (file)
@@ -2,40 +2,37 @@
 #ifndef MATH_BOXINSET_H
 #define MATH_BOXINSET_H
 
-#include "math_gridinset.h"
+#include "math_nestinset.h"
 #include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 class LyXFont;
 
 /// Support for \\mbox
 
-class MathBoxInset : public MathGridInset {
+class MathBoxInset : public MathNestInset {
 public:
        ///
-       explicit MathBoxInset(string const &);
+       explicit MathBoxInset(string const & name);
        ///
        MathInset * clone() const;
-       /// identifies BoxInsets
-       MathBoxInset * asBoxInset() { return this; }
-       /// identifies BoxInsets
-       MathBoxInset const * asBoxInset() const { return this; }
        ///
-       void rebreak();
+       mode_type currentMode() const { return TEXT_MODE; }
+       ///
+       void metrics(MetricsInfo & mi) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(WriteStream & os) const;
        ///
-       void normalize(NormalStream &) const;
+       void normalize(NormalStream & ns) const;
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       void infoize(std::ostream & os) const;
 
 private:
-       ///
-       mutable MathMetricsInfo mi_;
        ///
        string name_;
 };
+
+
 #endif