]> git.lyx.org Git - lyx.git/blob - src/tex-strings.h
rename MathArray into MathData
[lyx.git] / src / tex-strings.h
1 // -*- C++ -*-
2 /**
3  * \file tex-strings.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef TEX_STRINGS
14 #define TEX_STRINGS
15
16 namespace lyx {
17
18 ///
19 extern char const * const string_paragraph_separation[];
20 ///
21 extern char const * const string_quotes_language[];
22 ///
23 extern char const * const string_papersize[];
24 ///
25 extern char const * const string_orientation[];
26 ///
27 extern char const * const string_footnotekinds[];
28 ///
29 extern char const * const string_align[];
30
31 // The following was moved from tex-defs.h to here, because tex-defs.h is
32 // used all over. As it happens, that meant that these strings were included
33 // 27 times in the object file. (Asger)
34
35 ///
36 extern char const * const tex_graphics[];
37
38 ///
39 extern char const * const tex_fonts_roman[];
40 ///
41 extern char const * tex_fonts_roman_gui[];
42 ///
43 extern char const * const tex_fonts_sans[];
44 ///
45 extern char const * tex_fonts_sans_gui[];
46 ///
47 extern char const * const tex_fonts_monospaced[];
48 ///
49 extern char const * tex_fonts_monospaced_gui[];
50
51
52 } // namespace lyx
53
54 #endif