]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_boxinset.h
index 8812296605840c78cc0cd38cdc9aaffc801a9ff5..c2f4364daaf4b5ea371f9ffed1b26dde16796e61 100644 (file)
@@ -2,59 +2,40 @@
 #ifndef MATH_BOXINSET_H
 #define MATH_BOXINSET_H
 
-#include "math_diminset.h"
+#include "math_gridinset.h"
 #include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-class InsetText;
-class UpdatableInset;
-class BufferView;
-class Buffer;
 class LyXFont;
 
 /// Support for \\mbox
 
-class MathBoxInset : public MathDimInset {
+class MathBoxInset : public MathGridInset {
 public:
        ///
        explicit MathBoxInset(string const &);
        ///
-       MathBoxInset(MathBoxInset const &);
-       ///
-       ~MathBoxInset();
-       ///
        MathInset * clone() const;
-       ///
-       void draw(Painter &, int x, int y) const;
-       ///
-       void write(MathWriteInfo & os) const;
-       ///
-       void writeNormal(NormalStream &) const;
-       ///
-       void metrics(MathMetricsInfo const &) const;
        /// identifies BoxInsets
        MathBoxInset * asBoxInset() { return this; }
+       /// identifies BoxInsets
+       MathBoxInset const * asBoxInset() const { return this; }
+       ///
+       void rebreak();
        ///
-       bool isHyperActive() const { return 1; }
+       void write(WriteStream & os) const;
        ///
-       void edit(BufferView * bv, int x, int y, unsigned int button);
-       /// identifies hyperactive insets
-       UpdatableInset * asHyperActiveInset() const;
+       void normalize(NormalStream &) const;
+       ///
+       void draw(Painter &, int x, int y) const;
 
 private:
-       /// unimplemented
-       void operator=(MathBoxInset const &);
-
        ///
        mutable MathMetricsInfo mi_;
        ///
        string name_;
-       ///
-       InsetText * text_;
-       ///
-       mutable Buffer * buffer_;       
 };
 #endif