]> git.lyx.org Git - lyx.git/blob - src/tex-strings.C
Two little things:
[lyx.git] / src / tex-strings.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *        
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "tex-strings.h"
18
19 // this file should perhaps be split into even smaller parts
20
21 char const * string_paragraph_separation[3] = {
22         "indent", "skip", ""
23 };
24
25
26 char const * string_quotes_language[7] = {
27         "english", "swedish", "german", "polish", "french", "danish", ""
28 };      
29
30
31 char const * string_papersize[12] = {
32         "Default", "Custom", "letterpaper", "executivepaper", "legalpaper", 
33         "a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
34 };
35
36
37 char const * string_paperpackages[4] = {
38         "a4", "a4wide", "widemarginsa4", ""
39 };
40
41
42 char const * string_orientation[3] = {
43         "portrait", "landscape", ""
44 };
45
46
47 char const * string_footnotekinds[8] = {
48         "footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
49 };
50
51
52 char const * string_align[5] = {
53         "block", "left", "right", "center", ""
54 };
55
56
57 // The following was moved from tex-defs.h to here, because tex-defs.h is
58 // used all over. As it happens, that meant that these strings were included 
59 // 27 times in the object file. (Asger)
60
61 char const * tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
62                       "ln", "oztex", "textures", "none", ""};
63
64
65 char const * tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
66                             "helvet", "avant", "newcent", "bookman", ""};
67
68