/** * \file math_colorinset.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include #include "math_colorinset.h" #include "math_data.h" #include "math_mathmlstream.h" #include "math_support.h" #include "LaTeXFeatures.h" #include "support/std_ostream.h" using std::auto_ptr; MathColorInset::MathColorInset() : MathNestInset(2) {} auto_ptr MathColorInset::clone() const { return auto_ptr(new MathColorInset(*this)); } void MathColorInset::metrics(MetricsInfo & mi, Dimension & dim) const { cell(1).metrics(mi, dim); if (editing()) { FontSetChanger dummy(mi.base, "textnormal"); cell(0).metrics(mi); dim += cell(0).dim(); w_ = mathed_char_width(mi.base.font, '['); dim.asc += 4; dim.des += 4; dim.wid += 2 * w_ + 4; metricsMarkers(); } dim_ = dim; } void MathColorInset::draw(PainterInfo & pi, int x, int y) const { if (editing()) { FontSetChanger dummy(pi.base, "textnormal"); drawMarkers(pi, x, y); drawStrBlack(pi, x, y, "["); x += w_; cell(0).draw(pi, x, y); x += cell(0).width(); drawStrBlack(pi, x, y, "]"); x += w_ + 2; } ColorChanger dummy1(pi.base.font, asString(cell(0))); cell(1).draw(pi, x, y); } void MathColorInset::validate(LaTeXFeatures & features) const { MathNestInset::validate(features); features.require("color"); } void MathColorInset::write(WriteStream & os) const { os << "\\color" << '{' << cell(0) << '}' << '{' << cell(1) << '}'; } void MathColorInset::normalize(NormalStream & os) const { os << "[color " << cell(0) << ' ' << cell(1) << ']'; } void MathColorInset::infoize(std::ostream & os) const { os << "Color: " << cell(0); }