X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.C;h=b6e3a8176914f88ee7310b0d6946ce333129d477;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=68219334bf7a0b7dfb8961f069ce45b7537f01e0;hpb=0daba49b1d7493cbf76658314b7459b51f870081;p=lyx.git diff --git a/src/mathed/math_sizeinset.C b/src/mathed/math_sizeinset.C index 68219334bf..b6e3a81769 100644 --- a/src/mathed/math_sizeinset.C +++ b/src/mathed/math_sizeinset.C @@ -1,47 +1,70 @@ -#ifdef __GNUG__ -#pragma implementation -#endif +/** + * \file math_sizeinset.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_sizeinset.h" -#include "math_parser.h" +#include "math_data.h" #include "math_mathmlstream.h" +#include "math_parser.h" +#include "math_streamstr.h" +#include "support/std_ostream.h" + +#ifndef CXX_GLOBAL_CSTD +using std::atoi; +#endif + +using std::auto_ptr; MathSizeInset::MathSizeInset(latexkeys const * l) - : MathNestInset(1), key_(l) + : MathNestInset(1), key_(l), style_(Styles(atoi(l->extra.c_str()))) {} -MathInset * MathSizeInset::clone() const +auto_ptr MathSizeInset::clone() const +{ + return auto_ptr(new MathSizeInset(*this)); +} + + +void MathSizeInset::metrics(MetricsInfo & mi, Dimension & dim) const { - return new MathSizeInset(*this); + StyleChanger dummy(mi.base, style_); + cell(0).metrics(mi, dim); + metricsMarkers(dim); + dim_ = dim; } -void MathSizeInset::draw(Painter & pain, int x, int y) const +void MathSizeInset::draw(PainterInfo & pi, int x, int y) const { - xcell(0).draw(pain, x, y); + StyleChanger dummy(pi.base, style_); + cell(0).draw(pi, x + 1, y); + drawMarkers(pi, x, y); } -void MathSizeInset::metrics(MathMetricsInfo const & mi) const +void MathSizeInset::write(WriteStream & os) const { - MathMetricsInfo m = mi; - m.style = MathStyles(key_->id); - xcell(0).metrics(m); - ascent_ = xcell(0).ascent_; - descent_ = xcell(0).descent_; - width_ = xcell(0).width_; + os << "{\\" << key_->name << ' ' << cell(0) << '}'; } -void MathSizeInset::write(MathWriteInfo & os) const +void MathSizeInset::normalize(NormalStream & os) const { - os << "{\\" << key_->name.c_str() << ' ' << cell(0) << '}'; + os << '[' << key_->name << ' ' << cell(0) << ']'; } -void MathSizeInset::writeNormal(NormalStream & os) const +void MathSizeInset::infoize(std::ostream & os) const { - os << "[" << key_->name.c_str() << ' ' << cell(0) << ']'; + os << "Size: " << key_->name; }