X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_fontoldinset.C;h=e339c27ac3a2c668cb0441cfd3447eb3abc82809;hb=701b99ecd70ac472aa53c8b2317af44def4f9670;hp=577ac4a3a435c0ae64321db93ccd762a4394a68c;hpb=00413a78417988ae9c0927729771cc188a8da6fb;p=lyx.git diff --git a/src/mathed/math_fontoldinset.C b/src/mathed/math_fontoldinset.C index 577ac4a3a4..e339c27ac3 100644 --- a/src/mathed/math_fontoldinset.C +++ b/src/mathed/math_fontoldinset.C @@ -1,18 +1,23 @@ -#include +/** + * \file math_fontoldinset.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. + */ -#ifdef __GNUG__ -#pragma implementation -#endif +#include #include "math_fontoldinset.h" +#include "math_data.h" #include "math_mathmlstream.h" -#include "math_streamstr.h" -#include "math_support.h" #include "math_parser.h" -#include "textpainter.h" -#include "support/LOstream.h" -#include "frontends/Painter.h" +#include "math_streamstr.h" +#include "support/std_ostream.h" +using std::auto_ptr; MathFontOldInset::MathFontOldInset(latexkeys const * key) @@ -22,31 +27,32 @@ MathFontOldInset::MathFontOldInset(latexkeys const * key) } -MathInset * MathFontOldInset::clone() const +auto_ptr MathFontOldInset::doClone() const { - return new MathFontOldInset(*this); + return auto_ptr(new MathFontOldInset(*this)); } -void MathFontOldInset::metrics(MathMetricsInfo & mi) const +void MathFontOldInset::metrics(MetricsInfo & mi, Dimension & dim) const { - MathFontSetChanger dummy(mi.base, key_->name.c_str()); - dim_ = cell(0).metrics(mi); - metricsMarkers(); + FontSetChanger dummy(mi.base, key_->name.c_str()); + cell(0).metrics(mi, dim); + metricsMarkers(dim); + dim_ = dim; } -void MathFontOldInset::draw(MathPainterInfo & pi, int x, int y) const +void MathFontOldInset::draw(PainterInfo & pi, int x, int y) const { - MathFontSetChanger dummy(pi.base, key_->name.c_str()); + FontSetChanger dummy(pi.base, key_->name.c_str()); cell(0).draw(pi, x + 1, y); drawMarkers(pi, x, y); } -void MathFontOldInset::metricsT(TextMetricsInfo const & mi) const +void MathFontOldInset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const { - dim_ = cell(0).metricsT(mi); + cell(0).metricsT(mi, dim); } @@ -64,7 +70,7 @@ void MathFontOldInset::write(WriteStream & os) const void MathFontOldInset::normalize(NormalStream & os) const { - os << "[font " << key_->name << " " << cell(0) << "]"; + os << "[font " << key_->name << ' ' << cell(0) << ']'; }