]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
macro rework
[lyx.git] / src / mathed / math_boxinset.h
index b866bbe5b81942c60730238975b2ee813c0d3895..c155a76301cd3d4a0294dd8af8d69777cb133c44 100644 (file)
@@ -1,60 +1,49 @@
 // -*- C++ -*-
+/**
+ * \file math_boxinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_BOXINSET_H
 #define MATH_BOXINSET_H
 
-#include "math_diminset.h"
-#include "LString.h"
+#include "math_nestinset.h"
+
+#include <string>
 
-#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 MathNestInset {
 public:
        ///
-       explicit MathBoxInset(string const &);
+       explicit MathBoxInset(std::string const & name);
        ///
-       MathBoxInset(MathBoxInset const &);
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       ~MathBoxInset();
+       mode_type currentMode() const { return TEXT_MODE; }
        ///
-       MathInset * clone() const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void write(MathWriteInfo & os) const;
+       void write(WriteStream & os) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void normalize(NormalStream & ns) const;
        ///
-       void metrics(MathMetricsInfo const &) const;
-       /// identifies BoxInsets
-       MathBoxInset * asBoxInset() { return this; }
-       ///
-       bool isHyperActive() const { return 1; }
-       ///
-       void edit(BufferView * bv, int x, int y, unsigned int button);
-       /// identifies hyperactive insets
-       UpdatableInset * asHyperActiveInset() const;
+       void infoize(std::ostream & os) const;
 
 private:
-       /// unimplemented
-       void operator=(MathBoxInset const &);
-
        ///
-       mutable MathMetricsInfo mi_;
-       ///
-       string name_;
-       ///
-       InsetText * text_;
-       ///
-       mutable Buffer * buffer_;       
+       std::string name_;
 };
+
+
 #endif