]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMBox.h
Update my email and status.
[lyx.git] / src / mathed / InsetMathMBox.h
index 3116e7d5858eb0a0795e91e957c1da0e18a17f67..6629ea820fdba210a9566318680f89c9494031c3 100644 (file)
@@ -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;
@@ -45,7 +46,11 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       int latex(odocstream & os, OutputParams const & runparams) const;
+       void latex(otexstream & os, OutputParams const & runparams) const;
+       ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
        ///
        Text * getText(int) const;
        ///
@@ -58,7 +63,7 @@ protected:
        virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
 
        ///
-       mutable Text text_;
+       mutable InsetText text_;
 
 private:
        virtual Inset * clone() const;