]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_boxinset.h
index cbf358edd8e3c30dc80c256ac29d055a55795757..0f956c2ff5b5ed93c162c9520880482a211b9962 100644 (file)
@@ -2,42 +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 & name);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       mode_type currentMode() const { return TEXT_MODE; }
        ///
-       void draw(MathPainterInfo & pi, int x, int y) const;
-       /// identifies BoxInsets
-       MathBoxInset * asBoxInset() { return this; }
-       /// identifies BoxInsets
-       MathBoxInset const * asBoxInset() const { return this; }
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void rebreak();
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream & ns) const;
+       ///
+       void infoize(std::ostream & os) const;
 
 private:
-       ///
-       mutable MathMetricsInfo mi_;
        ///
        string name_;
 };
+
+
 #endif