2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathString.C
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2001-12-05 08:04:20 +00:00
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
#include <config.h>
|
2001-11-05 17:08:45 +00:00
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathString.h"
|
|
|
|
|
#include "MathMLStream.h"
|
|
|
|
|
#include "MathStream.h"
|
|
|
|
|
#include "MathSupport.h"
|
2001-11-05 17:08:45 +00:00
|
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
|
using lyx::docstring;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
|
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
2001-11-05 17:08:45 +00:00
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathString::InsetMathString(string const & s)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
: str_(s)
|
2001-11-05 17:08:45 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetMathString::doClone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2006-09-16 18:11:38 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetMathString(*this));
|
2001-11-05 17:08:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-11-05 17:08:45 +00:00
|
|
|
|
{
|
2006-10-17 14:46:45 +00:00
|
|
|
|
// FIXME UNICODE
|
|
|
|
|
mathed_string_dim(mi.base.font, lyx::from_utf8(str_), dim);
|
2001-11-05 17:08:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::draw(PainterInfo & pi, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2001-11-05 17:08:45 +00:00
|
|
|
|
//lyxerr << "drawing '" << str_ << "' code: " << code_ << endl;
|
2006-10-17 14:46:45 +00:00
|
|
|
|
// FIXME UNICODE
|
|
|
|
|
docstring dstr = lyx::from_utf8(str_);
|
2006-08-13 22:54:59 +00:00
|
|
|
|
pi.draw(x, y, dstr);
|
2001-11-05 17:08:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::normalize(NormalStream & os) const
|
2001-11-05 17:08:45 +00:00
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << "[string " << str_ << ' ' << "mathalpha" << ']';
|
2001-11-05 17:08:45 +00:00
|
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::maple(MapleStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
|
{
|
2002-07-01 11:17:14 +00:00
|
|
|
|
if (/*code_ != LM_TC_VAR ||*/ str_.size() <= 1) {
|
2001-12-05 08:04:20 +00:00
|
|
|
|
os << ' ' << str_ << ' ';
|
2001-11-07 17:30:26 +00:00
|
|
|
|
return;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
}
|
2001-11-07 17:30:26 +00:00
|
|
|
|
|
|
|
|
|
// insert '*' between adjacent chars if type is LM_TC_VAR
|
|
|
|
|
os << str_[0];
|
2002-03-21 17:42:56 +00:00
|
|
|
|
for (string::size_type i = 1; i < str_.size(); ++i)
|
2002-06-25 13:19:50 +00:00
|
|
|
|
os << str_[i];
|
2001-11-07 08:51:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::mathematica(MathematicaStream & os) const
|
2002-07-01 11:17:14 +00:00
|
|
|
|
{
|
|
|
|
|
os << ' ' << str_ << ' ';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::octave(OctaveStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
|
if (/*code_ != LM_TC_VAR ||*/ str_.size() <= 1) {
|
2001-12-05 08:04:20 +00:00
|
|
|
|
os << ' ' << str_ << ' ';
|
2001-11-07 17:30:26 +00:00
|
|
|
|
return;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
}
|
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];
|
2002-03-21 17:42:56 +00:00
|
|
|
|
for (string::size_type i = 1; i < str_.size(); ++i)
|
2002-06-25 13:19:50 +00:00
|
|
|
|
os << str_[i];
|
2001-11-07 17:30:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::mathmlize(MathMLStream & os) const
|
2001-11-07 17:30:26 +00:00
|
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
|
/*
|
2001-11-07 17:30:26 +00:00
|
|
|
|
if (code_ == LM_TC_VAR)
|
2001-12-05 08:04:20 +00:00
|
|
|
|
os << "<mi> " << str_ << " </mi>";
|
2001-11-07 17:30:26 +00:00
|
|
|
|
else if (code_ == LM_TC_CONST)
|
2001-12-05 08:04:20 +00:00
|
|
|
|
os << "<mn> " << str_ << " </mn>";
|
2001-11-07 17:30:26 +00:00
|
|
|
|
else if (code_ == LM_TC_RM || code_ == LM_TC_TEXTRM)
|
2001-12-05 08:04:20 +00:00
|
|
|
|
os << "<mtext> " << str_ << " </mtext>";
|
2001-11-07 17:30:26 +00:00
|
|
|
|
else
|
2002-05-30 07:09:54 +00:00
|
|
|
|
*/
|
2001-12-05 08:04:20 +00:00
|
|
|
|
os << str_;
|
2001-11-07 08:51:35 +00:00
|
|
|
|
}
|
2001-11-15 15:14:27 +00:00
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathString::write(WriteStream & os) const
|
2001-11-15 15:14:27 +00:00
|
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
|
os << str_;
|
2001-11-15 15:14:27 +00:00
|
|
|
|
}
|