]> git.lyx.org Git - lyx.git/blob - src/mathed/math_factory.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_factory.C
1 #include <config.h>
2
3 #include "math_parser.h"
4 #include "math_binominset.h"
5 #include "math_boxinset.h"
6 #include "math_decorationinset.h"
7 #include "math_dotsinset.h"
8 #include "math_funcinset.h"
9 #include "math_funcliminset.h"
10 #include "math_fracinset.h"
11 #include "math_kerninset.h"
12 #include "math_lefteqninset.h"
13 #include "math_macro.h"
14 #include "math_macrotable.h"
15 #include "math_macroarg.h"
16 #include "math_notinset.h"
17 #include "math_rootinset.h"
18 #include "math_sizeinset.h"
19 #include "math_spaceinset.h"
20 #include "math_specialcharinset.h"
21 #include "math_sqrtinset.h"
22 #include "math_stackrelinset.h"
23 #include "math_symbolinset.h"
24 #include "math_unknowninset.h"
25
26
27 MathAtom createMathInset(latexkeys const * l)
28 {
29         switch (l->token) {
30         case LM_TK_FUNCLIM:
31                 return MathAtom(new MathFuncLimInset(l->name));
32         case LM_TK_SPECIAL:
33                 return MathAtom(new MathSpecialCharInset(static_cast<char>(l->id)));
34         case LM_TK_SYM:
35         case LM_TK_CMR:
36         case LM_TK_CMSY:
37         case LM_TK_CMM:
38         case LM_TK_CMEX:
39         case LM_TK_MSA:
40         case LM_TK_MSB:
41                 return MathAtom(new MathSymbolInset(l));
42         case LM_TK_STACK:
43                 return MathAtom(new MathStackrelInset);
44         case LM_TK_KERN: 
45                 return MathAtom(new MathKernInset);
46         case LM_TK_BINOM:
47         case LM_TK_CHOOSE:
48                 return MathAtom(new MathBinomInset);
49         case LM_TK_OVER:
50         case LM_TK_FRAC:
51                 return MathAtom(new MathFracInset);
52         case LM_TK_ATOP:
53                 return MathAtom(new MathFracInset(true));
54         case LM_TK_NOT:
55                 return MathAtom(new MathNotInset);
56         case LM_TK_LEFTEQN:
57                 return MathAtom(new MathLefteqnInset);
58         case LM_TK_SQRT:
59                 return MathAtom(new MathSqrtInset);
60         case LM_TK_ROOT:
61                 return MathAtom(new MathRootInset);
62         case LM_TK_DECORATION:
63                 return MathAtom(new MathDecorationInset(l->name));
64         case LM_TK_SPACE:
65                 return MathAtom(new MathSpaceInset(l->id));
66         case LM_TK_DOTS:
67                 return MathAtom(new MathDotsInset(l->name));
68         case LM_TK_BOX:
69                 return MathAtom(new MathBoxInset(l->name));
70         case LM_TK_FUNC:
71                 return MathAtom(new MathFuncInset(l->name));
72         case LM_TK_STY:
73                 return MathAtom(new MathSizeInset(l));
74         }
75         return MathAtom(new MathUnknownInset(l->name));
76 }
77
78
79 MathAtom createMathInset(string const & s)
80 {
81         //cerr << "creating inset with name: '" << s << "'\n";
82         if (s.size() == 2 && s[0] == '#' && s[1] >= '1' && s[1] <= '9')
83                 return MathAtom(new MathMacroArgument(s[1] - '0'));
84
85         if (s.size() == 3 && s[0] == '\\' && s[1] == '#'
86                         && s[2] >= '1' && s[2] <= '9')
87                 return MathAtom(new MathMacroArgument(s[2] - '0'));
88
89         latexkeys const * l = in_word_set(s);
90         if (l)
91                 return createMathInset(l);
92
93         if (MathMacroTable::has(s)) 
94                 return MathAtom(new MathMacro(s));
95
96         //cerr << "creating inset 2 with name: '" << s << "'\n";
97         return MathAtom(new MathUnknownInset(s));
98 }