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