]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMBox.h
Update my email and status.
[lyx.git] / src / mathed / InsetMathMBox.h
index cc621b71c7efd1573d2d9e5ff8843d7f9367f118..6629ea820fdba210a9566318680f89c9494031c3 100644 (file)
@@ -4,34 +4,41 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 
+#define MATH_MBOX
+
+#ifdef MATH_MBOX
+
 #ifndef MATH_MBOXINSET_H
 #define MATH_MBOXINSET_H
 
-#include "InsetMathDim.h"
-#include "lyxtext.h"
+#include "InsetMath.h"
+
+#include "insets/InsetText.h"
 
 
 namespace lyx {
 
+class Buffer;
+class BufferView;
 
 // almost a substitute for the real text inset...
 
-class InsetMathMBox : public InsetMathDim {
+class InsetMathMBox : public InsetMath {
 public:
        ///
-       explicit InsetMathMBox(BufferView & bv);
+       explicit InsetMathMBox(Buffer * buffer);
+       explicit InsetMathMBox(Buffer * buffer, Layout const & layout);
+
        /// this stores metrics information in cache_
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        /// draw according to cached metrics
        void draw(PainterInfo &, int x, int y) const;
        ///
-       void drawSelection(PainterInfo & pi, int x, int y) const;
-       ///
        bool inMathed() const { return false; }
        ///
        bool isActive() const { return true; }
@@ -39,25 +46,33 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       int latex(Buffer const &, odocstream & os,
-                       OutputParams const & runparams) const;
+       void latex(otexstream & os, OutputParams const & runparams) const;
+       ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
        ///
-       LyXText * getText(int) const;
+       Text * getText(int) const;
        ///
        void cursorPos(BufferView const & bv, CursorSlice const & sl,
                bool boundary, int & x, int & y) const;
+       ///
+       InsetCode lyxCode() const { return MATH_MBOX_CODE; }
+
 protected:
-       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
 
        ///
-       mutable LyXText text_;
-       ///
-       BufferView * const bv_;
+       mutable InsetText text_;
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };
 
 
 
 } // namespace lyx
-#endif
+
+#endif //MATH_MBOXINSET_H
+
+#endif //MATH_MBOX