]> git.lyx.org Git - lyx.git/blob - src/mathed/math_factory.C
small internal stuff
[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_undersetinset.h"
25 #include "math_unknowninset.h"
26 #include "math_xarrowinset.h"
27 #include "math_xymatrixinset.h"
28
29
30 MathAtom createMathInset(latexkeys const * l)
31 {
32         switch (l->token) {
33         case LM_TK_FUNCLIM:
34                 return MathAtom(new MathFuncLimInset(l->name));
35         case LM_TK_SPECIAL:
36                 return MathAtom(new MathSpecialCharInset(static_cast<char>(l->id)));
37         case LM_TK_SYM:
38         case LM_TK_CMR:
39         case LM_TK_CMSY:
40         case LM_TK_CMM:
41         case LM_TK_CMEX:
42         case LM_TK_MSA:
43         case LM_TK_MSB:
44                 return MathAtom(new MathSymbolInset(l));
45         case LM_TK_STACK:
46                 return MathAtom(new MathStackrelInset);
47         case LM_TK_UNDERSET:
48                 return MathAtom(new MathUndersetInset);
49         case LM_TK_KERN: 
50                 return MathAtom(new MathKernInset);
51         case LM_TK_BINOM:
52         case LM_TK_CHOOSE:
53                 return MathAtom(new MathBinomInset);
54         case LM_TK_OVER:
55         case LM_TK_FRAC:
56                 return MathAtom(new MathFracInset);
57         case LM_TK_ATOP:
58                 return MathAtom(new MathFracInset(true));
59         case LM_TK_NOT:
60                 return MathAtom(new MathNotInset);
61         case LM_TK_LEFTEQN:
62                 return MathAtom(new MathLefteqnInset);
63         case LM_TK_SQRT:
64                 return MathAtom(new MathSqrtInset);
65         case LM_TK_ROOT:
66                 return MathAtom(new MathRootInset);
67         case LM_TK_DECORATION:
68                 return MathAtom(new MathDecorationInset(l->name));
69         case LM_TK_SPACE:
70                 return MathAtom(new MathSpaceInset(l->id));
71         case LM_TK_DOTS:
72                 return MathAtom(new MathDotsInset(l->name));
73         case LM_TK_BOX:
74                 return MathAtom(new MathBoxInset(l->name));
75         case LM_TK_FUNC:
76                 return MathAtom(new MathFuncInset(l->name));
77         case LM_TK_STY:
78                 return MathAtom(new MathSizeInset(l));
79         default:
80                 return MathAtom(new MathUnknownInset(l->name));
81         }
82 }
83
84
85 MathAtom createMathInset(string const & s)
86 {
87         //cerr << "creating inset with name: '" << s << "'\n";
88         if (s.size() == 2 && s[0] == '#' && s[1] >= '1' && s[1] <= '9')
89                 return MathAtom(new MathMacroArgument(s[1] - '0'));
90
91         if (s.size() == 3 && s[0] == '\\' && s[1] == '#'
92                         && s[2] >= '1' && s[2] <= '9')
93                 return MathAtom(new MathMacroArgument(s[2] - '0'));
94
95         if (s == "xymatrix")
96                 return MathAtom(new MathXYMatrixInset);
97
98         if (s == "xrightarrow")
99                 return MathAtom(new MathXArrowInset(s));
100
101         latexkeys const * l = in_word_set(s);
102         if (l)
103                 return createMathInset(l);
104
105         if (MathMacroTable::has(s)) 
106                 return MathAtom(new MathMacro(s));
107
108         //cerr << "creating inset 2 with name: '" << s << "'\n";
109         return MathAtom(new MathUnknownInset(s));
110 }