]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMBox.h
Another warning.
[lyx.git] / src / mathed / InsetMathMBox.h
index 6d3529bd33378bcb46ee4dd125b18a5a17f1cda0..eca4fcbfaa108ef6e73d182ff7c769dd2bcc93ea 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,8 +31,8 @@ class BufferView;
 class InsetMathMBox : public InsetMath {
 public:
        ///
-       explicit InsetMathMBox();
-       explicit InsetMathMBox(Layout const & layout);
+       explicit InsetMathMBox(Buffer * buffer);
+       explicit InsetMathMBox(Buffer * buffer, Layout const & layout);
 
        /// this stores metrics information in cache_
        void metrics(MetricsInfo & mi, Dimension & dim) const;
@@ -47,15 +48,22 @@ public:
        ///
        int latex(odocstream & os, OutputParams const & runparams) const;
        ///
+       void mathmlize(MathStream &) 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;