X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMath.cpp;h=e3b46b9e5caa484c9613e27ff992af3d85d8d036;hb=ad79ac406f9c8fc85880cfeb5416b0299ee9a617;hp=855b4902e97d02f69b1faeb828beec585f245da0;hpb=1050cc44714f8b78e233d6a559ead3d7a8b6aa56;p=lyx.git diff --git a/src/mathed/InsetMath.cpp b/src/mathed/InsetMath.cpp index 855b4902e9..e3b46b9e5c 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. */ @@ -13,25 +13,33 @@ #include "InsetMath.h" #include "MathData.h" +#include "MathRow.h" #include "MathStream.h" -#include "gettext.h" -#include "debug.h" +#include "MetricsInfo.h" + +#include "support/debug.h" +#include "support/docstream.h" +#include "support/gettext.h" +#include "support/lassert.h" #include "support/lstrings.h" #include "support/textutils.h" -#include -using std::endl; +using namespace std; namespace lyx { +docstring InsetMath::name() const +{ + return from_utf8("Unknown"); +} MathData & InsetMath::cell(idx_type) { - static MathData dummyCell; - lyxerr << BOOST_CURRENT_FUNCTION << ": I don't have any cell" << endl; + static MathData dummyCell(&buffer()); + LYXERR0("I don't have any cell"); return dummyCell; } @@ -39,16 +47,39 @@ MathData & InsetMath::cell(idx_type) MathData const & InsetMath::cell(idx_type) const { static MathData dummyCell; - lyxerr << BOOST_CURRENT_FUNCTION << ": I don't have any cell" << endl; + LYXERR0("I don't have any cell"); return dummyCell; } +MathClass InsetMath::mathClass() const +{ + return MC_ORD; +} + + +InsetMath::marker_type InsetMath::marker() const +{ + return nargs() > 0 ? MARKER : NO_MARKER; +} + + +bool InsetMath::addToMathRow(MathRow & mrow, MetricsInfo & mi) const +{ + MathRow::Element e(mi, MathRow::INSET, mathClass()); + e.inset = this; + e.marker = mi.base.macro_nesting ? NO_MARKER : marker(); + mrow.push_back(e); + return true; +} + + void InsetMath::dump() const { lyxerr << "---------------------------------------------" << endl; odocstringstream os; - WriteStream wi(os, false, true); + otexrowstream ots(os); + WriteStream wi(ots, false, true, WriteStream::wsDefault); write(wi); lyxerr << to_utf8(os.str()); lyxerr << "\n---------------------------------------------" << endl; @@ -57,18 +88,19 @@ void InsetMath::dump() const void InsetMath::metricsT(TextMetricsInfo const &, Dimension &) const { - lyxerr << "InsetMath::metricsT(Text) called directly!" << endl; + LYXERR0("InsetMath::metricsT(Text) called directly!"); } void InsetMath::drawT(TextPainter &, int, int) const { - lyxerr << "InsetMath::drawT(Text) called directly!" << endl; + LYXERR0("InsetMath::drawT(Text) called directly!"); } 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 +110,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); + LATTEST(false); return 0; } @@ -123,8 +155,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 +179,11 @@ 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); + otexrowstream ots(oss); + WriteStream wi(ots, false, false, WriteStream::wsDefault); at->write(wi); return os << to_utf8(oss.str()); } @@ -145,7 +191,8 @@ std::ostream & operator<<(std::ostream & os, MathAtom const & at) odocstream & operator<<(odocstream & os, MathAtom const & at) { - WriteStream wi(os, false, false); + otexrowstream ots(os); + WriteStream wi(ots, false, false, WriteStream::wsDefault); at->write(wi); return os; }