X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMath.cpp;h=a4e310fc6ec42e09068c48a1caeaf6f4b9797341;hb=c56d524cd6af5d0ed0d50fef51ab434ce418d1e0;hp=49d381cd94c3bea1555561c962dd6ac33b104889;hpb=2506e0d643a6030d22a7990d47306837e51cb0d2;p=lyx.git diff --git a/src/mathed/InsetMath.cpp b/src/mathed/InsetMath.cpp index 49d381cd94..a4e310fc6e 100644 --- a/src/mathed/InsetMath.cpp +++ b/src/mathed/InsetMath.cpp @@ -4,7 +4,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -14,23 +14,28 @@ #include "InsetMath.h" #include "MathData.h" #include "MathStream.h" -#include "support/gettext.h" -#include "support/debug.h" +#include "support/debug.h" #include "support/docstream.h" +#include "support/gettext.h" #include "support/lstrings.h" #include "support/textutils.h" -#include - -using std::endl; +#include "support/lassert.h" +using namespace std; namespace lyx { +docstring InsetMath::name() const +{ + return from_utf8("Unknown"); +} + + MathData & InsetMath::cell(idx_type) { - static MathData dummyCell; + static MathData dummyCell(&buffer()); LYXERR0("I don't have any cell"); return dummyCell; } @@ -48,7 +53,7 @@ void InsetMath::dump() const { lyxerr << "---------------------------------------------" << endl; odocstringstream os; - WriteStream wi(os, false, true); + WriteStream wi(os, false, true, WriteStream::wsDefault); write(wi); lyxerr << to_utf8(os.str()); lyxerr << "\n---------------------------------------------" << endl; @@ -69,6 +74,7 @@ void InsetMath::drawT(TextPainter &, int, int) const void InsetMath::write(WriteStream & os) const { + MathEnsurer ensurer(os); docstring const s = name(); os << "\\" << s; // We need an extra ' ' unless this is a single-char-non-ASCII name @@ -78,11 +84,11 @@ void InsetMath::write(WriteStream & os) const } -int InsetMath::plaintext(Buffer const &, odocstream &, - OutputParams const &) const +int InsetMath::plaintext(odocstringstream &, + OutputParams const &, size_t) const { // all math plain text output shall take place in InsetMathHull - BOOST_ASSERT(false); + LASSERT(false, /**/); return 0; } @@ -123,8 +129,21 @@ void InsetMath::mathematica(MathematicaStream & os) const void InsetMath::mathmlize(MathStream & os) const { + os << ""; + os << MTag("mi"); + NormalStream ns(os.os()); + normalize(ns); + os << ETag("mi"); +} + + +void InsetMath::htmlize(HtmlStream & os) const +{ + os << ""; + os << MTag("span", "style='color: red;'"); NormalStream ns(os.os()); normalize(ns); + os << ETag("span"); } @@ -134,10 +153,10 @@ HullType InsetMath::getType() const } -std::ostream & operator<<(std::ostream & os, MathAtom const & at) +ostream & operator<<(ostream & os, MathAtom const & at) { odocstringstream oss; - WriteStream wi(oss, false, false); + WriteStream wi(oss, false, false, WriteStream::wsDefault); at->write(wi); return os << to_utf8(oss.str()); } @@ -145,7 +164,7 @@ std::ostream & operator<<(std::ostream & os, MathAtom const & at) odocstream & operator<<(odocstream & os, MathAtom const & at) { - WriteStream wi(os, false, false); + WriteStream wi(os, false, false, WriteStream::wsDefault); at->write(wi); return os; }