1999-09-27 18:44:28 +00:00
|
|
|
#include <config.h>
|
2001-04-25 15:43:57 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "math_parser.h"
|
2001-08-30 22:42:26 +00:00
|
|
|
#include "lyxlex.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "support/filetools.h" // LibFileSearch
|
|
|
|
#include "support/lyxfunctional.h"
|
|
|
|
|
|
|
|
#include <vector>
|
2001-08-09 15:56:38 +00:00
|
|
|
#include <algorithm>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-09-02 11:43:34 +00:00
|
|
|
using std::endl;
|
2001-08-10 14:08:00 +00:00
|
|
|
|
|
|
|
bool operator<(const latexkeys & a, const latexkeys & b)
|
|
|
|
{
|
|
|
|
return string(a.name) < string(b.name);
|
|
|
|
}
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
2001-08-09 15:56:38 +00:00
|
|
|
// This lists needs to remain sorted all the time!
|
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
struct latexkeys_a {
|
|
|
|
///
|
|
|
|
char const * name;
|
|
|
|
///
|
|
|
|
short token;
|
|
|
|
///
|
|
|
|
unsigned int id;
|
|
|
|
};
|
|
|
|
|
|
|
|
latexkeys_a wordlist_array[] =
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-08-31 21:15:57 +00:00
|
|
|
{"!", LM_TK_SPACE, 0},
|
|
|
|
{"#", LM_TK_SPECIAL, '#'},
|
|
|
|
{"$", LM_TK_SPECIAL, '$'},
|
|
|
|
{"%", LM_TK_SPECIAL, '%'},
|
|
|
|
{"&", LM_TK_SPECIAL, '&'},
|
|
|
|
{"(", LM_TK_BEGIN, LM_OT_SIMPLE},
|
|
|
|
{")", LM_TK_END, LM_OT_SIMPLE},
|
|
|
|
{",", LM_TK_SPACE, 1},
|
|
|
|
{".", LM_TK_SPECIAL, '.'},
|
|
|
|
{":", LM_TK_SPACE, 2},
|
|
|
|
{";", LM_TK_SPACE, 3},
|
|
|
|
{"Pr", LM_TK_FUNCLIM, 0},
|
|
|
|
{"[", LM_TK_BEGIN, LM_OT_EQUATION},
|
|
|
|
{"\\", LM_TK_NEWLINE, static_cast<unsigned>(-1)}, // -1 needed in mathed_parse_lines!
|
|
|
|
{"]", LM_TK_END, LM_OT_EQUATION},
|
|
|
|
{"_", LM_TK_SPECIAL, '_'},
|
|
|
|
{"acute", LM_TK_DECORATION, LM_acute},
|
|
|
|
{"arccos", LM_TK_FUNC, 0},
|
|
|
|
{"arcsin", LM_TK_FUNC, 0},
|
|
|
|
{"arctan", LM_TK_FUNC, 0},
|
|
|
|
{"arg", LM_TK_FUNC, 0},
|
|
|
|
{"atop", LM_TK_ATOP, 0},
|
|
|
|
{"backslash", LM_TK_SPECIAL, '\\'},
|
|
|
|
{"bar", LM_TK_DECORATION, LM_bar},
|
|
|
|
{"begin", LM_TK_BEGIN, 0},
|
|
|
|
{"binom", LM_TK_BINOM, 0},
|
|
|
|
{"bmod", LM_TK_FUNC, 0},
|
|
|
|
{"breve", LM_TK_DECORATION, LM_breve},
|
|
|
|
{"cal", LM_TK_OLDFONT, LM_TC_CAL},
|
|
|
|
{"cdots", LM_TK_DOTS, LM_cdots},
|
|
|
|
{"check", LM_TK_DECORATION, LM_check},
|
|
|
|
{"choose", LM_TK_CHOOSE, 0},
|
|
|
|
{"cos", LM_TK_FUNC, 0},
|
|
|
|
{"cosh", LM_TK_FUNC, 0},
|
|
|
|
{"cot", LM_TK_FUNC, 0},
|
|
|
|
{"coth", LM_TK_FUNC, 0},
|
|
|
|
{"csc", LM_TK_FUNC, 0},
|
|
|
|
{"ddot", LM_TK_DECORATION, LM_ddot},
|
|
|
|
{"ddots", LM_TK_DOTS, LM_ddots},
|
|
|
|
{"deg", LM_TK_FUNC, 0},
|
|
|
|
{"det", LM_TK_FUNCLIM, 0},
|
|
|
|
{"dim", LM_TK_FUNC, 0},
|
|
|
|
//{"displaystyle", LM_TK_STY, LM_ST_DISPLAY},
|
|
|
|
{"dot", LM_TK_DECORATION, LM_dot},
|
|
|
|
{"end", LM_TK_END, 0},
|
|
|
|
{"exp", LM_TK_FUNC, 0},
|
|
|
|
{"frac", LM_TK_FRAC, 0},
|
|
|
|
{"gcd", LM_TK_FUNCLIM, 0},
|
|
|
|
{"grave", LM_TK_DECORATION, LM_grave},
|
|
|
|
{"hat", LM_TK_DECORATION, LM_hat},
|
|
|
|
{"hom", LM_TK_FUNC, 0},
|
|
|
|
{"inf", LM_TK_FUNCLIM, 0},
|
|
|
|
{"ker", LM_TK_FUNC, 0},
|
|
|
|
{"kern", LM_TK_KERN, 0},
|
|
|
|
{"label", LM_TK_LABEL, 0},
|
|
|
|
{"ldots", LM_TK_DOTS, LM_ldots},
|
|
|
|
{"left", LM_TK_LEFT, 0},
|
|
|
|
{"lg", LM_TK_FUNC, 0},
|
|
|
|
{"lim", LM_TK_FUNCLIM, 0},
|
|
|
|
{"liminf", LM_TK_FUNCLIM, 0},
|
|
|
|
{"limits", LM_TK_LIMIT, 1 },
|
|
|
|
{"limsup", LM_TK_FUNCLIM, 0},
|
|
|
|
{"ln", LM_TK_FUNC, 0},
|
|
|
|
{"log", LM_TK_FUNC, 0},
|
|
|
|
{"mathbb", LM_TK_FONT, LM_TC_BB},
|
|
|
|
{"mathbf", LM_TK_FONT, LM_TC_BF},
|
|
|
|
{"mathcal", LM_TK_FONT, LM_TC_CAL},
|
|
|
|
{"mathit", LM_TK_FONT, LM_TC_IT},
|
|
|
|
{"mathnormal", LM_TK_FONT, LM_TC_VAR},
|
|
|
|
{"mathrm", LM_TK_FONT, LM_TC_RM},
|
|
|
|
{"mathsf", LM_TK_FONT, LM_TC_SF},
|
|
|
|
{"mathtt", LM_TK_FONT, LM_TC_TT},
|
|
|
|
{"max", LM_TK_FUNCLIM, 0},
|
|
|
|
{"min", LM_TK_FUNCLIM, 0},
|
|
|
|
{"newcommand", LM_TK_NEWCOMMAND, 0 },
|
|
|
|
{"nolimits", LM_TK_LIMIT, static_cast<unsigned>(-1)},
|
|
|
|
{"nonumber", LM_TK_NONUM, 0},
|
|
|
|
{"not", LM_TK_NOT, LM_not},
|
|
|
|
{"over", LM_TK_OVER, 0},
|
|
|
|
{"overbrace", LM_TK_DECORATION, LM_overbrace},
|
|
|
|
{"overleftarrow", LM_TK_DECORATION, LM_overleftarrow},
|
|
|
|
{"overline", LM_TK_DECORATION, LM_overline},
|
|
|
|
{"overrightarrow", LM_TK_DECORATION, LM_overightarrow},
|
|
|
|
{"protect", LM_TK_PROTECT, 0},
|
|
|
|
{"qquad", LM_TK_SPACE, 5},
|
|
|
|
{"quad", LM_TK_SPACE, 4},
|
|
|
|
{"right", LM_TK_RIGHT, 0},
|
|
|
|
{"root", LM_TK_ROOT, 0},
|
|
|
|
//{"scriptscriptstyle", LM_TK_STY, LM_ST_SCRIPTSCRIPT},
|
|
|
|
//{"scriptstyle", LM_TK_STY, LM_ST_SCRIPT},
|
|
|
|
{"sec", LM_TK_FUNC, 0},
|
|
|
|
{"sin", LM_TK_FUNC, 0},
|
|
|
|
{"sinh", LM_TK_FUNC, 0},
|
|
|
|
{"sqrt", LM_TK_SQRT, 0},
|
|
|
|
{"stackrel", LM_TK_STACK, 0},
|
|
|
|
{"sup", LM_TK_FUNCLIM, 0},
|
|
|
|
{"tan", LM_TK_FUNC, 0},
|
|
|
|
{"tanh", LM_TK_FUNC, 0},
|
|
|
|
{"textrm", LM_TK_FONT, LM_TC_TEXTRM},
|
|
|
|
//{"textstyle", LM_TK_STY, LM_ST_TEXT},
|
|
|
|
{"tilde", LM_TK_DECORATION, LM_tilde},
|
|
|
|
{"underbrace", LM_TK_DECORATION, LM_underbrace},
|
|
|
|
{"underline", LM_TK_DECORATION, LM_underline},
|
|
|
|
{"vdots", LM_TK_DOTS, LM_vdots},
|
|
|
|
{"vec", LM_TK_DECORATION, LM_vec},
|
|
|
|
{"widehat", LM_TK_DECORATION, LM_widehat},
|
|
|
|
{"widetilde", LM_TK_DECORATION, LM_widetilde},
|
|
|
|
{"{", LM_TK_SPECIAL, '{'},
|
|
|
|
{"|", LM_TK_UNDEF, '|'},
|
|
|
|
{"}", LM_TK_SPECIAL, '}'},
|
|
|
|
{"", LM_TK_SPECIAL, 0}
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
std::vector<latexkeys> wordlist;
|
|
|
|
|
|
|
|
bool initialized = false;
|
2001-04-25 15:43:57 +00:00
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2001-08-31 13:27:52 +00:00
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
void ReadSymbols(string const & filename)
|
|
|
|
{
|
2001-08-31 13:27:52 +00:00
|
|
|
for (latexkeys_a * p = wordlist_array; !string(p->name).empty(); ++p) {
|
2001-08-30 22:42:26 +00:00
|
|
|
latexkeys tmp;
|
2001-08-31 13:27:52 +00:00
|
|
|
tmp.name = p->name;
|
|
|
|
tmp.token = p->token;
|
|
|
|
tmp.id = p->id;
|
2001-08-31 21:15:57 +00:00
|
|
|
tmp.type = LMB_NONE;
|
2001-08-30 22:42:26 +00:00
|
|
|
tmp.latex_font_id = 0;
|
|
|
|
wordlist.push_back(tmp);
|
2000-09-14 17:53:12 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
LyXLex lex(0, 0);
|
|
|
|
lex.setFile(filename);
|
|
|
|
while (lex.isOK()) {
|
|
|
|
latexkeys tmp;
|
|
|
|
string font;
|
|
|
|
string type;
|
|
|
|
|
|
|
|
if (lex.next())
|
|
|
|
tmp.name = lex.getString();
|
|
|
|
else
|
|
|
|
break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-08-30 22:42:26 +00:00
|
|
|
if (lex.next())
|
|
|
|
font = lex.getString();
|
|
|
|
if (lex.next())
|
|
|
|
tmp.latex_font_id = lex.getInteger();
|
|
|
|
if (lex.next())
|
|
|
|
tmp.id = lex.getInteger();
|
|
|
|
if (lex.next())
|
|
|
|
type = lex.getString();
|
|
|
|
|
2001-08-31 21:15:57 +00:00
|
|
|
if (font == "cmr")
|
|
|
|
tmp.token = LM_TK_CMR;
|
|
|
|
else if (font == "cmsy")
|
2001-08-30 22:42:26 +00:00
|
|
|
tmp.token = LM_TK_CMSY;
|
|
|
|
else if (font == "cmm")
|
|
|
|
tmp.token = LM_TK_CMM;
|
|
|
|
else if (font == "cmex")
|
|
|
|
tmp.token = LM_TK_CMEX;
|
|
|
|
else if (font == "msa")
|
|
|
|
tmp.token = LM_TK_MSA;
|
|
|
|
else if (font == "msb")
|
|
|
|
tmp.token = LM_TK_MSB;
|
|
|
|
else
|
|
|
|
tmp.token = LM_TK_SYM;
|
|
|
|
|
|
|
|
if (type == "mathrel")
|
|
|
|
tmp.type = LMB_RELATION;
|
|
|
|
else if (type == "mathbin")
|
|
|
|
tmp.type = LMB_OPERATOR;
|
|
|
|
else
|
|
|
|
tmp.type = LMB_NONE;
|
|
|
|
|
|
|
|
wordlist.push_back(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(wordlist.begin(), wordlist.end());
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
latexkeys const * in_word_set(string const & str)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-08-30 22:42:26 +00:00
|
|
|
if (!initialized) {
|
2001-08-31 07:26:27 +00:00
|
|
|
lyxerr[Debug::MATHED] << "Reading symbols file\n";
|
2001-08-30 22:42:26 +00:00
|
|
|
string const file = LibFileSearch(string(), "symbols");
|
|
|
|
if (file.empty())
|
|
|
|
lyxerr << "Could not find symbols file" << endl;
|
2001-08-31 13:27:52 +00:00
|
|
|
else
|
2001-08-30 22:42:26 +00:00
|
|
|
ReadSymbols(file);
|
|
|
|
initialized = true;
|
2001-08-31 13:27:52 +00:00
|
|
|
}
|
2001-08-30 22:42:26 +00:00
|
|
|
|
|
|
|
std::vector<latexkeys>::iterator it =
|
|
|
|
std::find_if(wordlist.begin(), wordlist.end(),
|
|
|
|
lyx::compare_memfun(&latexkeys::Name, str));
|
|
|
|
return (it != wordlist.end()) ? &(*it) : 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|