]> git.lyx.org Git - lyx.git/blob - src/mathed/math_factory.C
some support for \atop
[lyx.git] / src / mathed / math_factory.C
1 #include <config.h>
2
3 #include "math_parser.h"
4 #include "math_bigopinset.h"
5 #include "math_binominset.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_macro.h"
12 #include "math_macrotable.h"
13 #include "math_noglyphinset.h"
14 #include "math_notinset.h"
15 #include "math_rootinset.h"
16 #include "math_spaceinset.h"
17 #include "math_sqrtinset.h"
18 #include "math_symbolinset.h"
19 #include "math_stackrelinset.h"
20
21
22 MathInset * createMathInset(latexkeys const * l)
23 {
24         switch (l->token) {
25                 case LM_TK_NOGLYPH:
26                 case LM_TK_NOGLYPHB:
27                         return new MathNoglyphInset(l);
28                 case LM_TK_BIGSYM:
29                         return new MathBigopInset(l);
30                 case LM_TK_FUNCLIM:
31                         return new MathFuncLimInset(l);
32                 case LM_TK_SYM: 
33                         return new MathSymbolInset(l);
34                 case LM_TK_STACK:
35                         return new MathStackrelInset;
36                 case LM_TK_BINOM:
37                 case LM_TK_CHOOSE:
38                         return new MathBinomInset;
39                 case LM_TK_OVER:
40                 case LM_TK_FRAC:
41                         return new MathFracInset;
42                 case LM_TK_ATOP:
43                         return new MathFracInset(true);
44                 case LM_TK_NOT:
45                         return new MathNotInset;
46                 case LM_TK_SQRT:
47                         return new MathSqrtInset;
48                 case LM_TK_ROOT:
49                         return new MathRootInset;
50                 case LM_TK_DECORATION:
51                         return new MathDecorationInset(l);
52                 case LM_TK_SPACE:
53                         return new MathSpaceInset(l->id);
54                 case LM_TK_DOTS:
55                         return new MathDotsInset(l);
56         }
57         return new MathFuncInset(l->name);
58 }
59
60
61 MathInset * createMathInset(string const & s)
62 {
63         latexkeys const * l = in_word_set(s);
64         if (l) 
65                 return createMathInset(l);
66
67         if (MathMacroTable::hasTemplate(s)) 
68                 return new MathMacro(MathMacroTable::provideTemplate(s));
69
70         return new MathFuncInset(s);
71 }