2002-09-11 09:14:57 +00:00
|
|
|
|
2001-12-05 08:04:20 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-07-27 10:08:04 +00:00
|
|
|
#include "math_symbolinset.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2001-12-05 08:04:20 +00:00
|
|
|
#include "math_streamstr.h"
|
2001-11-08 12:15:12 +00:00
|
|
|
#include "math_support.h"
|
2001-11-09 18:02:20 +00:00
|
|
|
#include "math_parser.h"
|
2002-01-18 14:27:54 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2001-11-09 14:23:44 +00:00
|
|
|
#include "debug.h"
|
2001-02-14 15:00:50 +00:00
|
|
|
|
2001-07-27 10:08:04 +00:00
|
|
|
MathSymbolInset::MathSymbolInset(const latexkeys * l)
|
2001-10-31 10:54:34 +00:00
|
|
|
: sym_(l), h_(0)
|
|
|
|
{}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
|
|
|
2001-11-09 16:27:44 +00:00
|
|
|
MathSymbolInset::MathSymbolInset(const char * name)
|
|
|
|
: sym_(in_word_set(name)), h_(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2001-12-05 08:04:20 +00:00
|
|
|
MathSymbolInset::MathSymbolInset(string const & name)
|
|
|
|
: sym_(in_word_set(name.c_str())), h_(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2001-11-09 16:27:44 +00:00
|
|
|
|
2001-07-27 10:08:04 +00:00
|
|
|
MathInset * MathSymbolInset::clone() const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-07-27 10:08:04 +00:00
|
|
|
return new MathSymbolInset(*this);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
string MathSymbolInset::name() const
|
|
|
|
{
|
|
|
|
return sym_->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
void MathSymbolInset::metrics(MetricsInfo & mi) const
|
2002-05-30 07:09:54 +00:00
|
|
|
{
|
|
|
|
//lyxerr << "metrics: symbol: '" << sym_->name
|
|
|
|
// << "' in font: '" << sym_->inset
|
|
|
|
// << "' drawn as: '" << sym_->draw
|
|
|
|
// << "'\n";
|
2002-10-17 13:15:25 +00:00
|
|
|
|
2002-10-28 10:39:12 +00:00
|
|
|
int const em = mathed_char_width(mi.base.font, 'M');
|
2003-03-21 14:20:48 +00:00
|
|
|
FontSetChanger dummy(mi.base, sym_->inset.c_str());
|
2002-07-11 11:27:24 +00:00
|
|
|
mathed_string_dim(mi.base.font, sym_->draw, dim_);
|
|
|
|
// correct height for broken cmex and wasy font
|
2002-07-10 06:12:00 +00:00
|
|
|
if (sym_->inset == "cmex" || sym_->inset == "wasy") {
|
2003-05-27 13:55:03 +00:00
|
|
|
h_ = 4 * dim_.des / 5;
|
|
|
|
dim_.asc += h_;
|
|
|
|
dim_.des -= h_;
|
2001-08-30 22:42:26 +00:00
|
|
|
}
|
2002-07-08 13:03:37 +00:00
|
|
|
// seperate things a bit
|
2002-10-21 13:38:02 +00:00
|
|
|
if (isRelOp())
|
2003-05-27 13:55:03 +00:00
|
|
|
dim_.wid += static_cast<int>(0.5*em+0.5);
|
2002-10-17 13:15:25 +00:00
|
|
|
else
|
2003-05-27 13:55:03 +00:00
|
|
|
dim_.wid += static_cast<int>(0.1667*em+0.5);
|
2002-06-18 15:44:30 +00:00
|
|
|
|
|
|
|
scriptable_ = false;
|
|
|
|
if (mi.base.style == LM_ST_DISPLAY)
|
|
|
|
if (sym_->inset == "cmex" || sym_->extra == "funclim")
|
|
|
|
scriptable_ = true;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
void MathSymbolInset::draw(PainterInfo & pi, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
//lyxerr << "metrics: symbol: '" << sym_->name
|
|
|
|
// << "' in font: '" << sym_->inset
|
|
|
|
// << "' drawn as: '" << sym_->draw
|
|
|
|
// << "'\n";
|
2002-10-21 13:38:02 +00:00
|
|
|
int const em = mathed_char_width(pi.base.font, 'M');
|
2001-10-31 10:54:34 +00:00
|
|
|
if (isRelOp())
|
2002-10-17 13:15:25 +00:00
|
|
|
x += static_cast<int>(0.25*em+0.5);
|
|
|
|
else
|
2002-10-28 10:39:12 +00:00
|
|
|
x += static_cast<int>(0.0833*em+0.5);
|
2002-10-17 13:15:25 +00:00
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
FontSetChanger dummy(pi.base, sym_->inset.c_str());
|
2002-05-30 07:09:54 +00:00
|
|
|
drawStr(pi, pi.base.font, x, y - h_, sym_->draw);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
2001-08-09 08:53:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool MathSymbolInset::isRelOp() const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
return sym_->extra == "mathrel";
|
2001-08-30 22:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathSymbolInset::isScriptable() const
|
2001-09-11 10:58:17 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
return scriptable_;
|
2001-09-11 10:58:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathSymbolInset::takesLimits() const
|
2001-08-30 22:42:26 +00:00
|
|
|
{
|
2002-06-18 15:44:30 +00:00
|
|
|
return
|
|
|
|
sym_->inset == "cmex" ||
|
|
|
|
sym_->inset == "lyxboldsymb" ||
|
|
|
|
sym_->extra == "funclim";
|
2001-08-09 08:53:16 +00:00
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
|
2002-01-18 14:27:54 +00:00
|
|
|
void MathSymbolInset::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
if (sym_->inset == "msa" || sym_->inset == "msb")
|
2002-01-18 14:27:54 +00:00
|
|
|
features.require("amssymb");
|
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
void MathSymbolInset::normalize(NormalStream & os) const
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
os << "[symbol " << name() << ']';
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathSymbolInset::maple(MapleStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-11-09 14:23:44 +00:00
|
|
|
if (name() == "cdot")
|
2001-11-07 17:30:26 +00:00
|
|
|
os << '*';
|
2002-06-25 13:19:50 +00:00
|
|
|
else if (name() == "infty")
|
|
|
|
os << "infinity";
|
2001-11-07 17:30:26 +00:00
|
|
|
else
|
2001-12-05 08:04:20 +00:00
|
|
|
os << name();
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathSymbolInset::maxima(MaximaStream & os) const
|
2002-10-28 17:15:19 +00:00
|
|
|
{
|
|
|
|
if (name() == "cdot")
|
|
|
|
os << '*';
|
|
|
|
else if (name() == "infty")
|
|
|
|
os << "INF";
|
|
|
|
else
|
|
|
|
os << name();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathSymbolInset::mathematica(MathematicaStream & os) const
|
2002-07-01 11:17:14 +00:00
|
|
|
{
|
|
|
|
if ( name() == "pi") { os << "Pi"; return;}
|
|
|
|
if ( name() == "infty") { os << "Infinity"; return;}
|
|
|
|
os << name();
|
|
|
|
}
|
|
|
|
|
2001-11-07 08:51:35 +00:00
|
|
|
|
2001-11-09 18:02:20 +00:00
|
|
|
char const * MathMLtype(string const & s)
|
|
|
|
{
|
|
|
|
if (s == "mathop")
|
|
|
|
return "mo";
|
|
|
|
return "mi";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-09 10:22:35 +00:00
|
|
|
bool MathSymbolInset::match(MathAtom const & at) const
|
2001-11-16 12:00:27 +00:00
|
|
|
{
|
2002-08-09 10:22:35 +00:00
|
|
|
MathSymbolInset const * q = at->asSymbolInset();
|
2001-11-16 12:00:27 +00:00
|
|
|
return q && name() == q->name();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-07 17:30:26 +00:00
|
|
|
void MathSymbolInset::mathmlize(MathMLStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
char const * type = MathMLtype(sym_->extra);
|
2001-11-09 18:55:03 +00:00
|
|
|
os << '<' << type << "> ";
|
|
|
|
if (sym_->xmlname == "x") // unknown so far
|
2001-12-05 08:04:20 +00:00
|
|
|
os << name();
|
2001-11-09 18:55:03 +00:00
|
|
|
else
|
2001-12-05 08:04:20 +00:00
|
|
|
os << sym_->xmlname;
|
2001-11-09 18:55:03 +00:00
|
|
|
os << " </" << type << '>';
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathSymbolInset::octave(OctaveStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-11-09 14:23:44 +00:00
|
|
|
if (name() == "cdot")
|
2001-11-07 17:30:26 +00:00
|
|
|
os << '*';
|
|
|
|
else
|
2001-12-05 08:04:20 +00:00
|
|
|
os << name();
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathSymbolInset::write(WriteStream & os) const
|
|
|
|
{
|
2002-08-22 10:04:11 +00:00
|
|
|
os << '\\' << name();
|
|
|
|
os.pendingSpace(true);
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
2001-11-07 17:30:26 +00:00
|
|
|
|
|
|
|
|
2003-01-07 11:24:43 +00:00
|
|
|
void MathSymbolInset::infoize2(std::ostream & os) const
|
2002-01-16 14:24:38 +00:00
|
|
|
{
|
2002-07-08 13:03:37 +00:00
|
|
|
os << "Symbol: " << name();
|
2002-01-16 14:24:38 +00:00
|
|
|
}
|