2001-02-13 13:28:32 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "mathed/support.h"
|
|
|
|
#include "lyxfont.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "math_defs.h"
|
2001-07-09 16:59:57 +00:00
|
|
|
#include "math_parser.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "Painter.h"
|
2001-02-13 19:10:18 +00:00
|
|
|
#include "debug.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-13 16:40:19 +00:00
|
|
|
using std::sort;
|
|
|
|
using std::lower_bound;
|
|
|
|
using std::endl;
|
|
|
|
using std::max;
|
|
|
|
|
2001-07-13 11:32:22 +00:00
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
bool MathIsAlphaFont(MathTextCodes x)
|
2001-07-13 11:32:22 +00:00
|
|
|
{
|
|
|
|
return LM_TC_VAR <= x && x <= LM_TC_TEXTRM;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
bool MathIsBinary(MathTextCodes x)
|
2001-07-13 11:32:22 +00:00
|
|
|
{
|
2001-07-26 15:28:45 +00:00
|
|
|
return x == LM_TC_BOP;
|
2001-07-13 11:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
bool MathIsSymbol(MathTextCodes x)
|
2001-07-13 11:32:22 +00:00
|
|
|
{
|
2001-07-26 15:28:45 +00:00
|
|
|
return x == LM_TC_SYMB || x == LM_TC_BSYM;
|
2001-07-13 11:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-07-13 09:10:59 +00:00
|
|
|
///
|
|
|
|
class Matrix {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
typedef float matriz_data[2][2];
|
|
|
|
///
|
|
|
|
Matrix();
|
|
|
|
///
|
2001-07-13 09:54:32 +00:00
|
|
|
void rotate(int);
|
2001-07-13 09:10:59 +00:00
|
|
|
///
|
2001-07-13 09:54:32 +00:00
|
|
|
void escalate(float, float);
|
2001-07-13 09:10:59 +00:00
|
|
|
///
|
2001-07-13 09:54:32 +00:00
|
|
|
void transform(float, float, float &, float &);
|
2001-07-13 09:10:59 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
matriz_data m_;
|
|
|
|
///
|
2001-07-13 09:54:32 +00:00
|
|
|
void multiply(matriz_data & a);
|
2001-07-13 09:10:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Matrix::Matrix()
|
|
|
|
{
|
2001-07-13 09:54:32 +00:00
|
|
|
m_[0][0] = 1;
|
|
|
|
m_[0][1] = 0;
|
|
|
|
m_[1][0] = 0;
|
|
|
|
m_[1][1] = 1;
|
2001-07-13 09:10:59 +00:00
|
|
|
}
|
|
|
|
|
2001-07-13 09:54:32 +00:00
|
|
|
void Matrix::rotate(int code)
|
2001-07-13 09:10:59 +00:00
|
|
|
{
|
|
|
|
matriz_data r;
|
2001-07-13 09:54:32 +00:00
|
|
|
r[0][0] = 1;
|
|
|
|
r[0][1] = 0;
|
|
|
|
r[1][0] = 0;
|
|
|
|
r[1][1] = 1;
|
2001-07-13 09:10:59 +00:00
|
|
|
float const cs = (code & 1) ? 0 : (1 - code);
|
|
|
|
float const sn = (code & 1) ? (2 - code) : 0;
|
|
|
|
r[0][0] = cs;
|
|
|
|
r[0][1] = sn;
|
|
|
|
r[1][0] = -r[0][1];
|
|
|
|
r[1][1] = r[0][0];
|
2001-07-13 09:54:32 +00:00
|
|
|
multiply(r);
|
2001-07-13 09:10:59 +00:00
|
|
|
}
|
|
|
|
|
2001-07-13 09:54:32 +00:00
|
|
|
void Matrix::escalate(float x, float y)
|
2001-07-13 09:10:59 +00:00
|
|
|
{
|
|
|
|
matriz_data s;
|
|
|
|
s[0][0] = x;
|
2001-07-13 09:54:32 +00:00
|
|
|
s[0][1] = 0;
|
|
|
|
s[1][0] = 0;
|
2001-07-13 09:10:59 +00:00
|
|
|
s[1][1] = y;
|
2001-07-13 09:54:32 +00:00
|
|
|
multiply(s);
|
2001-07-13 09:10:59 +00:00
|
|
|
}
|
|
|
|
|
2001-07-13 09:54:32 +00:00
|
|
|
void Matrix::multiply(matriz_data & a)
|
2001-07-13 09:10:59 +00:00
|
|
|
{
|
|
|
|
matriz_data c;
|
|
|
|
c[0][0] = a[0][0] * m_[0][0] + a[0][1] * m_[1][0];
|
|
|
|
c[1][0] = a[1][0] * m_[0][0] + a[1][1] * m_[1][0];
|
|
|
|
c[0][1] = a[0][0] * m_[0][1] + a[0][1] * m_[1][1];
|
|
|
|
c[1][1] = a[1][0] * m_[0][1] + a[1][1] * m_[1][1];
|
2001-07-13 09:54:32 +00:00
|
|
|
m_[0][0] = c[0][0];
|
|
|
|
m_[0][1] = c[0][1];
|
|
|
|
m_[1][0] = c[1][0];
|
|
|
|
m_[1][1] = c[1][1];
|
2001-07-13 09:10:59 +00:00
|
|
|
}
|
|
|
|
|
2001-07-13 09:54:32 +00:00
|
|
|
void Matrix::transform(float xp, float yp, float & x, float & y)
|
2001-07-13 09:10:59 +00:00
|
|
|
{
|
|
|
|
x = m_[0][0] * xp + m_[0][1] * yp;
|
|
|
|
y = m_[1][0] * xp + m_[1][1] * yp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
LyXFont * Math_Fonts = 0;
|
|
|
|
|
|
|
|
void mathed_init_fonts()
|
|
|
|
{
|
|
|
|
Math_Fonts = new LyXFont[8]; //DEC cxx cannot initialize all fonts
|
|
|
|
//at once (JMarc) rc
|
|
|
|
|
|
|
|
for (int i = 0 ; i < 8 ; ++i) {
|
|
|
|
Math_Fonts[i] = LyXFont(LyXFont::ALL_SANE);
|
|
|
|
}
|
|
|
|
|
|
|
|
Math_Fonts[0].setShape(LyXFont::ITALIC_SHAPE);
|
|
|
|
|
|
|
|
Math_Fonts[1].setFamily(LyXFont::SYMBOL_FAMILY);
|
|
|
|
|
|
|
|
Math_Fonts[2].setFamily(LyXFont::SYMBOL_FAMILY);
|
|
|
|
Math_Fonts[2].setShape(LyXFont::ITALIC_SHAPE);
|
|
|
|
|
|
|
|
Math_Fonts[3].setSeries(LyXFont::BOLD_SERIES);
|
|
|
|
|
|
|
|
Math_Fonts[4].setFamily(LyXFont::SANS_FAMILY);
|
|
|
|
Math_Fonts[4].setShape(LyXFont::ITALIC_SHAPE);
|
|
|
|
|
|
|
|
Math_Fonts[5].setFamily(LyXFont::TYPEWRITER_FAMILY);
|
|
|
|
|
|
|
|
Math_Fonts[6].setFamily(LyXFont::ROMAN_FAMILY);
|
|
|
|
|
|
|
|
Math_Fonts[7].setFamily(LyXFont::SANS_FAMILY);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont WhichFont(MathTextCodes type, MathStyles size)
|
|
|
|
{
|
|
|
|
LyXFont f;
|
|
|
|
|
|
|
|
if (!Math_Fonts)
|
|
|
|
mathed_init_fonts();
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case LM_TC_SYMB:
|
|
|
|
case LM_TC_BSYM:
|
|
|
|
f = Math_Fonts[2];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TC_VAR:
|
|
|
|
case LM_TC_IT:
|
|
|
|
f = Math_Fonts[0];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TC_BF:
|
|
|
|
f = Math_Fonts[3];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TC_SF:
|
|
|
|
f = Math_Fonts[7];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TC_CAL:
|
|
|
|
f = Math_Fonts[4];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TC_TT:
|
|
|
|
f = Math_Fonts[5];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TC_SPECIAL: //f = Math_Fonts[0]; break;
|
|
|
|
case LM_TC_TEXTRM:
|
|
|
|
case LM_TC_TEX:
|
|
|
|
case LM_TC_RM:
|
|
|
|
f = Math_Fonts[6];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
f = Math_Fonts[1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case LM_ST_DISPLAY:
|
|
|
|
if (type == LM_TC_BSYM) {
|
|
|
|
f.incSize();
|
|
|
|
f.incSize();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_ST_TEXT:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_ST_SCRIPT:
|
2001-07-24 16:55:47 +00:00
|
|
|
f.decSize();
|
2001-07-20 14:54:13 +00:00
|
|
|
f.decSize();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_ST_SCRIPTSCRIPT:
|
2001-07-24 16:55:47 +00:00
|
|
|
f.decSize();
|
2001-07-20 14:54:13 +00:00
|
|
|
f.decSize();
|
|
|
|
f.decSize();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
lyxerr << "Math Error: wrong font size: " << size << endl;
|
|
|
|
break;
|
|
|
|
}
|
2001-07-13 09:10:59 +00:00
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
if (type != LM_TC_TEXTRM)
|
|
|
|
f.setColor(LColor::math);
|
|
|
|
|
|
|
|
if (type == LM_TC_TEX)
|
|
|
|
f.setColor(LColor::latex);
|
|
|
|
|
|
|
|
return f;
|
|
|
|
}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
|
|
char const * math_font_name[] = {
|
2001-02-16 09:25:43 +00:00
|
|
|
"mathrm",
|
|
|
|
"mathcal",
|
|
|
|
"mathbf",
|
|
|
|
"mathsf",
|
|
|
|
"mathtt",
|
|
|
|
"mathit",
|
|
|
|
"textrm"
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
/*
|
|
|
|
* Internal struct of a drawing: code n x1 y1 ... xn yn, where code is:
|
|
|
|
* 0 = end, 1 = line, 2 = polyline, 3 = square line, 4= square polyline
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
float const parenthHigh[] = {
|
|
|
|
2.0, 13.0,
|
|
|
|
0.9840, 0.0014, 0.7143, 0.0323, 0.4603, 0.0772,
|
|
|
|
0.2540, 0.1278, 0.1746, 0.1966, 0.0952, 0.3300,
|
|
|
|
0.0950, 0.5000, 0.0952, 0.6700, 0.1746, 0.8034,
|
|
|
|
0.2540, 0.8722, 0.4603, 0.9228, 0.7143, 0.9677,
|
|
|
|
0.9840, 0.9986,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
float const parenth[] = {
|
|
|
|
2.0, 13.0,
|
|
|
|
0.9930, 0.0071, 0.7324, 0.0578, 0.5141, 0.1126,
|
|
|
|
0.3380, 0.1714, 0.2183, 0.2333, 0.0634, 0.3621,
|
|
|
|
0.0141, 0.5000, 0.0563, 0.6369, 0.2113, 0.7647,
|
|
|
|
0.3310, 0.8276, 0.5070, 0.8864, 0.7254, 0.9412,
|
|
|
|
0.9930, 0.9919,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
float const brace[] = {
|
|
|
|
2.0, 21.0,
|
|
|
|
0.9492, 0.0020, 0.9379, 0.0020, 0.7458, 0.0243,
|
|
|
|
0.5819, 0.0527, 0.4859, 0.0892, 0.4463, 0.1278,
|
|
|
|
0.4463, 0.3732, 0.4011, 0.4199, 0.2712, 0.4615,
|
|
|
|
0.0734, 0.4919, 0.0113, 0.5000, 0.0734, 0.5081,
|
|
|
|
0.2712, 0.5385, 0.4011, 0.5801, 0.4463, 0.6268,
|
|
|
|
0.4463, 0.8722, 0.4859, 0.9108, 0.5819, 0.9473,
|
|
|
|
0.7458, 0.9757, 0.9379, 0.9980, 0.9492, 0.9980,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
// Is this correct? (Lgb)
|
|
|
|
float const arrow[] = {
|
|
|
|
4, 7,
|
|
|
|
0.0150, 0.7500, 0.2000, 0.6000, 0.3500, 0.3500,
|
|
|
|
0.5000, 0.0500, 0.6500, 0.3500, 0.8000, 0.6000,
|
|
|
|
0.9500, 0.7500,
|
|
|
|
3, 0.5000, 0.1500, 0.5000, 0.9500,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
// Is this correct? (Lgb)
|
|
|
|
float const Arrow[] = {
|
|
|
|
4, 7,
|
|
|
|
0.0150, 0.7500, 0.2000, 0.6000, 0.3500, 0.3500,
|
|
|
|
0.5000, 0.0500, 0.6500, 0.3500, 0.8000, 0.6000,
|
|
|
|
0.9500, 0.7500,
|
|
|
|
3, 0.3500, 0.5000, 0.3500, 0.9500,
|
|
|
|
3, 0.6500, 0.5000, 0.6500, 0.9500,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const udarrow[] = {
|
|
|
|
2, 3,
|
|
|
|
0.015, 0.25, 0.5, 0.05, 0.95, 0.25,
|
|
|
|
2, 3,
|
|
|
|
0.015, 0.75, 0.5, 0.95, 0.95, 0.75,
|
|
|
|
1, 0.5, 0.2, 0.5, 0.8,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const Udarrow[] = {
|
|
|
|
2, 3,
|
|
|
|
0.015, 0.25, 0.5, 0.05, 0.95, 0.25,
|
|
|
|
2, 3,
|
|
|
|
0.015, 0.75, 0.5, 0.95, 0.95, 0.75,
|
|
|
|
1, 0.35, 0.2, 0.35, 0.8,
|
|
|
|
1, 0.65, 0.2, 0.65, 0.8,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const brack[] = {
|
|
|
|
2.0, 4,
|
|
|
|
0.95, 0.05, 0.05, 0.05, 0.05, 0.95, 0.95, 0.95,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const corner[] = {
|
|
|
|
2.0, 3,
|
|
|
|
0.95, 0.05, 0.05, 0.05, 0.05, 0.95,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const angle[] = {
|
|
|
|
2.0, 3,
|
|
|
|
1, 0, 0.05, 0.5, 1, 1,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const slash[] = {
|
|
|
|
1, 0.95, 0.05, 0.05, 0.95,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
float const hline[] = {
|
2001-02-16 09:25:43 +00:00
|
|
|
1, 0.05, 0.5, 0.95, 0.5,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
float const hline2[] = {
|
2001-02-13 13:28:32 +00:00
|
|
|
1, 0.1, 0.5, 0.3, 0.5,
|
|
|
|
1, 0.7, 0.5, 0.9, 0.5,
|
|
|
|
0.0
|
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const hline3[] = {
|
|
|
|
1, 0.1, 0, 0.15, 0,
|
|
|
|
1, 0.475, 0, 0.525, 0,
|
|
|
|
1, 0.85, 0, 0.9, 0,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
float const dline3[] = {
|
|
|
|
1, 0.1, 0.1, 0.15, 0.15,
|
|
|
|
1, 0.475, 0.475, 0.525, 0.525,
|
|
|
|
1, 0.85, 0.85, 0.9, 0.9,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const hlinesmall[] = {
|
|
|
|
1, 0.4, 0.5, 0.6, 0.5,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const vert[] = {
|
|
|
|
1, 0.5, 0.05, 0.5, 0.95,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const Vert[] = {
|
|
|
|
1, 0.3, 0.05, 0.3, 0.95,
|
|
|
|
1, 0.7, 0.05, 0.7, 0.95,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
float const tilde[] = {
|
|
|
|
2.0, 4,
|
|
|
|
0.05, 0.8, 0.25, 0.2, 0.75, 0.8, 0.95, 0.2,
|
|
|
|
0.0
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-07-13 09:10:59 +00:00
|
|
|
struct math_deco_struct {
|
|
|
|
int code;
|
|
|
|
float const * data;
|
|
|
|
int angle;
|
|
|
|
};
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
math_deco_struct math_deco_table[] = {
|
2001-02-16 09:25:43 +00:00
|
|
|
// Decorations
|
2001-07-13 09:54:32 +00:00
|
|
|
{ LM_widehat, &angle[0], 3 },
|
|
|
|
{ LM_widetilde, &tilde[0], 0 },
|
|
|
|
{ LM_underline, &hline[0], 0 },
|
|
|
|
{ LM_overline, &hline[0], 0 },
|
|
|
|
{ LM_underbrace, &brace[0], 1 },
|
|
|
|
{ LM_overbrace, &brace[0], 3 },
|
|
|
|
{ LM_overleftarrow, &arrow[0], 1 },
|
|
|
|
{ LM_overightarrow, &arrow[0], 3 },
|
|
|
|
|
|
|
|
// Delimiters
|
|
|
|
{ '(', &parenth[0], 0 },
|
|
|
|
{ ')', &parenth[0], 2 },
|
|
|
|
{ '{', &brace[0], 0 },
|
|
|
|
{ '}', &brace[0], 2 },
|
|
|
|
{ '[', &brack[0], 0 },
|
|
|
|
{ ']', &brack[0], 2 },
|
|
|
|
{ '|', &vert[0], 0 },
|
|
|
|
{ '/', &slash[0], 0 },
|
|
|
|
{ LM_Vert, &Vert[0], 0 },
|
|
|
|
{ LM_backslash, &slash[0], 1 },
|
|
|
|
{ LM_langle, &angle[0], 0 },
|
|
|
|
{ LM_lceil, &corner[0], 0 },
|
|
|
|
{ LM_lfloor, &corner[0], 1 },
|
|
|
|
{ LM_rangle, &angle[0], 2 },
|
|
|
|
{ LM_rceil, &corner[0], 3 },
|
|
|
|
{ LM_rfloor, &corner[0], 2 },
|
|
|
|
{ LM_downarrow, &arrow[0], 2 },
|
|
|
|
{ LM_Downarrow, &Arrow[0], 2 },
|
|
|
|
{ LM_uparrow, &arrow[0], 0 },
|
|
|
|
{ LM_Uparrow, &Arrow[0], 0 },
|
|
|
|
{ LM_updownarrow, &udarrow[0], 0 },
|
|
|
|
{ LM_Updownarrow, &Udarrow[0], 0 },
|
|
|
|
|
|
|
|
// Accents
|
|
|
|
{ LM_ddot, &hline2[0], 0 },
|
|
|
|
{ LM_hat, &angle[0], 3 },
|
|
|
|
{ LM_grave, &slash[0], 1 },
|
|
|
|
{ LM_acute, &slash[0], 0 },
|
|
|
|
{ LM_tilde, &tilde[0], 0 },
|
|
|
|
{ LM_bar, &hline[0], 0 },
|
2001-07-13 09:10:59 +00:00
|
|
|
{ LM_dot, &hlinesmall[0], 0 },
|
2001-07-13 09:54:32 +00:00
|
|
|
{ LM_check, &angle[0], 1 },
|
|
|
|
{ LM_breve, &parenth[0], 1 },
|
|
|
|
{ LM_vec, &arrow[0], 3 },
|
|
|
|
{ LM_not, &slash[0], 0 },
|
|
|
|
|
|
|
|
// Dots
|
|
|
|
{ LM_ldots, &hline3[0], 0 },
|
|
|
|
{ LM_cdots, &hline3[0], 0 },
|
|
|
|
{ LM_vdots, &hline3[0], 1 },
|
|
|
|
{ LM_ddots, &dline3[0], 0 }
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct math_deco_compare {
|
|
|
|
/// for use by sort and lower_bound
|
|
|
|
inline
|
|
|
|
int operator()(math_deco_struct const & a,
|
|
|
|
math_deco_struct const & b) const {
|
|
|
|
return a.code < b.code;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
int const math_deco_table_size =
|
|
|
|
sizeof(math_deco_table) /sizeof(math_deco_struct);
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
|
|
class init_deco_table {
|
|
|
|
public:
|
|
|
|
init_deco_table() {
|
|
|
|
if (!init) {
|
|
|
|
sort(math_deco_table,
|
|
|
|
math_deco_table + math_deco_table_size,
|
|
|
|
math_deco_compare());
|
|
|
|
init_deco_table::init = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
static bool init;
|
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
bool init_deco_table::init = false;
|
|
|
|
static init_deco_table idt;
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2001-08-03 17:55:10 +00:00
|
|
|
void mathed_char_dim(MathTextCodes type, MathStyles size, unsigned char c,
|
2001-07-13 11:32:22 +00:00
|
|
|
int & asc, int & des, int & wid)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
LyXFont const font = WhichFont(type, size);
|
|
|
|
des = lyxfont::descent(c, font);
|
|
|
|
asc = lyxfont::ascent(c, font);
|
|
|
|
wid = mathed_char_width(type, size, c);
|
|
|
|
}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
int mathed_char_height(MathTextCodes type, MathStyles size, unsigned char c,
|
2001-07-13 11:32:22 +00:00
|
|
|
int & asc, int & des)
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-02-16 09:25:43 +00:00
|
|
|
LyXFont const font = WhichFont(type, size);
|
|
|
|
des = lyxfont::descent(c, font);
|
|
|
|
asc = lyxfont::ascent(c, font);
|
|
|
|
return asc + des;
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-03 17:55:10 +00:00
|
|
|
int mathed_char_height(MathTextCodes type, MathStyles size, unsigned char c)
|
|
|
|
{
|
|
|
|
int asc;
|
|
|
|
int des;
|
|
|
|
return mathed_char_height(type, size, c, asc, des);
|
|
|
|
}
|
|
|
|
|
|
|
|
int mathed_char_ascent(MathTextCodes type, MathStyles size, unsigned char c)
|
|
|
|
{
|
|
|
|
LyXFont const font = WhichFont(type, size);
|
|
|
|
return lyxfont::ascent(c, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
int mathed_char_descent(MathTextCodes type, MathStyles size, unsigned char c)
|
|
|
|
{
|
|
|
|
LyXFont const font = WhichFont(type, size);
|
|
|
|
return lyxfont::descent(c, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
int mathed_char_width(MathTextCodes type, MathStyles size, unsigned char c)
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
|
|
|
if (MathIsBinary(type)) {
|
|
|
|
string s;
|
|
|
|
s += c;
|
|
|
|
return mathed_string_width(type, size, s);
|
2001-02-16 09:25:43 +00:00
|
|
|
} else
|
|
|
|
return lyxfont::width(c, WhichFont(type, size));
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
void mathed_string_dim(MathTextCodes type, MathStyles size, string const & s,
|
2001-06-25 00:06:33 +00:00
|
|
|
int & asc, int & des, int & wid)
|
|
|
|
{
|
|
|
|
mathed_string_height(type, size, s, asc, des);
|
|
|
|
wid = mathed_string_width(type, size, s);
|
|
|
|
}
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
int mathed_string_height(MathTextCodes type, MathStyles size, string const & s,
|
2001-02-13 13:28:32 +00:00
|
|
|
int & asc, int & des)
|
|
|
|
{
|
2001-02-16 09:25:43 +00:00
|
|
|
LyXFont const font = WhichFont(type, size);
|
2001-02-13 13:28:32 +00:00
|
|
|
asc = des = 0;
|
|
|
|
for (string::const_iterator it = s.begin(); it != s.end(); ++it) {
|
|
|
|
des = max(des, lyxfont::descent(*it, font));
|
|
|
|
asc = max(asc, lyxfont::ascent(*it, font));
|
|
|
|
}
|
|
|
|
return asc + des;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
int mathed_string_width(MathTextCodes type, MathStyles size, string const & s)
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
|
|
|
string st;
|
|
|
|
if (MathIsBinary(type))
|
|
|
|
for (string::const_iterator it = s.begin();
|
|
|
|
it != s.end(); ++it) {
|
|
|
|
st += ' ';
|
|
|
|
st += *it;
|
|
|
|
st += ' ';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
st = s;
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
return lyxfont::width(st, WhichFont(type, size));
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-13 09:10:59 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
math_deco_struct const * search_deco(int code)
|
|
|
|
{
|
|
|
|
math_deco_struct search_elem = { code, 0, 0 };
|
|
|
|
|
|
|
|
math_deco_struct const * res =
|
|
|
|
lower_bound(math_deco_table,
|
|
|
|
math_deco_table + math_deco_table_size,
|
|
|
|
search_elem, math_deco_compare());
|
|
|
|
if (res != math_deco_table + math_deco_table_size &&
|
|
|
|
res->code == code)
|
|
|
|
return res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
void mathed_draw_deco(Painter & pain, int x, int y, int w, int h, int code)
|
|
|
|
{
|
2001-07-13 09:10:59 +00:00
|
|
|
Matrix mt;
|
|
|
|
Matrix sqmt;
|
2001-02-13 13:28:32 +00:00
|
|
|
float xx;
|
|
|
|
float yy;
|
|
|
|
float x2;
|
|
|
|
float y2;
|
|
|
|
int i = 0;
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
math_deco_struct const * mds = search_deco(code);
|
|
|
|
if (!mds) {
|
|
|
|
// Should this ever happen?
|
|
|
|
lyxerr << "Deco was not found. Programming error?" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
int const r = mds->angle;
|
|
|
|
float const * d = mds->data;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-07-13 09:10:59 +00:00
|
|
|
if (h > 70 && (mds->code == int('(') || mds->code == int(')')))
|
2001-02-13 13:28:32 +00:00
|
|
|
d = parenthHigh;
|
|
|
|
|
2001-07-13 09:54:32 +00:00
|
|
|
mt.rotate(r);
|
|
|
|
mt.escalate(w, h);
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
int const n = (w < h) ? w : h;
|
2001-07-13 09:54:32 +00:00
|
|
|
sqmt.rotate(r);
|
|
|
|
sqmt.escalate(n, n);
|
2001-02-13 13:28:32 +00:00
|
|
|
if (r > 0 && r < 3) y += h;
|
|
|
|
if (r >= 2) x += w;
|
|
|
|
do {
|
|
|
|
code = int(d[i++]);
|
|
|
|
switch (code) {
|
|
|
|
case 0: break;
|
|
|
|
case 1:
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
xx = d[i++]; yy = d[i++];
|
|
|
|
x2 = d[i++]; y2 = d[i++];
|
|
|
|
if (code == 3)
|
2001-07-13 09:54:32 +00:00
|
|
|
sqmt.transform(xx, yy, xx, yy);
|
2001-02-13 13:28:32 +00:00
|
|
|
else
|
2001-07-13 09:54:32 +00:00
|
|
|
mt.transform(xx, yy, xx, yy);
|
|
|
|
mt.transform(x2, y2, x2, y2);
|
2001-02-13 13:28:32 +00:00
|
|
|
pain.line(x + int(xx), y + int(yy),
|
|
|
|
x + int(x2), y + int(y2),
|
|
|
|
LColor::mathline);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
case 4:
|
|
|
|
{
|
2001-02-16 09:25:43 +00:00
|
|
|
int xp[32];
|
|
|
|
int yp[32];
|
|
|
|
int const n = int(d[i++]);
|
2001-02-13 13:28:32 +00:00
|
|
|
for (int j = 0; j < n; ++j) {
|
|
|
|
xx = d[i++]; yy = d[i++];
|
|
|
|
// lyxerr << " " << xx << " " << yy << " ";
|
|
|
|
if (code == 4)
|
2001-07-13 09:54:32 +00:00
|
|
|
sqmt.transform(xx, yy, xx, yy);
|
2001-02-13 13:28:32 +00:00
|
|
|
else
|
2001-07-13 09:54:32 +00:00
|
|
|
mt.transform(xx, yy, xx, yy);
|
2001-02-13 13:28:32 +00:00
|
|
|
xp[j] = x + int(xx);
|
|
|
|
yp[j] = y + int(yy);
|
|
|
|
// lyxerr << "P[" << j " " << xx << " " << yy << " " << x << " " << y << "]";
|
|
|
|
}
|
|
|
|
pain.lines(xp, yp, n, LColor::mathline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (code);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-13 19:10:18 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
// In a near future maybe we use a better fonts renderer
|
2001-07-20 14:54:13 +00:00
|
|
|
void drawStr(Painter & pain, MathTextCodes type, MathStyles siz,
|
2001-06-25 00:06:33 +00:00
|
|
|
int x, int y, string const & s)
|
2001-02-13 19:10:18 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
string st;
|
|
|
|
if (MathIsBinary(type))
|
|
|
|
for (string::const_iterator it = s.begin();
|
|
|
|
it != s.end(); ++it) {
|
|
|
|
st += ' ';
|
|
|
|
st += *it;
|
|
|
|
st += ' ';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
st = s;
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
pain.text(x, y, st, WhichFont(type, siz));
|
2001-02-13 19:10:18 +00:00
|
|
|
}
|
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
void drawChar(Painter & pain, MathTextCodes type, MathStyles siz, int x, int y, char c)
|
2001-02-13 19:10:18 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
string s;
|
|
|
|
s += c;
|
|
|
|
drawStr(pain, type, siz, x, y, s);
|
2001-02-13 19:10:18 +00:00
|
|
|
}
|
2001-07-06 12:09:32 +00:00
|
|
|
|
|
|
|
// decrease math size for super- and subscripts
|
|
|
|
MathStyles smallerStyleScript(MathStyles st)
|
|
|
|
{
|
|
|
|
switch (st) {
|
|
|
|
case LM_ST_DISPLAY:
|
|
|
|
case LM_ST_TEXT: st = LM_ST_SCRIPT; break;
|
|
|
|
default: st = LM_ST_SCRIPTSCRIPT;
|
|
|
|
}
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
|
|
|
// decrease math size for fractions
|
|
|
|
MathStyles smallerStyleFrac(MathStyles st)
|
|
|
|
{
|
|
|
|
switch (st) {
|
|
|
|
case LM_ST_DISPLAY: st = LM_ST_TEXT; break;
|
|
|
|
case LM_ST_TEXT: st = LM_ST_SCRIPT; break;
|
|
|
|
default: st = LM_ST_SCRIPTSCRIPT;
|
|
|
|
}
|
|
|
|
return st;
|
|
|
|
}
|
2001-07-09 16:59:57 +00:00
|
|
|
|
2001-07-20 14:54:13 +00:00
|
|
|
|
|
|
|
void math_font_max_dim(MathTextCodes code, MathStyles siz, int & asc, int & des)
|
|
|
|
{
|
|
|
|
LyXFont font = WhichFont(code, siz);
|
|
|
|
asc = lyxfont::maxAscent(font);
|
|
|
|
des = lyxfont::maxDescent(font);
|
|
|
|
}
|
|
|
|
|
2001-08-09 10:48:50 +00:00
|
|
|
char const * latex_mathspace[] = {
|
|
|
|
"!", ",", ":", ";", "quad", "qquad"
|
|
|
|
};
|