mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
58 lines
952 B
C++
58 lines
952 B
C++
|
/**
|
||
|
* \file InsetMathClass.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 "InsetMathClass.h"
|
||
|
|
||
|
#include "support/docstream.h"
|
||
|
|
||
|
|
||
|
namespace lyx {
|
||
|
|
||
|
InsetMathClass::InsetMathClass(Buffer * buf, MathClass mc)
|
||
|
: InsetMathNest(buf, 1), math_class_(mc)
|
||
|
{}
|
||
|
|
||
|
|
||
|
Inset * InsetMathClass::clone() const
|
||
|
{
|
||
|
return new InsetMathClass(*this);
|
||
|
}
|
||
|
|
||
|
|
||
|
void InsetMathClass::metrics(MetricsInfo & mi, Dimension & dim) const
|
||
|
{
|
||
|
cell(0).metrics(mi, dim);
|
||
|
metricsMarkers(dim);
|
||
|
}
|
||
|
|
||
|
|
||
|
void InsetMathClass::draw(PainterInfo & pi, int x, int y) const
|
||
|
{
|
||
|
cell(0).draw(pi, x + 1, y);
|
||
|
drawMarkers(pi, x, y);
|
||
|
}
|
||
|
|
||
|
|
||
|
docstring InsetMathClass::name() const
|
||
|
{
|
||
|
return class_to_string(math_class_);
|
||
|
}
|
||
|
|
||
|
|
||
|
void InsetMathClass::infoize(odocstream & os) const
|
||
|
{
|
||
|
os << name() << " ";
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace lyx
|