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