2001-12-18 03:16:46 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_charinset.h"
|
|
|
|
#include "LColor.h"
|
2002-05-23 09:21:32 +00:00
|
|
|
#include "frontends/Painter.h"
|
2002-05-24 14:34:32 +00:00
|
|
|
#include "frontends/font_metrics.h"
|
2001-08-06 06:23:09 +00:00
|
|
|
#include "support/LOstream.h"
|
|
|
|
#include "debug.h"
|
2002-03-20 07:30:32 +00:00
|
|
|
#include "math_support.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2002-01-18 14:27:54 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2002-03-19 16:55:58 +00:00
|
|
|
#include "textpainter.h"
|
2001-08-06 06:23:09 +00:00
|
|
|
|
2002-03-20 10:22:23 +00:00
|
|
|
#include <cctype>
|
|
|
|
#include <cstring>
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::ostream;
|
2002-03-20 07:30:32 +00:00
|
|
|
using std::endl;
|
2002-03-20 12:14:41 +00:00
|
|
|
|
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
2002-03-20 10:22:23 +00:00
|
|
|
using std::strchr;
|
2002-05-29 16:21:03 +00:00
|
|
|
using std::isalpha;
|
2002-03-20 12:14:41 +00:00
|
|
|
#endif
|
2002-03-20 07:30:32 +00:00
|
|
|
|
2002-10-28 10:39:12 +00:00
|
|
|
extern bool has_math_fonts;
|
2002-03-20 07:30:32 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
namespace {
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
bool isBinaryOp(char c)
|
|
|
|
{
|
|
|
|
return strchr("+-<>=/*", c);
|
|
|
|
}
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
bool slanted(char c)
|
|
|
|
{
|
|
|
|
//if (strchr("0123456789;:!|[]().,?+/-*<>=", c)
|
2002-06-05 07:12:05 +00:00
|
|
|
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
2001-08-17 15:47:02 +00:00
|
|
|
}
|
2001-08-06 06:23:09 +00:00
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
MathCharInset::MathCharInset(char c)
|
|
|
|
: char_(c)
|
|
|
|
{}
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
2001-08-06 06:23:09 +00:00
|
|
|
MathInset * MathCharInset::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2001-08-06 06:23:09 +00:00
|
|
|
return new MathCharInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathCharInset::metrics(MathMetricsInfo & mi) const
|
2001-08-06 17:20:26 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
#if 1
|
2002-10-28 10:39:12 +00:00
|
|
|
if (char_ == '=' && has_math_fonts) {
|
|
|
|
MathFontSetChanger dummy(mi.base, "cmr");
|
|
|
|
mathed_char_dim(mi.base.font, char_, dim_);
|
|
|
|
} else if ((char_ == '>' || char_ == '<') && has_math_fonts) {
|
|
|
|
MathFontSetChanger dummy(mi.base, "cmm");
|
|
|
|
mathed_char_dim(mi.base.font, char_, dim_);
|
|
|
|
} else if (slanted(char_) && mi.base.fontname == "mathnormal") {
|
2002-05-30 07:09:54 +00:00
|
|
|
MathShapeChanger dummy(mi.base.font, LyXFont::ITALIC_SHAPE);
|
2002-07-11 11:27:24 +00:00
|
|
|
mathed_char_dim(mi.base.font, char_, dim_);
|
2002-05-30 07:09:54 +00:00
|
|
|
} else {
|
2002-07-11 11:27:24 +00:00
|
|
|
mathed_char_dim(mi.base.font, char_, dim_);
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
2002-10-28 10:39:12 +00:00
|
|
|
int const em = mathed_char_width(mi.base.font, 'M');
|
2002-05-30 07:09:54 +00:00
|
|
|
if (isBinaryOp(char_))
|
2002-10-28 10:39:12 +00:00
|
|
|
dim_.w += static_cast<int>(0.5*em+0.5);
|
|
|
|
else if (char_ == '\'')
|
|
|
|
dim_.w += static_cast<int>(0.1667*em+0.5);
|
2002-05-30 07:09:54 +00:00
|
|
|
#else
|
2002-03-19 16:55:58 +00:00
|
|
|
whichFont(font_, code_, mi);
|
2002-07-11 11:27:24 +00:00
|
|
|
mathed_char_dim(font_, char_, dim_);
|
2002-03-20 07:30:32 +00:00
|
|
|
if (isBinaryOp(char_, code_))
|
2002-05-24 14:34:32 +00:00
|
|
|
width_ += 2 * font_metrics::width(' ', font_);
|
2002-07-30 13:56:02 +00:00
|
|
|
lyxerr << "MathCharInset::metrics: " << dim_ << "\n";
|
2002-05-30 07:09:54 +00:00
|
|
|
#endif
|
2001-08-06 17:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathCharInset::draw(MathPainterInfo & pi, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2002-06-05 07:12:05 +00:00
|
|
|
//lyxerr << "drawing '" << char_ << "' font: " << pi.base.fontname << endl;
|
2002-10-28 10:39:12 +00:00
|
|
|
int const em = mathed_char_width(pi.base.font, 'M');
|
2002-05-30 07:09:54 +00:00
|
|
|
if (isBinaryOp(char_))
|
2002-10-28 10:39:12 +00:00
|
|
|
x += static_cast<int>(0.25*em+0.5);
|
|
|
|
else if (char_ == '\'')
|
|
|
|
x += static_cast<int>(0.0833*em+0.5);
|
2002-05-30 07:09:54 +00:00
|
|
|
#if 1
|
2002-10-28 10:39:12 +00:00
|
|
|
if (char_ == '=' && has_math_fonts) {
|
|
|
|
MathFontSetChanger dummy(pi.base, "cmr");
|
|
|
|
pi.draw(x, y, char_);
|
|
|
|
} else if ((char_ == '>' || char_ == '<') && has_math_fonts) {
|
|
|
|
MathFontSetChanger dummy(pi.base, "cmm");
|
|
|
|
pi.draw(x, y, char_);
|
|
|
|
} else if (slanted(char_) && pi.base.fontname == "mathnormal") {
|
2002-05-30 07:09:54 +00:00
|
|
|
MathShapeChanger dummy(pi.base.font, LyXFont::ITALIC_SHAPE);
|
|
|
|
pi.draw(x, y, char_);
|
|
|
|
} else {
|
|
|
|
pi.draw(x, y, char_);
|
|
|
|
}
|
|
|
|
#else
|
2002-03-19 16:55:58 +00:00
|
|
|
drawChar(pain, font_, x, y, char_);
|
2002-05-30 07:09:54 +00:00
|
|
|
#endif
|
2002-03-19 16:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 06:57:13 +00:00
|
|
|
void MathCharInset::metricsT(TextMetricsInfo const &) const
|
2002-03-19 16:55:58 +00:00
|
|
|
{
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.w = 1;
|
|
|
|
dim_.a = 1;
|
|
|
|
dim_.d = 0;
|
2002-03-19 16:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 06:57:13 +00:00
|
|
|
void MathCharInset::drawT(TextPainter & pain, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2002-03-20 07:30:32 +00:00
|
|
|
//lyxerr << "drawing text '" << char_ << "' code: " << code_ << endl;
|
2002-03-19 16:55:58 +00:00
|
|
|
pain.draw(x, y, char_);
|
2001-08-06 06:23:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathCharInset::write(WriteStream & os) const
|
2001-08-17 13:18:10 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
os << char_;
|
2001-08-17 13:18:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathCharInset::normalize(NormalStream & os) const
|
2001-08-06 06:23:09 +00:00
|
|
|
{
|
2001-10-24 16:10:38 +00:00
|
|
|
os << "[char " << char_ << " " << "mathalpha" << "]";
|
2001-08-06 06:23:09 +00:00
|
|
|
}
|
2001-08-09 08:53:16 +00:00
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
void MathCharInset::octavize(OctaveStream & os) const
|
|
|
|
{
|
|
|
|
os << char_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-09 08:53:16 +00:00
|
|
|
bool MathCharInset::isRelOp() const
|
|
|
|
{
|
|
|
|
return char_ == '=' || char_ == '<' || char_ == '>';
|
|
|
|
}
|
2001-08-10 13:17:39 +00:00
|
|
|
|
|
|
|
|
2002-08-08 16:08:11 +00:00
|
|
|
bool MathCharInset::match(MathInset const * p) const
|
2001-11-16 09:55:37 +00:00
|
|
|
{
|
|
|
|
MathCharInset const * q = p->asCharInset();
|
2002-05-30 07:09:54 +00:00
|
|
|
return q && char_ == q->char_;
|
2001-11-16 09:55:37 +00:00
|
|
|
}
|