]> git.lyx.org Git - lyx.git/blob - src/tex-strings.C
Fix bug 2195: Slowness in rendering inside insets, especially on the Mac
[lyx.git] / src / tex-strings.C
1 /**
2  * \file tex-strings.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "tex-strings.h"
15
16
17 // this file should perhaps be split into even smaller parts
18
19 char const * const string_paragraph_separation[] = {
20         "indent", "skip", ""
21 };
22
23
24 char const * const string_quotes_language[] = {
25         "english", "swedish", "german", "polish", "french", "danish", ""
26 };
27
28
29 char const * const string_papersize[] = {
30         "default", "custom", "letterpaper", "executivepaper", "legalpaper",
31         "a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
32 };
33
34
35 char const * const string_orientation[] = {
36         "portrait", "landscape", ""
37 };
38
39
40 char const * const string_footnotekinds[] = {
41         "footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
42 };
43
44
45 char const * const string_align[] = {
46         "block", "left", "right", "center", ""
47 };
48
49
50 // The following was moved from tex-defs.h to here, because tex-defs.h is
51 // used all over. As it happens, that meant that these strings were included
52 // 27 times in the object file. (Asger)
53
54 char const * const tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
55                       "ln", "oztex", "textures", "none", ""};
56
57
58 char const * const tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
59                             "helvet", "avant", "newcent", "bookman", ""};