mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
6e3a75969b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17991 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.4 KiB
C++
77 lines
1.4 KiB
C++
/**
|
|
* \file InsetMathSize.cpp
|
|
* 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 <config.h>
|
|
|
|
#include "InsetMathSize.h"
|
|
#include "MathArray.h"
|
|
#include "MathParser.h"
|
|
#include "MathStream.h"
|
|
|
|
#include "support/convert.h"
|
|
#include "support/std_ostream.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
InsetMathSize::InsetMathSize(latexkeys const * l)
|
|
: InsetMathNest(1), key_(l), style_(Styles(convert<int>(l->extra)))
|
|
{}
|
|
|
|
|
|
auto_ptr<InsetBase> InsetMathSize::doClone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new InsetMathSize(*this));
|
|
}
|
|
|
|
|
|
bool InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
StyleChanger dummy(mi.base, style_);
|
|
cell(0).metrics(mi, dim);
|
|
metricsMarkers(dim);
|
|
if (dim_ == dim)
|
|
return false;
|
|
dim_ = dim;
|
|
return true;
|
|
}
|
|
|
|
|
|
void InsetMathSize::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
StyleChanger dummy(pi.base, style_);
|
|
cell(0).draw(pi, x + 1, y);
|
|
drawMarkers(pi, x, y);
|
|
}
|
|
|
|
|
|
void InsetMathSize::write(WriteStream & os) const
|
|
{
|
|
os << "{\\" << key_->name << ' ' << cell(0) << '}';
|
|
}
|
|
|
|
|
|
void InsetMathSize::normalize(NormalStream & os) const
|
|
{
|
|
os << '[' << key_->name << ' ' << cell(0) << ']';
|
|
}
|
|
|
|
|
|
void InsetMathSize::infoize(odocstream & os) const
|
|
{
|
|
os << "Size: " << key_->name;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|