]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMatrix.h
Preserve \inputencoding value when switching to non-TeX fonts.
[lyx.git] / src / mathed / InsetMathMatrix.h
index e9639811c8dabfd246c7fbd497613874b7340180..49c5ce4e5f146924b1318ea584336dd4db3b0335 100644 (file)
@@ -24,7 +24,7 @@ namespace lyx {
 class InsetMathMatrix : public InsetMathGrid {
 public:
        ///
-       explicit InsetMathMatrix(InsetMathGrid const &, 
+       explicit InsetMathMatrix(InsetMathGrid const &,
                        docstring const & left, docstring const & right);
        /// identifies MatrixInsets
        InsetMathMatrix const * asMatrixInset() const { return this; }
@@ -40,11 +40,15 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       docstring mathmlize(MathStream &) const;
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
        ///
        void octave(OctaveStream &) const;
        ///
        InsetCode lyxCode() const { return MATH_MATRIX_CODE; }
+       ///
+       bool handlesMulticolumn() const { return true; } //override
 
 private:
        virtual Inset * clone() const;