1999-09-27 18:44:28 +00:00
|
|
|
/*
|
|
|
|
* File: math_parser.C
|
|
|
|
* Purpose: Parser for mathed
|
|
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
|
|
* Created: January 1996
|
|
|
|
* Description: Parse LaTeX2e math mode code.
|
|
|
|
*
|
|
|
|
* Dependencies: Xlib, XForms
|
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
* Copyright: 1996, Alejandro Aguilar Sierra
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* Version: 0.8beta.
|
|
|
|
*
|
|
|
|
* You are free to use and modify this code under the terms of
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2000-09-26 13:54:57 +00:00
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
#include <cctype>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
2001-02-13 13:28:32 +00:00
|
|
|
#pragma implementation
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_parser.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "array.h"
|
|
|
|
#include "math_rowst.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "math_iter.h"
|
|
|
|
#include "math_inset.h"
|
|
|
|
#include "math_macro.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
#include "math_macrotable.h"
|
|
|
|
#include "math_macrotemplate.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "math_root.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "math_matrixinset.h"
|
|
|
|
#include "math_accentinset.h"
|
|
|
|
#include "math_bigopinset.h"
|
|
|
|
#include "math_funcinset.h"
|
|
|
|
#include "math_spaceinset.h"
|
|
|
|
#include "math_dotsinset.h"
|
|
|
|
#include "math_fracinset.h"
|
|
|
|
#include "math_deliminset.h"
|
|
|
|
#include "math_decorationinset.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
2000-09-26 13:54:57 +00:00
|
|
|
#include "support/lyxlib.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "mathed/support.h"
|
2001-02-16 09:25:43 +00:00
|
|
|
#include "boost/array.hpp"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::istream;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
|
|
|
|
2000-11-02 04:48:34 +00:00
|
|
|
|
2001-04-24 16:13:38 +00:00
|
|
|
extern MathMatrixInset create_multiline(short int type, int cols);
|
2001-02-03 21:02:22 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
2001-02-03 21:02:22 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
enum {
|
2001-04-24 16:13:38 +00:00
|
|
|
FLAG_BRACE = 1, // A { needed
|
|
|
|
FLAG_BRACE_ARG = 2, // Next { is argument
|
|
|
|
FLAG_BRACE_OPT = 4, // Optional {
|
|
|
|
FLAG_BRACE_LAST = 8, // Last } ends the parsing process
|
|
|
|
FLAG_BRACK_ARG = 16, // Optional [
|
|
|
|
FLAG_RIGHT = 32, // Next right ends the parsing process
|
|
|
|
FLAG_END = 64, // Next end ends the parsing process
|
|
|
|
FLAG_BRACE_FONT = 128, // Next } closes a font
|
|
|
|
FLAG_BRACK_END = 256 // Next ] ends the parsing process
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
union YYSTYPE {
|
2001-02-26 12:53:35 +00:00
|
|
|
///
|
|
|
|
unsigned char c;
|
|
|
|
///
|
|
|
|
char const * s;
|
|
|
|
///
|
|
|
|
int i;
|
|
|
|
///
|
|
|
|
latexkeys const * l;
|
2001-02-16 09:25:43 +00:00
|
|
|
};
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
YYSTYPE yylval;
|
|
|
|
|
|
|
|
|
2001-02-03 21:02:22 +00:00
|
|
|
MathedInsetTypes mathed_env = LM_OT_MIN;
|
2000-09-26 13:54:57 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2001-02-11 09:58:20 +00:00
|
|
|
int const latex_mathenv_num = 12;
|
2001-02-03 21:02:22 +00:00
|
|
|
char const * latex_mathenv[latex_mathenv_num] = {
|
2001-02-26 12:53:35 +00:00
|
|
|
"math",
|
|
|
|
"displaymath",
|
|
|
|
"equation",
|
|
|
|
"eqnarray*",
|
|
|
|
"eqnarray",
|
|
|
|
"align*",
|
|
|
|
"align",
|
|
|
|
"alignat*",
|
|
|
|
"alignat",
|
|
|
|
"multline*",
|
|
|
|
"multline",
|
|
|
|
"array"
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
char const * latex_special_chars = "#$%&_{}";
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// These are lexical codes, not semantic
|
|
|
|
enum lexcode_enum {
|
2001-02-26 12:53:35 +00:00
|
|
|
LexNone,
|
|
|
|
LexESC,
|
|
|
|
LexAlpha,
|
|
|
|
LexDigit,
|
|
|
|
LexBOP, // Binary operators or relations
|
|
|
|
LexMathSpace,
|
|
|
|
LexOpen,
|
|
|
|
LexClose,
|
|
|
|
LexComment,
|
|
|
|
LexArgument,
|
|
|
|
LexSpace,
|
|
|
|
LexNewLine,
|
|
|
|
LexOther,
|
|
|
|
LexSelf
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
lexcode_enum lexcode[256];
|
2001-04-17 00:19:49 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
2001-01-26 22:24:20 +00:00
|
|
|
#warning Replace with string
|
2001-04-17 00:19:49 +00:00
|
|
|
#endif
|
2001-03-20 01:22:46 +00:00
|
|
|
//char yytext[256];
|
2001-04-17 14:20:21 +00:00
|
|
|
boost::array<char, 256> yytext;
|
2001-03-20 01:22:46 +00:00
|
|
|
int yylineno;
|
|
|
|
istream * yyis;
|
|
|
|
bool yy_mtextmode= false;
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
void mathPrintError(string const & msg)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
lyxerr << "Line ~" << yylineno << ": Math parse error: " << msg << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-07 01:14:37 +00:00
|
|
|
void LexInitCodes()
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
for (int i = 0; i <= 255; ++i) {
|
2001-02-26 12:53:35 +00:00
|
|
|
if (isalpha(i))
|
|
|
|
lexcode[i] = LexAlpha;
|
|
|
|
else if (isdigit(i))
|
|
|
|
lexcode[i] = LexDigit;
|
|
|
|
else if (isspace(i))
|
|
|
|
lexcode[i] = LexSpace;
|
|
|
|
else
|
|
|
|
lexcode[i] = LexNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
lexcode['\t'] = lexcode['\f'] = lexcode[' '] = LexSpace;
|
|
|
|
lexcode['\n'] = LexNewLine;
|
|
|
|
lexcode['%'] = LexComment;
|
|
|
|
lexcode['#'] = LexArgument;
|
|
|
|
lexcode['+'] = lexcode['-'] = lexcode['*'] = lexcode['/']
|
|
|
|
= lexcode['<'] = lexcode['>'] = lexcode['='] = LexBOP;
|
|
|
|
|
|
|
|
lexcode['!'] = lexcode[','] = lexcode[':']
|
|
|
|
= lexcode[';'] = LexMathSpace;
|
|
|
|
|
|
|
|
lexcode['('] = lexcode[')'] = lexcode['|'] = lexcode['.'] =
|
|
|
|
lexcode['?'] = LexOther;
|
|
|
|
|
|
|
|
lexcode['\''] = lexcode['@'] = LexAlpha;
|
|
|
|
|
|
|
|
lexcode['['] = lexcode[']'] = lexcode['^'] = lexcode['_'] =
|
|
|
|
lexcode['&'] = LexSelf;
|
|
|
|
|
|
|
|
lexcode['\\'] = LexESC;
|
|
|
|
lexcode['{'] = LexOpen;
|
|
|
|
lexcode['}'] = LexClose;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
char LexGetArg(char lf, bool accept_spaces = false)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-26 12:53:35 +00:00
|
|
|
// unsigned char c;
|
|
|
|
// char cc;
|
|
|
|
while (yyis->good()) {
|
|
|
|
char cc;
|
|
|
|
yyis->get(cc);
|
|
|
|
unsigned char c = cc;
|
|
|
|
if (c > ' ') {
|
|
|
|
if (!lf)
|
|
|
|
lf = c;
|
|
|
|
else if (c != lf) {
|
2001-04-24 16:13:38 +00:00
|
|
|
lyxerr << "Math parse error: unexpected '" << c << "'" << endl;
|
2001-02-26 12:53:35 +00:00
|
|
|
return '\0';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
char const rg =
|
|
|
|
(lf == '{') ? '}' :
|
|
|
|
((lf == '[') ? ']'
|
|
|
|
: ((lf == '(') ? ')' : 0));
|
|
|
|
if (!rg) {
|
2001-04-24 16:13:38 +00:00
|
|
|
lyxerr << "Math parse error: unknown bracket '" << lf << "'" << endl;
|
2001-02-26 12:53:35 +00:00
|
|
|
return '\0';
|
|
|
|
}
|
|
|
|
char * p = &yytext[0];
|
|
|
|
int bcnt = 1;
|
|
|
|
do {
|
|
|
|
char cc;
|
|
|
|
yyis->get(cc);
|
|
|
|
unsigned char c = cc;
|
|
|
|
if (c == lf) ++bcnt;
|
|
|
|
if (c == rg) --bcnt;
|
|
|
|
if ((c > ' ' || (c == ' ' && accept_spaces)) && bcnt > 0)
|
|
|
|
*(p++) = c;
|
|
|
|
} while (bcnt > 0 && yyis->good() && p - yytext.data() < 255);
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
return rg;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
|
2000-03-07 01:14:37 +00:00
|
|
|
int yylex(void)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
static int init_done;
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
if (!init_done) LexInitCodes();
|
|
|
|
|
|
|
|
unsigned char c;
|
|
|
|
char cc;
|
|
|
|
while (yyis->good()) {
|
|
|
|
yyis->get(cc);
|
|
|
|
c = cc;
|
|
|
|
|
|
|
|
if (yy_mtextmode && c == ' ') {
|
|
|
|
yylval.i= ' ';
|
|
|
|
return LM_TK_ALPHA;
|
|
|
|
} else if (lexcode[c] == LexNewLine) {
|
|
|
|
++yylineno;
|
|
|
|
continue;
|
|
|
|
} else if (lexcode[c] == LexComment) {
|
|
|
|
do {
|
|
|
|
yyis->get(cc);
|
|
|
|
c = cc;
|
|
|
|
} while (c != '\n' % yyis->good()); // eat comments
|
|
|
|
} else if (lexcode[c] == LexDigit
|
|
|
|
|| lexcode[c] == LexOther
|
|
|
|
|| lexcode[c] == LexMathSpace) {
|
|
|
|
yylval.i = c;
|
|
|
|
return LM_TK_STR;
|
|
|
|
} else if (lexcode[c] == LexAlpha) {
|
|
|
|
yylval.i= c;
|
|
|
|
return LM_TK_ALPHA;
|
|
|
|
} else if (lexcode[c] == LexBOP) {
|
|
|
|
yylval.i= c;
|
|
|
|
return LM_TK_BOP;
|
|
|
|
} else if (lexcode[c] == LexSelf) {
|
|
|
|
return c;
|
|
|
|
} else if (lexcode[c] == LexArgument) {
|
|
|
|
yyis->get(cc);
|
|
|
|
c = cc;
|
|
|
|
yylval.i = c - '0';
|
|
|
|
return LM_TK_ARGUMENT;
|
|
|
|
} else if (lexcode[c] == LexOpen) {
|
|
|
|
return LM_TK_OPEN;
|
|
|
|
} else if (lexcode[c] == LexClose) {
|
|
|
|
return LM_TK_CLOSE;
|
|
|
|
} else if (lexcode[c] == LexESC) {
|
|
|
|
yyis->get(cc);
|
|
|
|
c = cc;
|
|
|
|
if (c == '\\') {
|
|
|
|
return LM_TK_NEWLINE;
|
|
|
|
}
|
|
|
|
if (c == '(') {
|
|
|
|
yylval.i = LM_OT_MIN;
|
|
|
|
return LM_TK_BEGIN;
|
|
|
|
}
|
|
|
|
if (c == ')') {
|
|
|
|
yylval.i = LM_OT_MIN;
|
|
|
|
return LM_TK_END;
|
|
|
|
}
|
|
|
|
if (c == '[') {
|
|
|
|
yylval.i = LM_OT_PAR;
|
|
|
|
return LM_TK_BEGIN;
|
|
|
|
}
|
|
|
|
if (c == ']') {
|
|
|
|
yylval.i = LM_OT_PAR;
|
|
|
|
return LM_TK_END;
|
|
|
|
}
|
2001-05-31 02:23:46 +00:00
|
|
|
if (
|
|
|
|
#if 0
|
|
|
|
strchr(latex_special_chars, c)
|
|
|
|
#else
|
|
|
|
contains(latex_special_chars, c)
|
|
|
|
#endif
|
|
|
|
) {
|
2001-02-26 12:53:35 +00:00
|
|
|
yylval.i = c;
|
|
|
|
return LM_TK_SPECIAL;
|
|
|
|
}
|
|
|
|
if (lexcode[c] == LexMathSpace) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4 && static_cast<int>(c) != latex_mathspace[i][0]; ++i);
|
|
|
|
yylval.i = (i < 4) ? i : 0;
|
|
|
|
return LM_TK_SPACE;
|
|
|
|
}
|
|
|
|
if (lexcode[c] == LexAlpha || lexcode[c] == LexDigit) {
|
|
|
|
char * p = &yytext[0];
|
|
|
|
while ((lexcode[c] == LexAlpha || lexcode[c] == LexDigit)
|
|
|
|
&& p - yytext.data() < 255) {
|
|
|
|
*p = c;
|
|
|
|
yyis->get(cc);
|
|
|
|
c = cc;
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
*p = '\0';
|
2001-04-24 16:13:38 +00:00
|
|
|
if (yyis->good())
|
|
|
|
yyis->putback(c);
|
|
|
|
//lyxerr << "reading: '" << yytext.data() << "'\n";
|
2001-04-25 15:43:57 +00:00
|
|
|
latexkeys const * l = in_word_set(yytext.data());
|
2001-02-26 12:53:35 +00:00
|
|
|
if (l) {
|
|
|
|
if (l->token == LM_TK_BEGIN || l->token == LM_TK_END) {
|
|
|
|
int i;
|
|
|
|
LexGetArg('{');
|
2001-02-16 09:25:43 +00:00
|
|
|
// for (i = 0; i < 5 && compare(yytext, latex_mathenv[i],
|
2000-01-24 18:34:46 +00:00
|
|
|
// strlen(latex_mathenv[i])); ++i);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
i < latex_mathenv_num
|
|
|
|
&& compare(yytext.data(), latex_mathenv[i]); ++i);
|
|
|
|
yylval.i = i;
|
|
|
|
} else if (l->token == LM_TK_SPACE)
|
|
|
|
yylval.i = l->id;
|
|
|
|
else
|
|
|
|
yylval.l = l;
|
|
|
|
return l->token;
|
|
|
|
} else {
|
|
|
|
yylval.s = yytext.data();
|
|
|
|
return LM_TK_UNDEF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
#if 0
|
|
|
|
int parse_align(char const * hor)
|
1999-11-15 11:06:41 +00:00
|
|
|
{
|
2001-02-26 12:53:35 +00:00
|
|
|
int nc = 0;
|
|
|
|
for (char * c = hor; c && *c > ' '; ++c) ++nc;
|
|
|
|
return nc;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-05-31 02:23:46 +00:00
|
|
|
#else
|
|
|
|
int parse_align(string const & hor)
|
|
|
|
{
|
|
|
|
int nc = 0;
|
|
|
|
string::const_iterator cit = hor.begin();
|
|
|
|
string::const_iterator end = hor.end();
|
|
|
|
for (; cit != end; ++cit)
|
|
|
|
if (*cit > ' ') ++nc;
|
|
|
|
return nc;
|
|
|
|
}
|
|
|
|
#endif
|
1999-11-15 11:06:41 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Accent hacks only for 0.12. Stolen from Cursor.
|
|
|
|
int accent = 0;
|
|
|
|
int nestaccent[8];
|
|
|
|
|
|
|
|
void setAccent(int ac)
|
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
if (ac > 0 && accent < 8)
|
1999-09-27 18:44:28 +00:00
|
|
|
nestaccent[accent++] = ac;
|
2001-04-24 16:13:38 +00:00
|
|
|
else
|
1999-09-27 18:44:28 +00:00
|
|
|
accent = 0; // consumed!
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
MathedInset * doAccent(byte c, MathedTextCodes t)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-15 11:06:41 +00:00
|
|
|
MathedInset * ac = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
for (int i = accent - 1; i >= 0; --i) {
|
|
|
|
if (i == accent - 1)
|
1999-09-27 18:44:28 +00:00
|
|
|
ac = new MathAccentInset(c, t, nestaccent[i]);
|
|
|
|
else
|
|
|
|
ac = new MathAccentInset(ac, nestaccent[i]);
|
|
|
|
}
|
|
|
|
accent = 0; // consumed!
|
|
|
|
|
|
|
|
return ac;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
MathedInset * doAccent(MathedInset * p)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-15 11:06:41 +00:00
|
|
|
MathedInset * ac = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
for (int i = accent - 1; i >= 0; --i) {
|
|
|
|
if (i == accent - 1)
|
1999-09-27 18:44:28 +00:00
|
|
|
ac = new MathAccentInset(p, nestaccent[i]);
|
|
|
|
else
|
|
|
|
ac = new MathAccentInset(ac, nestaccent[i]);
|
|
|
|
}
|
|
|
|
accent = 0; // consumed!
|
|
|
|
|
|
|
|
return ac;
|
|
|
|
}
|
|
|
|
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
|
|
void do_insert(MathedIter & it, MathedInset * m, MathedTextCodes t)
|
|
|
|
{
|
|
|
|
if (accent)
|
|
|
|
it.insertInset(doAccent(m), t);
|
|
|
|
else
|
|
|
|
it.insertInset(m, t);
|
|
|
|
}
|
|
|
|
|
2001-04-27 12:35:55 +00:00
|
|
|
|
|
|
|
void handle_frac(MathedIter & it, MathParInset * & par, MathedInsetTypes t)
|
|
|
|
{
|
|
|
|
MathFracInset fc(t);
|
|
|
|
MathedArray num;
|
|
|
|
mathed_parse(num, par, FLAG_BRACE|FLAG_BRACE_LAST);
|
|
|
|
MathedArray den;
|
|
|
|
mathed_parse(den, par, FLAG_BRACE|FLAG_BRACE_LAST);
|
|
|
|
fc.SetData(num, den);
|
|
|
|
it.insertInset(fc.Clone(), LM_TC_ACTIVE_INSET);
|
|
|
|
}
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
/**
|
|
|
|
*/
|
2001-04-24 16:13:38 +00:00
|
|
|
void mathed_parse(MathedArray & array, MathParInset * & par, unsigned flags)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-26 12:53:35 +00:00
|
|
|
int t = yylex();
|
|
|
|
int tprev = 0;
|
|
|
|
bool panic = false;
|
|
|
|
static int plevel = -1;
|
|
|
|
static int size = LM_ST_TEXT;
|
|
|
|
MathedTextCodes varcode = LM_TC_VAR;
|
|
|
|
MathedInset * binset = 0;
|
|
|
|
|
2001-04-24 16:13:38 +00:00
|
|
|
string last_label; // last label seen
|
|
|
|
bool last_numbered = true; // have we seen '\nonumber' lately?
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
int brace = 0;
|
|
|
|
int acc_brace = 0;
|
|
|
|
int acc_braces[8];
|
2001-03-09 23:55:50 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
++plevel;
|
|
|
|
MathedIter data(&array);
|
|
|
|
while (t) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "t: " << t << " par: " << par << " flags: " << flags;
|
|
|
|
//lyxerr << "label: '" << last_label << "' ";
|
|
|
|
//array.dump(lyxerr);
|
|
|
|
//lyxerr << "\n";
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
if ((flags & FLAG_BRACE) && t != LM_TK_OPEN) {
|
|
|
|
if ((flags & FLAG_BRACK_ARG) && t == '[') {
|
|
|
|
} else {
|
|
|
|
mathPrintError("Expected {. Maybe you forgot to enclose an argument in {}");
|
|
|
|
panic = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-25 15:43:57 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
switch (t) {
|
|
|
|
|
|
|
|
case LM_TK_ALPHA:
|
2001-04-24 16:13:38 +00:00
|
|
|
if (accent)
|
|
|
|
data.insertInset(doAccent(yylval.i, varcode), LM_TC_INSET);
|
|
|
|
else
|
2001-02-26 12:53:35 +00:00
|
|
|
data.insert(yylval.i, varcode); //LM_TC_VAR);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_ARGUMENT:
|
2001-04-24 16:13:38 +00:00
|
|
|
{
|
|
|
|
data.insertInset(new MathMacroArgument(yylval.i), LM_TC_INSET);
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
2001-04-24 16:13:38 +00:00
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
case LM_TK_NEWCOMMAND:
|
|
|
|
{
|
|
|
|
int na = 0;
|
|
|
|
|
|
|
|
LexGetArg('{');
|
2001-04-24 16:13:38 +00:00
|
|
|
string name = &yytext[1];
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
char const c = yyis->peek();
|
|
|
|
if (c == '[') {
|
|
|
|
LexGetArg('[');
|
|
|
|
na = lyx::atoi(yytext.data());
|
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "LM_TK_NEWCOMMAND: name: " << name << " " << na << endl;
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning dirty
|
|
|
|
#endif
|
|
|
|
par->SetName(name);
|
|
|
|
par->xo(na); // abuse xo
|
2001-02-26 12:53:35 +00:00
|
|
|
flags = FLAG_BRACE|FLAG_BRACE_LAST;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_SPECIAL:
|
|
|
|
data.insert(yylval.i, LM_TC_SPECIAL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_STR:
|
|
|
|
if (accent) {
|
|
|
|
data.insertInset(doAccent(yylval.i, LM_TC_CONST), LM_TC_INSET);
|
|
|
|
} else
|
|
|
|
data.insert(yylval.i, LM_TC_CONST);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_OPEN:
|
|
|
|
++brace;
|
|
|
|
if (accent && tprev == LM_TK_ACCENT) {
|
|
|
|
acc_braces[acc_brace++] = brace;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (flags & FLAG_BRACE_OPT) {
|
|
|
|
flags &= ~FLAG_BRACE_OPT;
|
|
|
|
flags |= FLAG_BRACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & FLAG_BRACE)
|
|
|
|
flags &= ~FLAG_BRACE;
|
|
|
|
else {
|
|
|
|
data.insert('{', LM_TC_TEX);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_CLOSE:
|
|
|
|
--brace;
|
|
|
|
if (brace < 0) {
|
|
|
|
mathPrintError("Unmatching braces");
|
|
|
|
panic = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (acc_brace && brace == acc_braces[acc_brace - 1] - 1) {
|
|
|
|
--acc_brace;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (flags & FLAG_BRACE_FONT) {
|
|
|
|
varcode = LM_TC_VAR;
|
|
|
|
yy_mtextmode = false;
|
|
|
|
flags &= ~FLAG_BRACE_FONT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (brace == 0 && (flags & FLAG_BRACE_LAST)) {
|
|
|
|
--plevel;
|
2001-04-24 16:13:38 +00:00
|
|
|
goto clean_up;
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
data.insert('}', LM_TC_TEX);
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '[':
|
|
|
|
if (flags & FLAG_BRACK_ARG) {
|
|
|
|
flags &= ~FLAG_BRACK_ARG;
|
|
|
|
char const rg = LexGetArg('[');
|
|
|
|
if (rg != ']') {
|
|
|
|
mathPrintError("Expected ']'");
|
|
|
|
panic = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// if (arg) strcpy(arg, yytext);
|
|
|
|
} else
|
|
|
|
data.insert('[', LM_TC_CONST);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ']':
|
|
|
|
if (flags & FLAG_BRACK_END) {
|
|
|
|
--plevel;
|
2001-04-24 16:13:38 +00:00
|
|
|
goto clean_up;
|
|
|
|
}
|
|
|
|
data.insert(']', LM_TC_CONST);
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '^':
|
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
MathParInset * p = new MathParInset(size, "", LM_OT_SCRIPT);
|
2001-02-26 12:53:35 +00:00
|
|
|
MathedArray ar;
|
2001-04-24 16:13:38 +00:00
|
|
|
mathed_parse(ar, par, FLAG_BRACE_OPT|FLAG_BRACE_LAST);
|
2001-02-26 12:53:35 +00:00
|
|
|
p->setData(ar);
|
|
|
|
// lyxerr << "UP[" << p->GetStyle() << "]" << endl;
|
|
|
|
data.insertInset(p, LM_TC_UP);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case '_':
|
|
|
|
{
|
|
|
|
MathParInset * p = new MathParInset(size, "",
|
|
|
|
LM_OT_SCRIPT);
|
|
|
|
MathedArray ar;
|
2001-04-24 16:13:38 +00:00
|
|
|
mathed_parse(ar, par, FLAG_BRACE_OPT|FLAG_BRACE_LAST);
|
2001-02-26 12:53:35 +00:00
|
|
|
p->setData(ar);
|
|
|
|
data.insertInset(p, LM_TC_DOWN);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_LIMIT:
|
|
|
|
if (binset) {
|
|
|
|
binset->SetLimits(bool(yylval.l->id));
|
|
|
|
binset = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '&': // Tab
|
2001-04-24 16:13:38 +00:00
|
|
|
data.insert('T', LM_TC_TAB);
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning look here
|
|
|
|
#endif
|
|
|
|
data.setNumCols(par->GetColumns());
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_NEWLINE:
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "reading line " << par->getRowSt().size() << "\n";
|
|
|
|
if (flags & FLAG_END) {
|
|
|
|
if (par->Permit(LMPF_ALLOW_CR)) {
|
|
|
|
par->getRowSt().push_back();
|
|
|
|
if (last_numbered) {
|
|
|
|
//lyxerr << "line " << par->getRowSt().size() << " not numbered\n";
|
|
|
|
par->getRowSt().back().setNumbered(false);
|
|
|
|
last_numbered = true;
|
|
|
|
}
|
|
|
|
if (last_label.size()) {
|
|
|
|
//lyxerr << "line " << par->getRowSt().size() << " labeled: "
|
|
|
|
// << last_label << endl;
|
|
|
|
par->getRowSt().back().setLabel(last_label);
|
|
|
|
last_label.erase();
|
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
data.insert('K', LM_TC_CR);
|
|
|
|
} else
|
|
|
|
mathPrintError("Unexpected newline");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_BIGSYM:
|
|
|
|
{
|
|
|
|
binset = new MathBigopInset(yylval.l->name, yylval.l->id);
|
|
|
|
data.insertInset(binset, LM_TC_INSET);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_SYM:
|
|
|
|
if (yylval.l->id < 256) {
|
|
|
|
MathedTextCodes tc = MathIsBOPS(yylval.l->id) ? LM_TC_BOPS: LM_TC_SYMB;
|
|
|
|
if (accent) {
|
|
|
|
data.insertInset(doAccent(yylval.l->id, tc), LM_TC_INSET);
|
|
|
|
} else
|
|
|
|
data.insert(yylval.l->id, tc);
|
|
|
|
} else {
|
|
|
|
MathFuncInset * bg = new MathFuncInset(yylval.l->name);
|
|
|
|
if (accent) {
|
|
|
|
data.insertInset(doAccent(bg), LM_TC_INSET);
|
|
|
|
} else {
|
2001-04-17 00:19:49 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
2001-02-17 18:52:53 +00:00
|
|
|
#warning This is suspisious! (Lgb)
|
2001-04-17 00:19:49 +00:00
|
|
|
#endif
|
2001-02-26 12:53:35 +00:00
|
|
|
// it should not take a bool as second arg (Lgb)
|
|
|
|
data.insertInset(bg, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_BOP:
|
2001-04-24 16:13:38 +00:00
|
|
|
if (accent)
|
2001-02-26 12:53:35 +00:00
|
|
|
data.insertInset(doAccent(yylval.i, LM_TC_BOP), LM_TC_INSET);
|
2001-04-24 16:13:38 +00:00
|
|
|
else
|
2001-02-26 12:53:35 +00:00
|
|
|
data.insert(yylval.i, LM_TC_BOP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_STY:
|
2001-04-24 16:13:38 +00:00
|
|
|
par->UserSetSize(yylval.l->id);
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_SPACE:
|
|
|
|
if (yylval.i >= 0) {
|
|
|
|
MathSpaceInset * sp = new MathSpaceInset(yylval.i);
|
|
|
|
data.insertInset(sp, LM_TC_INSET);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_DOTS:
|
|
|
|
{
|
|
|
|
MathDotsInset * p = new MathDotsInset(yylval.l->name, yylval.l->id);
|
|
|
|
data.insertInset(p, LM_TC_INSET);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
case LM_TK_CHOOSE:
|
2001-04-27 12:35:55 +00:00
|
|
|
handle_frac(data, par, LM_OT_ATOP);
|
|
|
|
break;
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
case LM_TK_STACK:
|
2001-04-27 12:35:55 +00:00
|
|
|
handle_frac(data, par, LM_OT_STACKREL);
|
|
|
|
break;
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
case LM_TK_FRAC:
|
2001-04-27 12:35:55 +00:00
|
|
|
handle_frac(data, par, LM_OT_FRAC);
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
2001-04-27 12:35:55 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
case LM_TK_SQRT:
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
yyis->get(c);
|
|
|
|
|
|
|
|
if (c == '[') {
|
2001-04-24 16:13:38 +00:00
|
|
|
MathRootInset rt(size);
|
|
|
|
|
|
|
|
MathedArray ar1;
|
|
|
|
mathed_parse(ar1, par, FLAG_BRACK_END);
|
|
|
|
rt.setArgumentIdx(0);
|
|
|
|
rt.setData(ar1); // I belive that line is not needed (Lgb)
|
|
|
|
|
|
|
|
MathedArray ar2;
|
|
|
|
mathed_parse(ar2, par, FLAG_BRACE|FLAG_BRACE_LAST);
|
|
|
|
|
|
|
|
rt.setArgumentIdx(1);
|
|
|
|
rt.setData(ar2); // I belive that this line is not needed (Lgb)
|
|
|
|
|
|
|
|
data.insertInset(rt.Clone(), LM_TC_ACTIVE_INSET);
|
2001-02-26 12:53:35 +00:00
|
|
|
} else {
|
|
|
|
yyis->putback(c);
|
2001-04-24 16:13:38 +00:00
|
|
|
MathSqrtInset rt(size);
|
|
|
|
MathedArray ar;
|
|
|
|
mathed_parse(ar, par, FLAG_BRACE|FLAG_BRACE_LAST);
|
|
|
|
rt.setData(ar); // I belive that this line is not needed (Lgb)
|
|
|
|
data.insertInset(rt.Clone(), LM_TC_ACTIVE_INSET);
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_LEFT:
|
|
|
|
{
|
|
|
|
int lfd = yylex();
|
|
|
|
if (lfd == LM_TK_SYM || lfd == LM_TK_STR || lfd == LM_TK_BOP|| lfd == LM_TK_SPECIAL)
|
|
|
|
lfd = (lfd == LM_TK_SYM) ? yylval.l->id: yylval.i;
|
1999-10-07 18:44:17 +00:00
|
|
|
// lyxerr << "L[" << lfd << " " << lfd << "]";
|
2001-02-26 12:53:35 +00:00
|
|
|
MathedArray ar;
|
2001-04-24 16:13:38 +00:00
|
|
|
mathed_parse(ar, par, FLAG_RIGHT);
|
2001-02-26 12:53:35 +00:00
|
|
|
int rgd = yylex();
|
1999-10-07 18:44:17 +00:00
|
|
|
// lyxerr << "R[" << rgd << "]";
|
2001-02-26 12:53:35 +00:00
|
|
|
if (rgd == LM_TK_SYM || rgd == LM_TK_STR || rgd == LM_TK_BOP || rgd == LM_TK_SPECIAL)
|
|
|
|
rgd = (rgd == LM_TK_SYM) ? yylval.l->id: yylval.i;
|
|
|
|
MathDelimInset * dl = new MathDelimInset(lfd, rgd);
|
|
|
|
dl->setData(ar);
|
|
|
|
data.insertInset(dl, LM_TC_ACTIVE_INSET);
|
1999-10-07 18:44:17 +00:00
|
|
|
// lyxerr << "RL[" << lfd << " " << rgd << "]";
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_RIGHT:
|
|
|
|
if (flags & FLAG_RIGHT) {
|
|
|
|
--plevel;
|
2001-04-24 16:13:38 +00:00
|
|
|
goto clean_up;
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
mathPrintError("Unmatched right delimiter");
|
|
|
|
// panic = true;
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_FONT:
|
|
|
|
varcode = static_cast<MathedTextCodes>(yylval.l->id);
|
|
|
|
yy_mtextmode = bool(varcode == LM_TC_TEXTRM);
|
|
|
|
flags |= (FLAG_BRACE|FLAG_BRACE_FONT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_WIDE:
|
|
|
|
{
|
|
|
|
MathDecorationInset * sq = new MathDecorationInset(yylval.l->id,
|
|
|
|
size);
|
|
|
|
MathedArray ar;
|
2001-04-24 16:13:38 +00:00
|
|
|
mathed_parse(ar, par, FLAG_BRACE|FLAG_BRACE_LAST);
|
2001-02-26 12:53:35 +00:00
|
|
|
sq->setData(ar);
|
|
|
|
data.insertInset(sq, LM_TC_ACTIVE_INSET);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_ACCENT:
|
|
|
|
setAccent(yylval.l->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_NONUM:
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "prepare line " << par->getRowSt().size()
|
|
|
|
// << " not numbered\n";
|
|
|
|
last_numbered = false;
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_PMOD:
|
|
|
|
case LM_TK_FUNC:
|
|
|
|
if (accent) {
|
|
|
|
data.insert(t, LM_TC_CONST);
|
2001-03-05 10:18:36 +00:00
|
|
|
} else {
|
|
|
|
MathedInset * bg = new MathFuncInset(yylval.l->name);
|
2001-02-26 12:53:35 +00:00
|
|
|
data.insertInset(bg, LM_TC_INSET);
|
2001-03-05 10:18:36 +00:00
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_FUNCLIM:
|
|
|
|
data.insertInset(new MathFuncInset(yylval.l->name, LM_OT_FUNCLIM),
|
|
|
|
LM_TC_INSET);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_UNDEF:
|
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
// save this value, yylval.s might get overwritten soon
|
|
|
|
const string name = yylval.s;
|
|
|
|
//lyxerr << "LM_TK_UNDEF: str = " << name << endl;
|
|
|
|
if (MathMacroTable::hasTemplate(name)) {
|
|
|
|
MathMacro * m = MathMacroTable::cloneTemplate(name);
|
|
|
|
//lyxerr << "Macro: " << m->GetData() << endl;
|
|
|
|
for (int i = 0; i < m->nargs(); ++i) {
|
2001-02-26 12:53:35 +00:00
|
|
|
MathedArray ar;
|
2001-04-24 16:13:38 +00:00
|
|
|
mathed_parse(ar, par, FLAG_BRACE|FLAG_BRACE_LAST);
|
|
|
|
m->setData(ar, i);
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
do_insert(data, m, m->getTCode());
|
2001-02-26 12:53:35 +00:00
|
|
|
} else {
|
2001-04-24 16:13:38 +00:00
|
|
|
MathedInset * q = new MathFuncInset(name, LM_OT_UNDEF);
|
|
|
|
do_insert(data, q, LM_TC_INSET);
|
2001-02-20 17:45:56 +00:00
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_END:
|
|
|
|
if (mathed_env != yylval.i && yylval.i != LM_OT_MATRIX)
|
|
|
|
mathPrintError("Unmatched environment");
|
|
|
|
// debug info [made that conditional -JMarc]
|
|
|
|
if (lyxerr.debugging(Debug::MATHED))
|
|
|
|
lyxerr << "[" << yylval.i << "]" << endl;
|
|
|
|
--plevel;
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
|
|
//if (mt) { // && (flags & FLAG_END)) {
|
|
|
|
// par.setData(array);
|
|
|
|
// array.clear();
|
|
|
|
//}
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning Look here
|
|
|
|
#endif
|
|
|
|
goto clean_up;
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
case LM_TK_BEGIN:
|
|
|
|
if (yylval.i == LM_OT_MATRIX) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "###### Reading LM_OT_MATRIX \n";
|
2001-05-31 02:23:46 +00:00
|
|
|
#if 0
|
2001-02-26 12:53:35 +00:00
|
|
|
char ar[120];
|
|
|
|
char ar2[8];
|
2001-05-31 02:23:46 +00:00
|
|
|
ar[0] = ar2[0] = '\0';
|
|
|
|
#endif
|
2001-02-26 12:53:35 +00:00
|
|
|
char rg = LexGetArg(0);
|
2001-05-31 02:23:46 +00:00
|
|
|
#if 1
|
|
|
|
string ar2;
|
|
|
|
#endif
|
2001-02-26 12:53:35 +00:00
|
|
|
if (rg == ']') {
|
2001-05-31 02:23:46 +00:00
|
|
|
#if 0
|
2001-02-26 12:53:35 +00:00
|
|
|
strcpy(ar2, yytext.data());
|
2001-05-31 02:23:46 +00:00
|
|
|
#else
|
|
|
|
ar2 = yytext.data();
|
|
|
|
#endif
|
2001-02-26 12:53:35 +00:00
|
|
|
rg = LexGetArg('{');
|
|
|
|
}
|
2001-05-31 02:23:46 +00:00
|
|
|
#if 0
|
2001-02-26 12:53:35 +00:00
|
|
|
strcpy(ar, yytext.data());
|
2001-05-31 02:23:46 +00:00
|
|
|
int const nc = parse_align(ar);
|
|
|
|
#else
|
|
|
|
string ar(yytext.data());
|
|
|
|
int const nc = parse_align(ar);
|
|
|
|
#endif
|
2001-04-24 16:13:38 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
MathParInset * mm = new MathMatrixInset(nc, 0);
|
|
|
|
mm->SetAlign(ar2[0], ar);
|
2001-02-28 17:21:16 +00:00
|
|
|
MathedArray dat;
|
2001-04-24 16:13:38 +00:00
|
|
|
mathed_parse(dat, mm, FLAG_END);
|
|
|
|
data.insertInset(mm, LM_TC_ACTIVE_INSET);
|
|
|
|
mm->setData(dat);
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
} else if (is_eqn_type(yylval.i)) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "###### Reading is_eqn_type \n";
|
2001-02-26 12:53:35 +00:00
|
|
|
if (plevel!= 0) {
|
|
|
|
mathPrintError("Misplaced environment");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
mathed_env = static_cast<MathedInsetTypes>(yylval.i);
|
|
|
|
if (mathed_env != LM_OT_MIN) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "###### Reading mathed_env != LM_OT_MIN \n";
|
2001-02-26 12:53:35 +00:00
|
|
|
size = LM_ST_DISPLAY;
|
|
|
|
if (is_multiline(mathed_env)) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "###### Reading is_multiline(mathed_env) \n";
|
2001-02-26 12:53:35 +00:00
|
|
|
int cols = 1;
|
|
|
|
if (is_multicolumn(mathed_env)) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "###### Reading is_multicolumn(mathed_env) \n";
|
2001-02-26 12:53:35 +00:00
|
|
|
if (mathed_env != LM_OT_ALIGNAT &&
|
|
|
|
mathed_env != LM_OT_ALIGNATN &&
|
|
|
|
yyis->good()) {
|
2001-04-24 16:13:38 +00:00
|
|
|
//lyxerr << "###### Reading is !align\n";
|
2001-02-26 12:53:35 +00:00
|
|
|
char c;
|
|
|
|
yyis->get(c);
|
|
|
|
if (c != '%')
|
|
|
|
lyxerr << "Math parse error: unexpected '"
|
|
|
|
<< c << "'" << endl;
|
|
|
|
}
|
|
|
|
LexGetArg('{');
|
|
|
|
cols = strToInt(string(yytext.data()));
|
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning look here
|
|
|
|
#endif
|
|
|
|
//mt = create_multiline(mathed_env, cols);
|
|
|
|
//if (mtx) *mtx = mt;
|
|
|
|
|
|
|
|
//MathMatrixInset mat = create_multiline(mathed_env, cols);
|
|
|
|
//data.insertInset(mat.Clone(), LM_TC_ACTIVE_INSET);
|
|
|
|
|
|
|
|
par = new MathMatrixInset(create_multiline(mathed_env, cols));
|
2001-02-26 12:53:35 +00:00
|
|
|
flags |= FLAG_END;
|
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
par->SetStyle(size);
|
|
|
|
par->SetType(mathed_env);
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
|
|
|
|
2001-03-01 15:03:52 +00:00
|
|
|
lyxerr[Debug::MATHED] << "MATH BEGIN[" << mathed_env << "]" << endl;
|
2001-02-26 12:53:35 +00:00
|
|
|
} else {
|
2001-04-24 16:13:38 +00:00
|
|
|
MathMacro * m = MathMacroTable::cloneTemplate(yytext.data());
|
|
|
|
data.insertInset(m, m->getTCode());
|
|
|
|
MathedArray dat;
|
|
|
|
mathed_parse(dat, par, FLAG_END);
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_MACRO:
|
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
MathMacro * m = MathMacroTable::cloneTemplate(yylval.l->name);
|
|
|
|
do_insert(data, m, m->getTCode());
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LM_TK_LABEL:
|
|
|
|
{
|
|
|
|
char const rg = LexGetArg('\0', true);
|
|
|
|
if (rg != '}') {
|
|
|
|
mathPrintError("Expected '{'");
|
|
|
|
// debug info
|
|
|
|
lyxerr << "[" << yytext.data() << "]" << endl;
|
|
|
|
panic = true;
|
|
|
|
break;
|
|
|
|
}
|
2001-04-24 16:13:38 +00:00
|
|
|
last_label = yytext.data();
|
|
|
|
//lyxerr << "prepare line " << par->getRowSt().size()
|
|
|
|
// << " label: " << last_label << endl;
|
2001-02-26 12:53:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
mathPrintError("Unrecognized token");
|
|
|
|
// debug info
|
|
|
|
lyxerr << "[" << t << " " << yytext.data() << "]" << endl;
|
|
|
|
break;
|
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
tprev = t;
|
|
|
|
if (panic) {
|
|
|
|
lyxerr << " Math Panic, expect problems!" << endl;
|
|
|
|
// Search for the end command.
|
|
|
|
do {
|
|
|
|
t = yylex ();
|
|
|
|
} while (t != LM_TK_END && t);
|
|
|
|
} else
|
|
|
|
t = yylex ();
|
|
|
|
|
|
|
|
if ((flags & FLAG_BRACE_OPT)/* && t!= '^' && t!= '_'*/) {
|
|
|
|
flags &= ~FLAG_BRACE_OPT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--plevel;
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
|
|
clean_up:
|
|
|
|
|
|
|
|
if (last_numbered == false) {
|
|
|
|
//lyxerr << "last line " << par->getRowSt().size() << " not numbered\n";
|
|
|
|
if (par->getRowSt().size() == 0)
|
|
|
|
par->getRowSt().push_back();
|
|
|
|
par->getRowSt().back().setNumbered(false);
|
|
|
|
}
|
|
|
|
if (last_label.size()) {
|
|
|
|
//lyxerr << "last line " << par->getRowSt().size() << " labeled: "
|
|
|
|
// << last_label << endl;
|
|
|
|
if (par->getRowSt().size() == 0)
|
|
|
|
par->getRowSt().push_back();
|
|
|
|
par->getRowSt().back().setLabel(last_label);
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
void mathed_parser_file(istream & is, int lineno)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-26 12:53:35 +00:00
|
|
|
yyis = &is;
|
|
|
|
yylineno = lineno;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int mathed_parser_lineno()
|
|
|
|
{
|
2001-02-26 12:53:35 +00:00
|
|
|
return yylineno;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|