]> git.lyx.org Git - lyx.git/blob - src/mathed/symbol_def.h
remove unneded symbol definitions
[lyx.git] / src / mathed / symbol_def.h
1 // This -*- C++ -*- file was created automatically.
2 // Don't change it!  [asierra18jan96]
3 // Why? [andre]
4
5 #ifndef SYMBOL_DEF
6 #define SYMBOL_DEF 
7
8 enum Math_Symbols_enum {
9 // Accents
10         LM_acute          = '\'',
11         LM_grave          = '`',
12         LM_hat            = '^',
13         LM_tilde          = '~',
14         LM_dot            = '.',
15         LM_bar            = '-',
16
17 /// Symbols that don't exist in X11 symbol font but that we fake
18         LM_not            = 10,
19
20 // Symbols that do exist in X11 symbol font
21         LM_uparrow        = 0xad,
22         LM_downarrow      = 0xaf,
23         LM_Leftrightarrow = 0xdb,
24         LM_Leftarrow      = 0xdc,
25         LM_Uparrow        = 0xdd,
26         LM_Rightarrow     = 0xde,
27         LM_Downarrow      = 0xdf,
28         LM_langle         = 0xe1,
29         LM_lceil          = 0xe9,
30         LM_lfloor         = 0xeb,
31         LM_rangle         = 0xf1,
32         LM_int            = 0xf2,
33         LM_rceil          = 0xf9,
34         LM_rfloor         = 0xfb,
35                 
36 /// Symbols that don't exist in X11 symbol font
37         LM_NoFont          = 256,
38
39 /// needed as decoration
40         LM_Vert,
41         LM_updownarrow,
42         LM_Updownarrow,
43
44 /// decorations
45         LM_widehat,
46         LM_widetilde,
47         LM_underline,
48         LM_overline,
49         LM_underbrace, 
50         LM_overbrace,
51         LM_overleftarrow,
52         LM_overightarrow, 
53
54 /// dots
55         LM_ldots,
56         LM_cdots,
57         LM_vdots,
58         LM_ddots,            
59         LM_emptyset,
60
61 /// Accents that don't exist in X11 symbol font
62         LM_ddot,
63         LM_check,
64         LM_vec,
65         LM_breve
66 };
67
68 #endif