mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 23:49:37 +00:00
a68e979350
By lynx: https://www.lyx.org/trac/attachment/ticket/12221/0003-tag-insertion-unification-for-bold-char-delim-dots-exfunc-.patch
92 lines
1.3 KiB
C++
92 lines
1.3 KiB
C++
/**
|
|
* \file InsetMathNumber.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 "InsetMathNumber.h"
|
|
#include "MathStream.h"
|
|
#include "MathSupport.h"
|
|
|
|
#include "MetricsInfo.h"
|
|
|
|
using namespace std;
|
|
|
|
|
|
namespace lyx {
|
|
|
|
InsetMathNumber::InsetMathNumber(docstring const & s)
|
|
: str_(s)
|
|
{}
|
|
|
|
|
|
Inset * InsetMathNumber::clone() const
|
|
{
|
|
return new InsetMathNumber(*this);
|
|
}
|
|
|
|
|
|
void InsetMathNumber::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
mathed_string_dim(mi.base.font, str_, dim);
|
|
}
|
|
|
|
|
|
void InsetMathNumber::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
pi.draw(x, y, str_);
|
|
}
|
|
|
|
|
|
void InsetMathNumber::normalize(NormalStream & os) const
|
|
{
|
|
os << "[number " << str_ << ']';
|
|
}
|
|
|
|
|
|
void InsetMathNumber::maple(MapleStream & os) const
|
|
{
|
|
os << str_;
|
|
}
|
|
|
|
|
|
void InsetMathNumber::mathematica(MathematicaStream & os) const
|
|
{
|
|
os << str_;
|
|
}
|
|
|
|
|
|
void InsetMathNumber::octave(OctaveStream & os) const
|
|
{
|
|
os << str_;
|
|
}
|
|
|
|
|
|
void InsetMathNumber::mathmlize(MathMLStream & ms) const
|
|
{
|
|
ms << MTagInline("mn")
|
|
<< str_
|
|
<< ETagInline("mn");
|
|
}
|
|
|
|
|
|
void InsetMathNumber::htmlize(HtmlStream & os) const
|
|
{
|
|
os << str_;
|
|
}
|
|
|
|
|
|
void InsetMathNumber::write(TeXMathStream & os) const
|
|
{
|
|
os << str_;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|