2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2007-04-25 03:01:35 +00:00
|
|
|
|
* \file InsetMathChar.cpp
|
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 Alejandro Aguilar Sierra
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-12-18 03:16:46 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathChar.h"
|
2007-11-05 23:46:17 +00:00
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "MathSupport.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
|
#include "MathStream.h"
|
2007-11-05 23:46:17 +00:00
|
|
|
|
#include "MetricsInfo.h"
|
2003-10-06 09:57:03 +00:00
|
|
|
|
|
2007-11-29 07:04:28 +00:00
|
|
|
|
#include "support/debug.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
|
#include "Dimension.h"
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "TextPainter.h"
|
2001-08-06 06:23:09 +00:00
|
|
|
|
|
2007-05-11 14:17:53 +00:00
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
|
#include "frontends/FontMetrics.h"
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2002-10-28 10:39:12 +00:00
|
|
|
|
extern bool has_math_fonts;
|
2002-03-20 07:30:32 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
2007-11-05 23:46:17 +00:00
|
|
|
|
static bool isBinaryOp(char_type c)
|
|
|
|
|
{
|
|
|
|
|
return support::contains("+-<>=/*", static_cast<char>(c));
|
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
|
2007-11-05 23:46:17 +00:00
|
|
|
|
static bool slanted(char_type c)
|
|
|
|
|
{
|
|
|
|
|
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
|
2001-08-17 15:47:02 +00:00
|
|
|
|
}
|
2001-08-06 06:23:09 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
InsetMathChar::InsetMathChar(char_type c)
|
2007-03-21 17:21:59 +00:00
|
|
|
|
: char_(c), kerning_(0)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
{}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
|
Inset * InsetMathChar::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
|
return new InsetMathChar(*this);
|
2001-08-06 06:23:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void InsetMathChar::metrics(MetricsInfo & mi, Dimension & dim) 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) {
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(mi.base, "cmr");
|
2006-12-04 10:45:43 +00:00
|
|
|
|
dim = theFontMetrics(mi.base.font).dimension(char_);
|
2002-10-28 10:39:12 +00:00
|
|
|
|
} else if ((char_ == '>' || char_ == '<') && has_math_fonts) {
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(mi.base, "cmm");
|
2006-12-04 10:45:43 +00:00
|
|
|
|
dim = theFontMetrics(mi.base.font).dimension(char_);
|
2003-10-02 13:41:00 +00:00
|
|
|
|
} else if (!slanted(char_) && mi.base.fontname == "mathnormal") {
|
2007-10-28 18:51:54 +00:00
|
|
|
|
ShapeChanger dummy(mi.base.font, UP_SHAPE);
|
2006-12-04 10:45:43 +00:00
|
|
|
|
dim = theFontMetrics(mi.base.font).dimension(char_);
|
2002-05-30 07:09:54 +00:00
|
|
|
|
} else {
|
2007-03-21 17:21:59 +00:00
|
|
|
|
frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
|
|
|
|
|
dim = fm.dimension(char_);
|
|
|
|
|
kerning_ = fm.rbearing(char_) - dim.wid;
|
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_))
|
2003-05-28 13:22:36 +00:00
|
|
|
|
dim.wid += static_cast<int>(0.5*em+0.5);
|
2002-10-28 10:39:12 +00:00
|
|
|
|
else if (char_ == '\'')
|
2003-05-28 13:22:36 +00:00
|
|
|
|
dim.wid += 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);
|
2006-12-04 10:45:43 +00:00
|
|
|
|
dim = theFontMetrics(font_).dimension(char_);
|
2002-03-20 07:30:32 +00:00
|
|
|
|
if (isBinaryOp(char_, code_))
|
2007-04-22 08:26:06 +00:00
|
|
|
|
dim.wid += 2 * theFontMetrics(font_).width(' ');
|
2006-09-16 18:11:38 +00:00
|
|
|
|
lyxerr << "InsetMathChar::metrics: " << dim << endl;
|
2002-05-30 07:09:54 +00:00
|
|
|
|
#endif
|
2001-08-06 17:20:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathChar::draw(PainterInfo & 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) {
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(pi.base, "cmr");
|
2002-10-28 10:39:12 +00:00
|
|
|
|
pi.draw(x, y, char_);
|
|
|
|
|
} else if ((char_ == '>' || char_ == '<') && has_math_fonts) {
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(pi.base, "cmm");
|
2002-10-28 10:39:12 +00:00
|
|
|
|
pi.draw(x, y, char_);
|
2003-10-02 13:41:00 +00:00
|
|
|
|
} else if (!slanted(char_) && pi.base.fontname == "mathnormal") {
|
2007-10-28 18:51:54 +00:00
|
|
|
|
ShapeChanger dummy(pi.base.font, UP_SHAPE);
|
2002-05-30 07:09:54 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathChar::metricsT(TextMetricsInfo const &, Dimension & dim) const
|
2002-03-19 16:55:58 +00:00
|
|
|
|
{
|
2003-05-28 13:22:36 +00:00
|
|
|
|
dim.wid = 1;
|
|
|
|
|
dim.asc = 1;
|
|
|
|
|
dim.des = 0;
|
2002-03-19 16:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathChar::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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathChar::write(WriteStream & os) const
|
2001-08-17 13:18:10 +00:00
|
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
|
os.os().put(char_);
|
2001-08-17 13:18:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathChar::normalize(NormalStream & os) const
|
2001-08-06 06:23:09 +00:00
|
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
|
os << "[char ";
|
|
|
|
|
os.os().put(char_);
|
|
|
|
|
os << " mathalpha]";
|
2001-08-06 06:23:09 +00:00
|
|
|
|
}
|
2001-08-09 08:53:16 +00:00
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
void InsetMathChar::octave(OctaveStream & os) const
|
2002-06-18 15:44:30 +00:00
|
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
|
os.os().put(char_);
|
2002-06-18 15:44:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void InsetMathChar::mathmlize(MathStream & ms) const
|
2005-07-14 22:41:59 +00:00
|
|
|
|
{
|
|
|
|
|
switch (char_) {
|
|
|
|
|
case '<': ms << "<"; break;
|
|
|
|
|
case '>': ms << ">"; break;
|
|
|
|
|
case '&': ms << "&"; break;
|
2006-10-22 10:15:23 +00:00
|
|
|
|
default: ms.os().put(char_); break;
|
2005-07-14 22:41:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
bool InsetMathChar::isRelOp() const
|
2001-08-09 08:53:16 +00:00
|
|
|
|
{
|
|
|
|
|
return char_ == '=' || char_ == '<' || char_ == '>';
|
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|