]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/MathsSymbols.h
This patch was so good to do I just had to commit it.
[lyx.git] / src / frontends / xforms / MathsSymbols.h
1 // -*- C++ -*-
2 /**
3  * \file MathsSymbols.h
4  * Copyright 2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author John Levon, moz@compsoc.man.ac.uk
9  */
10
11 #ifndef MATHS_SYMBOLS_H
12 #define MATHS_SYMBOLS_H
13
14 /// values used by the xforms callbacks
15 enum MathsCallbackValues {
16         MM_GREEK,
17         MM_ARROW,
18         MM_BOP,
19         MM_BRELATS,
20         MM_VARSIZE,
21         MM_MISC,
22         MM_FRAC,
23         MM_SQRT,
24         MM_DELIM,
25         MM_SUPER,
26         MM_SUB,
27         MM_SUBSUPER,
28         MM_MATRIX,
29         MM_EQU,
30         MM_DECO,
31         MM_SPACE,
32         MM_STYLE,
33         MM_DOTS,
34         MM_AMS_MISC,
35         MM_AMS_ARROWS,
36         MM_AMS_BREL,
37         MM_AMS_NREL,
38         MM_AMS_OPS,
39         MM_FUNC
40 };
41
42 extern char const * function_names[];
43 extern int const nr_function_names;
44 extern char const * latex_arrow[];
45 extern int const nr_latex_arrow;
46 extern char const * latex_bop[];
47 extern int const nr_latex_bop;
48 extern char const * latex_brel[];
49 extern int const nr_latex_brel;
50 extern char const * latex_dots[];
51 extern int const nr_latex_dots;
52 extern char const * latex_greek[];
53 extern int const nr_latex_greek;
54 extern char const * latex_misc[];
55 extern int const nr_latex_misc;
56 extern char const * latex_varsz[];
57 extern int const nr_latex_varsz;
58 extern char const * latex_ams_misc[];
59 extern int const nr_latex_ams_misc;
60 extern char const * latex_ams_arrows[];
61 extern int const nr_latex_ams_arrows;
62 extern char const * latex_ams_rel[];
63 extern int const nr_latex_ams_rel;
64 extern char const * latex_ams_nrel[];
65 extern int const nr_latex_ams_nrel;
66 extern char const * latex_ams_ops[];
67 extern int const nr_latex_ams_ops;
68
69 #endif /* MATHS_SYMBOLS_H */