mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
236ea81bc5
Lsstream.h with support/std_sstream.h, support/LIstream.h with support/std_istream.h, support/LOstream.h with support/std_ostream.h. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7685 a592a061-630c-0410-9148-cb99ea01b6c8
57 lines
1.0 KiB
C
57 lines
1.0 KiB
C
/**
|
|
* \file math_ertinset.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 <config.h>
|
|
|
|
#include "math_ertinset.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "support/std_ostream.h"
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
auto_ptr<InsetBase> MathErtInset::clone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new MathErtInset(*this));
|
|
}
|
|
|
|
|
|
void MathErtInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
FontSetChanger dummy(mi.base, "lyxert");
|
|
MathTextInset::metrics(mi, dim_);
|
|
cache_.colinfo_[0].align_ = 'l';
|
|
metricsMarkers();
|
|
dim = dim_;
|
|
}
|
|
|
|
|
|
void MathErtInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
FontSetChanger dummy(pi.base, "lyxert");
|
|
MathTextInset::draw(pi, x + 1, y);
|
|
drawMarkers(pi, x, y);
|
|
}
|
|
|
|
|
|
void MathErtInset::write(WriteStream & os) const
|
|
{
|
|
if (os.latex())
|
|
os << cell(0);
|
|
else
|
|
os << "\\lyxert{" << cell(0) << '}';
|
|
}
|
|
|
|
|
|
void MathErtInset::infoize(std::ostream & os) const
|
|
{
|
|
os << "Box: Ert";
|
|
}
|