]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_boxinset.h
index 59fd02d1ac3c212638df7f0570ffd254e5109bfb..992d5953801372b6cf3570a12462394053e6c699 100644 (file)
@@ -2,41 +2,34 @@
 #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 & 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_;
 };