2001-11-05 17:08:45 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <cctype>
|
|
|
|
|
|
|
|
#include "math_stringinset.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2001-11-05 17:08:45 +00:00
|
|
|
#include "LColor.h"
|
|
|
|
#include "Painter.h"
|
2001-11-08 12:15:12 +00:00
|
|
|
#include "math_support.h"
|
2001-11-05 17:08:45 +00:00
|
|
|
#include "math_parser.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
|
|
|
MathStringInset::MathStringInset(string const & s, MathTextCodes t)
|
|
|
|
: str_(s), code_(t)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * MathStringInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathStringInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathStringInset::ascent() const
|
|
|
|
{
|
|
|
|
return mathed_string_ascent(code_, mi_, str_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathStringInset::descent() const
|
|
|
|
{
|
|
|
|
return mathed_string_descent(code_, mi_, str_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathStringInset::width() const
|
|
|
|
{
|
|
|
|
return mathed_string_width(code_, mi_, str_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathStringInset::metrics(MathMetricsInfo const & mi) const
|
|
|
|
{
|
|
|
|
mi_ = mi;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathStringInset::draw(Painter & pain, int x, int y) const
|
|
|
|
{
|
|
|
|
//lyxerr << "drawing '" << str_ << "' code: " << code_ << endl;
|
|
|
|
drawStr(pain, code_, mi_, x, y, str_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathStringInset::write(MathWriteInfo & os) const
|
|
|
|
{
|
|
|
|
if (math_font_name(code_))
|
2001-11-08 12:06:56 +00:00
|
|
|
os << '\\' << math_font_name(code_) << '{' << str_.c_str() << '}';
|
2001-11-05 17:08:45 +00:00
|
|
|
else
|
2001-11-08 12:06:56 +00:00
|
|
|
os << str_.c_str();
|
2001-11-05 17:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-08 12:06:56 +00:00
|
|
|
void MathStringInset::writeNormal(NormalStream & os) const
|
2001-11-05 17:08:45 +00:00
|
|
|
{
|
2001-11-08 12:06:56 +00:00
|
|
|
os << "[string " << str_.c_str() << ' ' << "mathalpha" << "]";
|
2001-11-05 17:08:45 +00:00
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
|
|
|
|
2001-11-07 17:30:26 +00:00
|
|
|
void MathStringInset::maplize(MapleStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-11-07 17:30:26 +00:00
|
|
|
if (code_ != LM_TC_VAR || str_.size() <= 1) {
|
|
|
|
os << str_.c_str();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert '*' between adjacent chars if type is LM_TC_VAR
|
|
|
|
os << str_[0];
|
|
|
|
for (string::size_type i = 1; i < str_.size(); ++i)
|
|
|
|
os << '*' << str_[i];
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-07 17:30:26 +00:00
|
|
|
void MathStringInset::octavize(OctaveStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-11-07 17:30:26 +00:00
|
|
|
if (code_ != LM_TC_VAR || str_.size() <= 1) {
|
|
|
|
os << str_.c_str();
|
|
|
|
return;
|
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
|
|
|
// insert '*' between adjacent chars if type is LM_TC_VAR
|
2001-11-07 17:30:26 +00:00
|
|
|
os << str_[0];
|
|
|
|
for (string::size_type i = 1; i < str_.size(); ++i)
|
|
|
|
os << '*' << str_[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathStringInset::mathmlize(MathMLStream & os) const
|
|
|
|
{
|
|
|
|
if (code_ == LM_TC_VAR)
|
|
|
|
os << "<mi>" << str_.c_str() << "</mi>";
|
|
|
|
else if (code_ == LM_TC_CONST)
|
|
|
|
os << "<mn>" << str_.c_str() << "</mn>";
|
|
|
|
else if (code_ == LM_TC_RM || code_ == LM_TC_TEXTRM)
|
|
|
|
os << "<mtext>" << str_.c_str() << "</mtext>";
|
|
|
|
else
|
|
|
|
os << str_.c_str();
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|