2001-08-06 06:23:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
#include <cctype>
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
#include "math_charinset.h"
|
|
|
|
#include "LColor.h"
|
|
|
|
#include "Painter.h"
|
|
|
|
#include "support/LOstream.h"
|
|
|
|
#include "mathed/support.h"
|
|
|
|
#include "math_parser.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
MathCharInset::MathCharInset(char c)
|
2001-08-30 06:52:15 +00:00
|
|
|
: char_(c), code_(nativeCode(c)), needbs_(false)
|
2001-08-17 09:48:24 +00:00
|
|
|
{
|
2001-08-17 15:47:02 +00:00
|
|
|
//lyxerr << "creating char '" << char_ << "' with code " << int(code_) << endl;
|
2001-08-17 09:48:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
MathCharInset::MathCharInset(char c, MathTextCodes t)
|
2001-08-30 06:52:15 +00:00
|
|
|
: char_(c), code_((t == LM_TC_MIN) ? nativeCode(c) : t), needbs_(false)
|
|
|
|
{
|
|
|
|
//lyxerr << "creating char '" << char_ << "' with code " << int(code_) << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathCharInset::MathCharInset(char c, MathTextCodes t, bool needbs)
|
|
|
|
: char_(c), code_((t == LM_TC_MIN) ? nativeCode(c) : t), needbs_(needbs)
|
2001-08-17 15:47:02 +00:00
|
|
|
{
|
|
|
|
//lyxerr << "creating char '" << char_ << "' with code " << int(code_) << endl;
|
|
|
|
}
|
2001-08-06 06:23:09 +00:00
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
MathTextCodes MathCharInset::nativeCode(char c) const
|
|
|
|
{
|
|
|
|
if (isalpha(c))
|
|
|
|
return LM_TC_VAR;
|
2001-08-28 13:34:04 +00:00
|
|
|
if (strchr("#$%{|}", c))
|
|
|
|
return LM_TC_SPECIAL;
|
|
|
|
//if (strchr("0123456789;:!|[]().,?+/-*<>=", c)
|
2001-08-17 15:47:02 +00:00
|
|
|
return LM_TC_CONST;
|
2001-08-17 09:48:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
MathInset * MathCharInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathCharInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathCharInset::ascent() const
|
|
|
|
{
|
|
|
|
return mathed_char_ascent(code_, size(), char_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathCharInset::descent() const
|
|
|
|
{
|
|
|
|
return mathed_char_descent(code_, size(), char_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathCharInset::width() const
|
|
|
|
{
|
|
|
|
return mathed_char_width(code_, size(), char_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 17:20:26 +00:00
|
|
|
void MathCharInset::metrics(MathStyles st) const
|
|
|
|
{
|
|
|
|
size_ = st;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathCharInset::draw(Painter & pain, int x, int y) const
|
2001-08-06 06:23:09 +00:00
|
|
|
{
|
|
|
|
xo(x);
|
|
|
|
yo(y);
|
2001-08-17 15:47:02 +00:00
|
|
|
//lyxerr << "drawing '" << char_ << "' code: " << code_ << endl;
|
2001-08-06 06:23:09 +00:00
|
|
|
drawChar(pain, code_, size_, x, y, char_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-17 13:18:10 +00:00
|
|
|
void MathCharInset::writeHeader(std::ostream & os) const
|
2001-08-06 06:23:09 +00:00
|
|
|
{
|
2001-08-08 15:35:49 +00:00
|
|
|
if (code_ >= LM_TC_RM && code_ <= LM_TC_TEXTRM)
|
|
|
|
os << '\\' << math_font_name[code_ - LM_TC_RM] << '{';
|
2001-08-17 13:18:10 +00:00
|
|
|
}
|
2001-08-08 15:35:49 +00:00
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
|
2001-08-17 13:18:10 +00:00
|
|
|
void MathCharInset::writeTrailer(std::ostream & os) const
|
|
|
|
{
|
2001-08-06 06:23:09 +00:00
|
|
|
if (code_ >= LM_TC_RM && code_ <= LM_TC_TEXTRM)
|
|
|
|
os << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-17 13:18:10 +00:00
|
|
|
void MathCharInset::writeRaw(std::ostream & os) const
|
|
|
|
{
|
2001-08-30 06:52:15 +00:00
|
|
|
if (needbs_)
|
|
|
|
os << "\\";
|
2001-08-17 13:18:10 +00:00
|
|
|
os << char_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathCharInset::write(std::ostream & os, bool) const
|
|
|
|
{
|
|
|
|
writeHeader(os);
|
|
|
|
writeRaw(os);
|
|
|
|
writeTrailer(os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
void MathCharInset::writeNormal(std::ostream & os) const
|
|
|
|
{
|
2001-08-30 06:52:15 +00:00
|
|
|
if (needbs_)
|
|
|
|
os << "\\";
|
2001-08-08 15:35:49 +00:00
|
|
|
os << char_;
|
2001-08-06 06:23:09 +00:00
|
|
|
}
|
2001-08-09 08:53:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool MathCharInset::isRelOp() const
|
|
|
|
{
|
|
|
|
return char_ == '=' || char_ == '<' || char_ == '>';
|
|
|
|
}
|
2001-08-10 13:17:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathCharInset::handleFont(MathTextCodes t)
|
|
|
|
{
|
|
|
|
code_ = (code_ == t) ? LM_TC_VAR : t;
|
|
|
|
}
|