2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file MathSupport.C
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
|
#include <config.h>
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "MathSupport.h"
|
|
|
|
|
#include "MathData.h"
|
|
|
|
|
#include "InsetMath.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
|
#include "MathStream.h"
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "MathParser.h"
|
2003-09-08 00:33:41 +00:00
|
|
|
|
|
|
|
|
|
#include "debug.h"
|
2003-09-16 09:01:15 +00:00
|
|
|
|
#include "LColor.h"
|
2003-09-08 00:33:41 +00:00
|
|
|
|
|
2006-10-03 16:17:32 +00:00
|
|
|
|
#include "frontends/FontLoader.h"
|
2006-10-07 16:15:06 +00:00
|
|
|
|
#include "frontends/FontMetrics.h"
|
|
|
|
|
#include "frontends/Painter.h"
|
2003-09-08 00:33:41 +00:00
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
|
#include <map>
|
2004-07-24 10:55:30 +00:00
|
|
|
|
#include <sstream>
|
2002-09-11 09:14:57 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
using frontend::Painter;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
2001-02-13 16:40:19 +00:00
|
|
|
|
using std::max;
|
2003-08-02 11:30:30 +00:00
|
|
|
|
using std::endl;
|
2006-10-21 11:15:37 +00:00
|
|
|
|
using std::vector;
|
2001-02-13 16:40:19 +00:00
|
|
|
|
|
2001-07-13 11:32:22 +00:00
|
|
|
|
|
2001-07-13 09:10:59 +00:00
|
|
|
|
///
|
|
|
|
|
class Matrix {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2001-09-12 16:13:31 +00:00
|
|
|
|
Matrix(int, double, double);
|
2001-07-13 09:10:59 +00:00
|
|
|
|
///
|
2001-09-12 16:13:31 +00:00
|
|
|
|
void transform(double &, double &);
|
2001-07-13 09:10:59 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
2001-09-12 16:13:31 +00:00
|
|
|
|
double m_[2][2];
|
2001-07-13 09:10:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 16:13:31 +00:00
|
|
|
|
Matrix::Matrix(int code, double x, double y)
|
2001-07-13 09:10:59 +00:00
|
|
|
|
{
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const cs = (code & 1) ? 0 : (1 - code);
|
|
|
|
|
double const sn = (code & 1) ? (2 - code) : 0;
|
2001-09-12 16:13:31 +00:00
|
|
|
|
m_[0][0] = cs * x;
|
|
|
|
|
m_[0][1] = sn * x;
|
|
|
|
|
m_[1][0] = -sn * y;
|
|
|
|
|
m_[1][1] = cs * y;
|
2001-07-13 09:10:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 16:13:31 +00:00
|
|
|
|
void Matrix::transform(double & x, double & y)
|
2001-07-13 09:10:59 +00:00
|
|
|
|
{
|
2001-09-12 16:13:31 +00:00
|
|
|
|
double xx = m_[0][0] * x + m_[0][1] * y;
|
|
|
|
|
double yy = m_[1][0] * x + m_[1][1] * y;
|
|
|
|
|
x = xx;
|
|
|
|
|
y = yy;
|
2001-07-13 09:10:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2001-09-12 16:24:36 +00:00
|
|
|
|
/*
|
2001-02-13 13:28:32 +00:00
|
|
|
|
* Internal struct of a drawing: code n x1 y1 ... xn yn, where code is:
|
2002-06-18 15:44:30 +00:00
|
|
|
|
* 0 = end, 1 = line, 2 = polyline, 3 = square line, 4 = square polyline
|
2001-02-13 13:28:32 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const parenthHigh[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 13,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
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,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const parenth[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 13,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
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,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const brace[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 21,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
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,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const arrow[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
4, 7,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
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,
|
2003-02-14 16:02:24 +00:00
|
|
|
|
3, 0.5000, 0.1500, 0.5000, 0.9500,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const Arrow[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
4, 7,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
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,
|
2003-02-14 16:02:24 +00:00
|
|
|
|
3, 0.3500, 0.5000, 0.3500, 0.9500,
|
|
|
|
|
3, 0.6500, 0.5000, 0.6500, 0.9500,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const udarrow[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 3,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
0.015, 0.25, 0.5, 0.05, 0.95, 0.25,
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 3,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0.015, 0.75, 0.5, 0.95, 0.95, 0.75,
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.5, 0.2, 0.5, 0.8,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const Udarrow[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 3,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
0.015, 0.25, 0.5, 0.05, 0.95, 0.25,
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 3,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0.015, 0.75, 0.5, 0.95, 0.95, 0.75,
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.35, 0.2, 0.35, 0.8,
|
|
|
|
|
1, 0.65, 0.2, 0.65, 0.8,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const brack[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 4,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
0.95, 0.05, 0.05, 0.05, 0.05, 0.95, 0.95, 0.95,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const corner[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 3,
|
2001-02-16 09:25:43 +00:00
|
|
|
|
0.95, 0.05, 0.05, 0.05, 0.05, 0.95,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const angle[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 3,
|
|
|
|
|
1, 0, 0.05, 0.5, 1, 1,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const slash[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.95, 0.05, 0.05, 0.95,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const hline[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.00, 0.5, 1.0, 0.5,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2002-02-08 09:42:59 +00:00
|
|
|
|
double const ddot[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.2, 0.5, 0.3, 0.5,
|
|
|
|
|
1, 0.7, 0.5, 0.8, 0.5,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
|
|
|
|
};
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2002-02-08 09:42:59 +00:00
|
|
|
|
double const dddot[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.1, 0.5, 0.2, 0.5,
|
|
|
|
|
1, 0.45, 0.5, 0.55, 0.5,
|
|
|
|
|
1, 0.8, 0.5, 0.9, 0.5,
|
2002-02-08 09:42:59 +00:00
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const hline3[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.1, 0, 0.15, 0,
|
|
|
|
|
1, 0.475, 0, 0.525, 0,
|
|
|
|
|
1, 0.85, 0, 0.9, 0,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const dline3[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
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,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
|
|
|
|
};
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const hlinesmall[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.4, 0.5, 0.6, 0.5,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
|
double const ring[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 5,
|
2002-05-30 07:09:54 +00:00
|
|
|
|
0.5, 0.8, 0.8, 0.5, 0.5, 0.2, 0.2, 0.5, 0.5, 0.8,
|
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const vert[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.5, 0.05, 0.5, 0.95,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const Vert[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
1, 0.3, 0.05, 0.3, 0.95,
|
|
|
|
|
1, 0.7, 0.05, 0.7, 0.95,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const tilde[] = {
|
2003-02-14 16:02:24 +00:00
|
|
|
|
2, 4,
|
2002-06-24 15:37:14 +00:00
|
|
|
|
0.00, 0.8, 0.25, 0.2, 0.75, 0.8, 1.00, 0.2,
|
2001-09-12 16:24:36 +00:00
|
|
|
|
0
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-08-15 05:50:39 +00:00
|
|
|
|
struct deco_struct {
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const * data;
|
2001-07-13 09:10:59 +00:00
|
|
|
|
int angle;
|
|
|
|
|
};
|
|
|
|
|
|
2001-09-03 15:22:55 +00:00
|
|
|
|
struct named_deco_struct {
|
|
|
|
|
char const * name;
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const * data;
|
2001-09-03 15:22:55 +00:00
|
|
|
|
int angle;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-09-12 16:24:36 +00:00
|
|
|
|
named_deco_struct deco_table[] = {
|
2001-09-03 15:22:55 +00:00
|
|
|
|
// Decorations
|
2002-05-30 07:09:54 +00:00
|
|
|
|
{"widehat", angle, 3 },
|
|
|
|
|
{"widetilde", tilde, 0 },
|
|
|
|
|
{"underbar", hline, 0 },
|
|
|
|
|
{"underline", hline, 0 },
|
|
|
|
|
{"overline", hline, 0 },
|
|
|
|
|
{"underbrace", brace, 1 },
|
|
|
|
|
{"overbrace", brace, 3 },
|
|
|
|
|
{"overleftarrow", arrow, 1 },
|
|
|
|
|
{"overrightarrow", arrow, 3 },
|
|
|
|
|
{"overleftrightarrow", udarrow, 1 },
|
|
|
|
|
{"xleftarrow", arrow, 1 },
|
|
|
|
|
{"xrightarrow", arrow, 3 },
|
|
|
|
|
{"underleftarrow", arrow, 1 },
|
|
|
|
|
{"underrightarrow", arrow, 3 },
|
|
|
|
|
{"underleftrightarrow", udarrow, 1 },
|
2002-02-08 08:08:11 +00:00
|
|
|
|
|
2001-09-12 16:24:36 +00:00
|
|
|
|
// Delimiters
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"(", parenth, 0 },
|
|
|
|
|
{")", parenth, 2 },
|
|
|
|
|
{"{", brace, 0 },
|
|
|
|
|
{"}", brace, 2 },
|
2006-04-20 09:55:45 +00:00
|
|
|
|
{"lbrace", brace, 0 },
|
|
|
|
|
{"rbrace", brace, 2 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"[", brack, 0 },
|
|
|
|
|
{"]", brack, 2 },
|
|
|
|
|
{"|", vert, 0 },
|
|
|
|
|
{"/", slash, 0 },
|
2002-04-04 14:48:39 +00:00
|
|
|
|
{"vert", vert, 0 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"Vert", Vert, 0 },
|
|
|
|
|
{"'", slash, 1 },
|
2001-09-12 12:51:55 +00:00
|
|
|
|
{"backslash", slash, 1 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"langle", angle, 0 },
|
2001-09-12 16:24:36 +00:00
|
|
|
|
{"lceil", corner, 0 },
|
|
|
|
|
{"lfloor", corner, 1 },
|
|
|
|
|
{"rangle", angle, 2 },
|
|
|
|
|
{"rceil", corner, 3 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"rfloor", corner, 2 },
|
|
|
|
|
{"downarrow", arrow, 2 },
|
2001-09-12 16:24:36 +00:00
|
|
|
|
{"Downarrow", Arrow, 2 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"uparrow", arrow, 0 },
|
|
|
|
|
{"Uparrow", Arrow, 0 },
|
|
|
|
|
{"updownarrow", udarrow, 0 },
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{"Updownarrow", Udarrow, 0 },
|
|
|
|
|
|
2001-09-12 16:24:36 +00:00
|
|
|
|
// Accents
|
2002-02-08 09:42:59 +00:00
|
|
|
|
{"ddot", ddot, 0 },
|
|
|
|
|
{"dddot", dddot, 0 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"hat", angle, 3 },
|
|
|
|
|
{"grave", slash, 1 },
|
|
|
|
|
{"acute", slash, 0 },
|
|
|
|
|
{"tilde", tilde, 0 },
|
|
|
|
|
{"bar", hline, 0 },
|
|
|
|
|
{"dot", hlinesmall, 0 },
|
|
|
|
|
{"check", angle, 1 },
|
|
|
|
|
{"breve", parenth, 1 },
|
|
|
|
|
{"vec", arrow, 3 },
|
2002-04-03 10:45:32 +00:00
|
|
|
|
{"mathring", ring, 0 },
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-09-12 16:24:36 +00:00
|
|
|
|
// Dots
|
2002-12-09 09:52:43 +00:00
|
|
|
|
{"dots", hline3, 0 },
|
2001-09-12 16:24:36 +00:00
|
|
|
|
{"ldots", hline3, 0 },
|
2001-09-04 07:01:31 +00:00
|
|
|
|
{"cdots", hline3, 0 },
|
|
|
|
|
{"vdots", hline3, 1 },
|
2002-05-29 15:58:26 +00:00
|
|
|
|
{"ddots", dline3, 0 },
|
|
|
|
|
{"dotsb", hline3, 0 },
|
|
|
|
|
{"dotsc", hline3, 0 },
|
|
|
|
|
{"dotsi", hline3, 0 },
|
|
|
|
|
{"dotsm", hline3, 0 },
|
|
|
|
|
{"dotso", hline3, 0 }
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
std::map<docstring, deco_struct> deco_list;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2001-08-14 09:35:44 +00:00
|
|
|
|
// sort the table on startup
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class init_deco_table {
|
|
|
|
|
public:
|
2001-02-13 13:28:32 +00:00
|
|
|
|
init_deco_table() {
|
2001-09-03 15:22:55 +00:00
|
|
|
|
unsigned const n = sizeof(deco_table) / sizeof(deco_table[0]);
|
|
|
|
|
for (named_deco_struct * p = deco_table; p != deco_table + n; ++p) {
|
|
|
|
|
deco_struct d;
|
|
|
|
|
d.data = p->data;
|
|
|
|
|
d.angle = p->angle;
|
2006-10-22 10:15:23 +00:00
|
|
|
|
deco_list[from_ascii(p->name)] = d;
|
2001-09-03 15:22:55 +00:00
|
|
|
|
}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2001-08-14 09:35:44 +00:00
|
|
|
|
static init_deco_table dummy;
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
deco_struct const * search_deco(docstring const & name)
|
2001-08-14 09:35:44 +00:00
|
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
|
std::map<docstring, deco_struct>::const_iterator p = deco_list.find(name);
|
|
|
|
|
return p == deco_list.end() ? 0 : &(p->second);
|
2001-08-14 09:35:44 +00:00
|
|
|
|
}
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2001-08-10 13:26:33 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int mathed_char_width(LyXFont const & font, char_type c)
|
2001-02-13 13:28:32 +00:00
|
|
|
|
{
|
2006-10-11 17:24:46 +00:00
|
|
|
|
return theFontMetrics(font).width(c);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-21 11:15:37 +00:00
|
|
|
|
void mathed_string_dim(LyXFont const & font,
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring const & s,
|
2006-10-21 11:15:37 +00:00
|
|
|
|
Dimension & dim)
|
2002-07-11 11:27:24 +00:00
|
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
|
frontend::FontMetrics const & fm = theFontMetrics(font);
|
2003-05-27 13:55:03 +00:00
|
|
|
|
dim.asc = 0;
|
|
|
|
|
dim.des = 0;
|
2006-10-22 10:15:23 +00:00
|
|
|
|
for (docstring::const_iterator it = s.begin();
|
2006-10-21 11:15:37 +00:00
|
|
|
|
it != s.end();
|
|
|
|
|
++it) {
|
2006-10-07 16:15:06 +00:00
|
|
|
|
dim.asc = max(dim.asc, fm.ascent(*it));
|
|
|
|
|
dim.des = max(dim.des, fm.descent(*it));
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
2006-10-21 11:15:37 +00:00
|
|
|
|
dim.wid = fm.width(&s[0], s.size());
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
|
|
2006-10-17 14:46:45 +00:00
|
|
|
|
int mathed_string_width(LyXFont const & font, docstring const & s)
|
2001-02-13 13:28:32 +00:00
|
|
|
|
{
|
2006-10-17 14:46:45 +00:00
|
|
|
|
return theFontMetrics(font).width(s);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void mathed_draw_deco(PainterInfo & pi, int x, int y, int w, int h,
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring const & name)
|
2001-02-13 13:28:32 +00:00
|
|
|
|
{
|
2001-08-15 07:02:16 +00:00
|
|
|
|
if (name == ".") {
|
2002-06-14 12:24:28 +00:00
|
|
|
|
pi.pain.line(x + w/2, y, x + w/2, y + h,
|
2003-04-14 16:00:42 +00:00
|
|
|
|
LColor::cursor, Painter::line_onoffdash);
|
2001-08-15 07:02:16 +00:00
|
|
|
|
return;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-03 15:22:55 +00:00
|
|
|
|
deco_struct const * mds = search_deco(name);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
if (!mds) {
|
2003-08-02 11:30:30 +00:00
|
|
|
|
lyxerr << "Deco was not found. Programming error?" << endl;
|
2006-10-22 10:15:23 +00:00
|
|
|
|
lyxerr << "name: '" << to_utf8(name) << "'" << endl;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-09-12 16:13:31 +00:00
|
|
|
|
int const n = (w < h) ? w : h;
|
2001-02-16 09:25:43 +00:00
|
|
|
|
int const r = mds->angle;
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double const * d = mds->data;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-09-03 15:22:55 +00:00
|
|
|
|
if (h > 70 && (name == "(" || name == ")"))
|
2001-02-13 13:28:32 +00:00
|
|
|
|
d = parenthHigh;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-09-12 16:13:31 +00:00
|
|
|
|
Matrix mt(r, w, h);
|
|
|
|
|
Matrix sqmt(r, n, n);
|
2001-08-09 15:19:31 +00:00
|
|
|
|
|
|
|
|
|
if (r > 0 && r < 3)
|
|
|
|
|
y += h;
|
|
|
|
|
|
|
|
|
|
if (r >= 2)
|
2001-09-12 16:24:36 +00:00
|
|
|
|
x += w;
|
2001-08-09 15:19:31 +00:00
|
|
|
|
|
2002-05-30 14:56:13 +00:00
|
|
|
|
for (int i = 0; d[i]; ) {
|
2001-09-12 15:56:09 +00:00
|
|
|
|
int code = int(d[i++]);
|
|
|
|
|
if (code & 1) { // code == 1 || code == 3
|
|
|
|
|
double xx = d[i++];
|
|
|
|
|
double yy = d[i++];
|
|
|
|
|
double x2 = d[i++];
|
|
|
|
|
double y2 = d[i++];
|
2001-09-12 16:24:36 +00:00
|
|
|
|
if (code == 3)
|
2001-09-12 16:13:31 +00:00
|
|
|
|
sqmt.transform(xx, yy);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
else
|
2001-09-12 16:13:31 +00:00
|
|
|
|
mt.transform(xx, yy);
|
|
|
|
|
mt.transform(x2, y2);
|
2002-06-14 12:24:28 +00:00
|
|
|
|
pi.pain.line(
|
2002-07-22 22:00:49 +00:00
|
|
|
|
int(x + xx + 0.5), int(y + yy + 0.5),
|
|
|
|
|
int(x + x2 + 0.5), int(y + y2 + 0.5),
|
2002-05-30 14:56:13 +00:00
|
|
|
|
LColor::math);
|
2004-04-08 15:20:05 +00:00
|
|
|
|
} else {
|
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) {
|
2001-09-12 15:56:09 +00:00
|
|
|
|
double xx = d[i++];
|
|
|
|
|
double yy = d[i++];
|
2002-11-27 10:30:28 +00:00
|
|
|
|
// lyxerr << ' ' << xx << ' ' << yy << ' ';
|
2001-09-12 16:24:36 +00:00
|
|
|
|
if (code == 4)
|
2001-09-12 16:13:31 +00:00
|
|
|
|
sqmt.transform(xx, yy);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
else
|
2001-09-12 16:13:31 +00:00
|
|
|
|
mt.transform(xx, yy);
|
2002-07-22 22:00:49 +00:00
|
|
|
|
xp[j] = int(x + xx + 0.5);
|
|
|
|
|
yp[j] = int(y + yy + 0.5);
|
2002-11-27 10:30:28 +00:00
|
|
|
|
// lyxerr << "P[" << j ' ' << xx << ' ' << yy << ' ' << x << ' ' << y << ']';
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
2002-06-14 12:24:28 +00:00
|
|
|
|
pi.pain.lines(xp, yp, n, LColor::math);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
2001-09-12 15:56:09 +00:00
|
|
|
|
}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-17 14:46:45 +00:00
|
|
|
|
void drawStrRed(PainterInfo & pi, int x, int y, docstring const & str)
|
2001-02-13 19:10:18 +00:00
|
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
|
LyXFont f = pi.base.font;
|
|
|
|
|
f.setColor(LColor::latex);
|
2006-10-17 14:46:45 +00:00
|
|
|
|
pi.pain.text(x, y, str, f);
|
2001-02-13 19:10:18 +00:00
|
|
|
|
}
|
2001-07-06 12:09:32 +00:00
|
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
|
|
2006-10-17 14:46:45 +00:00
|
|
|
|
void drawStrBlack(PainterInfo & pi, int x, int y, docstring const & str)
|
2001-07-06 12:09:32 +00:00
|
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
|
LyXFont f = pi.base.font;
|
2003-04-14 14:56:49 +00:00
|
|
|
|
f.setColor(LColor::foreground);
|
2006-10-17 14:46:45 +00:00
|
|
|
|
pi.pain.text(x, y, str, f);
|
2001-07-06 12:09:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
|
|
2002-03-19 16:55:58 +00:00
|
|
|
|
void math_font_max_dim(LyXFont const & font, int & asc, int & des)
|
2001-07-20 14:54:13 +00:00
|
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
|
frontend::FontMetrics const & fm = theFontMetrics(font);
|
2006-10-07 16:15:06 +00:00
|
|
|
|
asc = fm.maxAscent();
|
|
|
|
|
des = fm.maxDescent();
|
2001-07-20 14:54:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
|
struct fontinfo {
|
2006-10-22 10:15:23 +00:00
|
|
|
|
std::string cmd_;
|
2002-05-30 07:09:54 +00:00
|
|
|
|
LyXFont::FONT_FAMILY family_;
|
|
|
|
|
LyXFont::FONT_SERIES series_;
|
|
|
|
|
LyXFont::FONT_SHAPE shape_;
|
|
|
|
|
LColor::color color_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2002-06-24 15:37:14 +00:00
|
|
|
|
LyXFont::FONT_FAMILY const inh_family = LyXFont::INHERIT_FAMILY;
|
|
|
|
|
LyXFont::FONT_SERIES const inh_series = LyXFont::INHERIT_SERIES;
|
2002-11-27 10:30:28 +00:00
|
|
|
|
LyXFont::FONT_SHAPE const inh_shape = LyXFont::INHERIT_SHAPE;
|
2002-05-30 07:09:54 +00:00
|
|
|
|
|
|
|
|
|
|
2002-08-07 08:11:41 +00:00
|
|
|
|
// mathnormal should be the first, otherwise the fallback further down
|
2002-07-01 11:17:14 +00:00
|
|
|
|
// does not work
|
2002-05-30 07:09:54 +00:00
|
|
|
|
fontinfo fontinfos[] = {
|
2003-04-14 14:56:49 +00:00
|
|
|
|
// math fonts
|
2003-10-06 09:57:03 +00:00
|
|
|
|
{"mathnormal", LyXFont::ROMAN_FAMILY, LyXFont::MEDIUM_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::ITALIC_SHAPE, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathbf", inh_family, LyXFont::BOLD_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathcal", LyXFont::CMSY_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathfrak", LyXFont::EUFRAK_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathrm", LyXFont::ROMAN_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::UP_SHAPE, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathsf", LyXFont::SANS_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathbb", LyXFont::MSB_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"mathtt", LyXFont::TYPEWRITER_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-09-30 10:56:22 +00:00
|
|
|
|
{"mathit", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::ITALIC_SHAPE, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"cmex", LyXFont::CMEX_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"cmm", LyXFont::CMM_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"cmr", LyXFont::CMR_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"cmsy", LyXFont::CMSY_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"eufrak", LyXFont::EUFRAK_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"msa", LyXFont::MSA_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"msb", LyXFont::MSB_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"wasy", LyXFont::WASY_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::none},
|
2006-11-13 17:35:18 +00:00
|
|
|
|
{"esint", LyXFont::ESINT_FAMILY, inh_series,
|
|
|
|
|
inh_shape, LColor::none},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
|
|
|
|
|
// Text fonts
|
|
|
|
|
{"text", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textbf", inh_family, LyXFont::BOLD_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textit", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::ITALIC_SHAPE, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textmd", inh_family, LyXFont::MEDIUM_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textnormal", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::UP_SHAPE, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textrm", LyXFont::ROMAN_FAMILY,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_series, LyXFont::UP_SHAPE,LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textsc", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::SMALLCAPS_SHAPE, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textsf", LyXFont::SANS_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textsl", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::SLANTED_SHAPE, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"texttt", LyXFont::TYPEWRITER_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textup", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::UP_SHAPE, LColor::foreground},
|
2002-06-24 15:37:14 +00:00
|
|
|
|
|
2002-07-08 11:29:51 +00:00
|
|
|
|
// TIPA support
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"textipa", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
|
|
|
|
|
// LyX internal usage
|
|
|
|
|
{"lyxtex", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::UP_SHAPE, LColor::latex},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxsymbol", LyXFont::SYMBOL_FAMILY, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxboldsymbol", LyXFont::SYMBOL_FAMILY, LyXFont::BOLD_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxblacktext", LyXFont::ROMAN_FAMILY, LyXFont::MEDIUM_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::UP_SHAPE, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxnochange", inh_family, inh_series,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
inh_shape, LColor::foreground},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxfakebb", LyXFont::TYPEWRITER_FAMILY, LyXFont::BOLD_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::UP_SHAPE, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxfakecal", LyXFont::SANS_FAMILY, LyXFont::MEDIUM_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::ITALIC_SHAPE, LColor::math},
|
2003-04-14 14:56:49 +00:00
|
|
|
|
{"lyxfakefrak", LyXFont::ROMAN_FAMILY, LyXFont::BOLD_SERIES,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
LyXFont::ITALIC_SHAPE, LColor::math}
|
2002-05-30 07:09:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
fontinfo * lookupFont(docstring const & name0)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
{
|
2003-08-02 11:30:30 +00:00
|
|
|
|
//lyxerr << "searching font '" << name << "'" << endl;
|
2002-07-11 09:34:58 +00:00
|
|
|
|
int const n = sizeof(fontinfos) / sizeof(fontinfo);
|
2006-10-22 10:15:23 +00:00
|
|
|
|
std::string name = to_utf8(name0);
|
2002-05-30 07:09:54 +00:00
|
|
|
|
for (int i = 0; i < n; ++i)
|
|
|
|
|
if (fontinfos[i].cmd_ == name) {
|
2003-08-02 11:30:30 +00:00
|
|
|
|
//lyxerr << "found '" << i << "'" << endl;
|
2002-05-30 07:09:54 +00:00
|
|
|
|
return fontinfos + i;
|
|
|
|
|
}
|
2002-07-11 09:34:58 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
fontinfo * searchFont(docstring const & name)
|
2002-07-11 09:34:58 +00:00
|
|
|
|
{
|
|
|
|
|
fontinfo * f = lookupFont(name);
|
|
|
|
|
return f ? f : fontinfos;
|
2002-07-01 11:17:14 +00:00
|
|
|
|
// this should be mathnormal
|
|
|
|
|
//return searchFont("mathnormal");
|
2002-05-30 07:09:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
bool isFontName(docstring const & name)
|
2002-07-11 09:34:58 +00:00
|
|
|
|
{
|
|
|
|
|
return lookupFont(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
LyXFont getFont(docstring const & name)
|
2002-06-18 15:44:30 +00:00
|
|
|
|
{
|
|
|
|
|
LyXFont font;
|
|
|
|
|
augmentFont(font, name);
|
|
|
|
|
return font;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void fakeFont(docstring const & orig, docstring const & fake)
|
2002-06-18 15:44:30 +00:00
|
|
|
|
{
|
|
|
|
|
fontinfo * forig = searchFont(orig);
|
|
|
|
|
fontinfo * ffake = searchFont(fake);
|
|
|
|
|
if (forig && ffake) {
|
|
|
|
|
forig->family_ = ffake->family_;
|
|
|
|
|
forig->series_ = ffake->series_;
|
|
|
|
|
forig->shape_ = ffake->shape_;
|
|
|
|
|
forig->color_ = ffake->color_;
|
|
|
|
|
} else {
|
2006-10-22 10:15:23 +00:00
|
|
|
|
lyxerr << "Can't fake font '" << to_utf8(orig) << "' with '"
|
|
|
|
|
<< to_utf8(fake) << "'" << endl;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-01 11:17:14 +00:00
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void augmentFont(LyXFont & font, docstring const & name)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
{
|
|
|
|
|
static bool initialized = false;
|
|
|
|
|
if (!initialized) {
|
|
|
|
|
initialized = true;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
// fake fonts if necessary
|
2006-10-22 10:15:23 +00:00
|
|
|
|
if (!theFontLoader().available(getFont(from_ascii("mathfrak"))))
|
|
|
|
|
fakeFont(from_ascii("mathfrak"), from_ascii("lyxfakefrak"));
|
|
|
|
|
if (!theFontLoader().available(getFont(from_ascii("mathcal"))))
|
|
|
|
|
fakeFont(from_ascii("mathcal"), from_ascii("lyxfakecal"));
|
2002-05-30 07:09:54 +00:00
|
|
|
|
}
|
|
|
|
|
fontinfo * info = searchFont(name);
|
2002-06-24 15:37:14 +00:00
|
|
|
|
if (info->family_ != inh_family)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
font.setFamily(info->family_);
|
2002-06-24 15:37:14 +00:00
|
|
|
|
if (info->series_ != inh_series)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
font.setSeries(info->series_);
|
2002-06-24 15:37:14 +00:00
|
|
|
|
if (info->shape_ != inh_shape)
|
2002-05-30 07:09:54 +00:00
|
|
|
|
font.setShape(info->shape_);
|
|
|
|
|
if (info->color_ != LColor::none)
|
|
|
|
|
font.setColor(info->color_);
|
|
|
|
|
}
|
2003-06-02 10:03:27 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring asString(MathArray const & ar)
|
2003-06-02 10:03:27 +00:00
|
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
|
odocstringstream os;
|
2003-06-02 10:03:27 +00:00
|
|
|
|
WriteStream ws(os);
|
|
|
|
|
ws << ar;
|
2006-10-22 10:15:23 +00:00
|
|
|
|
return os.str();
|
2003-06-02 10:03:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-17 14:46:45 +00:00
|
|
|
|
void asArray(docstring const & str, MathArray & ar)
|
2003-06-02 10:03:27 +00:00
|
|
|
|
{
|
2006-10-22 10:15:23 +00:00
|
|
|
|
mathed_parse_cell(ar, str);
|
2003-06-02 10:03:27 +00:00
|
|
|
|
}
|
2004-01-07 18:28:50 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring asString(InsetMath const & inset)
|
2004-01-07 18:28:50 +00:00
|
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
|
odocstringstream os;
|
2004-01-07 18:28:50 +00:00
|
|
|
|
WriteStream ws(os);
|
|
|
|
|
inset.write(ws);
|
2006-10-22 10:15:23 +00:00
|
|
|
|
return os.str();
|
2004-01-07 18:28:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring asString(MathAtom const & at)
|
2004-01-07 18:28:50 +00:00
|
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
|
odocstringstream os;
|
2004-01-07 18:28:50 +00:00
|
|
|
|
WriteStream ws(os);
|
|
|
|
|
at->write(ws);
|
2006-10-22 10:15:23 +00:00
|
|
|
|
return os.str();
|
2004-01-07 18:28:50 +00:00
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|