]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMBox.h
tex2lyx/text.cpp: fix typos
[lyx.git] / src / mathed / InsetMathMBox.h
index 4ca1502dc08050643d86c759c53e287da96b6993..6629ea820fdba210a9566318680f89c9494031c3 100644 (file)
@@ -4,7 +4,7 @@
  * 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.
  */
@@ -17,7 +17,8 @@
 #define MATH_MBOXINSET_H
 
 #include "InsetMath.h"
-#include "Text.h"
+
+#include "insets/InsetText.h"
 
 
 namespace lyx {
@@ -30,11 +31,11 @@ class BufferView;
 class InsetMathMBox : public InsetMath {
 public:
        ///
-       explicit InsetMathMBox();
-       explicit InsetMathMBox(LayoutPtr const & layout);
+       explicit InsetMathMBox(Buffer * buffer);
+       explicit InsetMathMBox(Buffer * buffer, Layout const & layout);
 
        /// this stores metrics information in cache_
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        /// draw according to cached metrics
        void draw(PainterInfo &, int x, int y) const;
        ///
@@ -43,20 +44,26 @@ public:
        bool isActive() const { return true; }
 
        ///
-       void write(Buffer const & buf, WriteStream & os) const;
+       void write(WriteStream & os) const;
+       ///
+       void latex(otexstream & os, OutputParams const & runparams) const;
+       ///
+       void mathmlize(MathStream &) const;
        ///
-       int latex(Buffer const &, odocstream & os,
-                       OutputParams const & runparams) const;
+       void htmlize(HtmlStream &) 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(Cursor & cur, FuncRequest & cmd);
 
        ///
-       mutable Text text_;
+       mutable InsetText text_;
 
 private:
        virtual Inset * clone() const;