lyx_mirror/src/mathed/math_fontoldinset.C

81 lines
1.6 KiB
C++
Raw Normal View History

/**
* \file math_fontoldinset.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Andr<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "math_fontoldinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_parser.h"
#include "math_streamstr.h"
#include "support/std_ostream.h"
using std::auto_ptr;
MathFontOldInset::MathFontOldInset(latexkeys const * key)
: MathNestInset(1), key_(key)
{
//lock(true);
}
auto_ptr<InsetBase> MathFontOldInset::clone() const
{
return auto_ptr<InsetBase>(new MathFontOldInset(*this));
}
void MathFontOldInset::metrics(MetricsInfo & mi, Dimension & dim) const
{
FontSetChanger dummy(mi.base, key_->name.c_str());
cell(0).metrics(mi, dim);
metricsMarkers(dim);
dim_ = dim;
}
void MathFontOldInset::draw(PainterInfo & pi, int x, int y) const
{
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, Dimension & dim) const
{
cell(0).metricsT(mi, dim);
}
void MathFontOldInset::drawT(TextPainter & pain, int x, int y) const
{
cell(0).drawT(pain, x, y);
}
void MathFontOldInset::write(WriteStream & os) const
{
os << "{\\" << key_->name << ' ' << cell(0) << '}';
}
void MathFontOldInset::normalize(NormalStream & os) const
{
os << "[font " << key_->name << ' ' << cell(0) << ']';
}
void MathFontOldInset::infoize(std::ostream & os) const
{
os << "Font: " << key_->name;
}