]> git.lyx.org Git - lyx.git/blob - src/Language.h
390e0a6f7276f8d7e568e73cd8be3d33b5c66ec4
[lyx.git] / src / Language.h
1 // -*- C++ -*-
2 /**
3  * \file Language.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  * \author Dekel Tsur
10  * \author Jürgen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef LANGUAGE_H
16 #define LANGUAGE_H
17
18 #include "BufferParams.h"
19
20 #include "support/docstring.h"
21 #include "support/trivstring.h"
22
23 #include <map>
24 #include <vector>
25
26
27 namespace lyx {
28
29 namespace support { class FileName; }
30
31 class Encoding;
32 class Lexer;
33
34 ///
35 class Language {
36 public:
37         ///
38         Language() : rightToLeft_(false), encoding_(0), internal_enc_(false),
39                                  as_babel_options_(false), has_gui_support_(false) {}
40         /// LyX language name
41         std::string const lang() const { return lang_; }
42         /// Babel language name
43         std::string const babel() const { return babel_; }
44         /// polyglossia language name
45         std::string const polyglossia() const { return polyglossia_name_; }
46         /// polyglossia language options
47         std::string const polyglossiaOpts() const { return polyglossia_opts_; }
48         /// Is this language only supported by polyglossia?
49         bool isPolyglossiaExclusive() const;
50         /// Is this language only supported by babel?
51         bool isBabelExclusive() const;
52         /// quotation marks style
53         std::string const quoteStyle() const { return quote_style_; }
54         /// requirement (package, function)
55         std::string const requires() const { return requires_; }
56         /// provides feature
57         std::string const provides() const { return provides_; }
58         /// translatable GUI name
59         std::string const display() const { return display_; }
60         /// is this a RTL language?
61         bool rightToLeft() const { return rightToLeft_; }
62         /**
63          * Translate a string from the layout files that appears in the output.
64          * It takes the translations from lib/layouttranslations instead of
65          * the .mo files. This should be used for every translation that
66          * appears in the exported document, since the output must not depend
67          * on installed locales. Non-ASCII keys are not translated. */
68         docstring const translateLayout(std::string const & msg) const;
69         /// default encoding
70         Encoding const * encoding() const { return encoding_; }
71         ///
72         std::string const encodingStr() const { return encodingStr_; }
73         /// language code
74         std::string const code() const { return code_; }
75         /// set code (needed for rc.spellchecker_alt_lang)
76         void setCode(std::string const & c) { code_ = c; }
77         /// language variety (needed by aspell checker)
78         std::string const variety() const { return variety_; }
79         /// set variety (needed for rc.spellchecker_alt_lang)
80         void setVariety(std::string const & v) { variety_ = v; }
81         /// preamble settings after babel was called
82         docstring babel_postsettings() const { return babel_postsettings_; }
83         /// preamble settings before babel is called
84         docstring babel_presettings() const { return babel_presettings_; }
85         /// This language internally sets a font encoding
86         bool internalFontEncoding() const { return internal_enc_; }
87         /// fontenc encoding(s)
88         std::string fontenc(BufferParams const &) const;
89         /// fontenc encoding(s)
90         std::vector<std::string> fontencs() const;
91         /// This language needs to be passed to babel itself (not the class)
92         bool asBabelOptions() const { return as_babel_options_; }
93         /// This language corresponds to a translation of the GUI
94         bool hasGuiSupport() const { return has_gui_support_; }
95         ///
96         bool read(Lexer & lex);
97         ///
98         bool readLanguage(Lexer & lex);
99         ///
100         typedef std::map<trivstring, trivdocstring> TranslationMap;
101         ///
102         void readLayoutTranslations(TranslationMap const & trans, bool replace);
103         // for the use in std::map
104         friend bool operator<(Language const & p, Language const & q);
105 private:
106         ///
107         trivstring lang_;
108         ///
109         trivstring babel_;
110         ///
111         trivstring polyglossia_name_;
112         ///
113         trivstring polyglossia_opts_;
114         ///
115         trivstring quote_style_;
116         ///
117         trivstring requires_;
118         ///
119         trivstring provides_;
120         ///
121         trivstring display_;
122         ///
123         bool rightToLeft_;
124         ///
125         trivstring encodingStr_;
126         ///
127         Encoding const * encoding_;
128         ///
129         trivstring code_;
130         ///
131         trivstring variety_;
132         ///
133         trivdocstring babel_postsettings_;
134         ///
135         trivdocstring babel_presettings_;
136         ///
137         std::vector<std::string> fontenc_;
138         ///
139         bool internal_enc_;
140         ///
141         bool as_babel_options_;
142         ///
143         bool has_gui_support_;
144         ///
145         TranslationMap layoutTranslations_;
146 };
147
148
149 inline bool operator<(Language const & p, Language const & q)
150 {
151         return q.lang() > p.lang();
152 }
153
154
155 class Languages
156 {
157 public:
158         ///
159         typedef std::map<trivstring, Language> LanguageList;
160         ///
161         typedef LanguageList::const_iterator const_iterator;
162         ///
163         typedef LanguageList::size_type size_type;
164         ///
165         void read(support::FileName const & filename);
166         ///
167         void readLayoutTranslations(support::FileName const & filename);
168         ///
169         Language const * getLanguage(std::string const & language) const;
170         ///
171         size_type size() const { return languagelist.size(); }
172         ///
173         const_iterator begin() const { return languagelist.begin(); }
174         ///
175         const_iterator end() const { return languagelist.end(); }
176
177 private:
178         ///
179         LanguageList languagelist;
180 };
181
182 /// Global singleton instance.
183 extern Languages languages;
184 /// Default language defined in LyXRC
185 extern Language const * default_language;
186 /// Used to indicate that the language should be left unchanged when
187 /// applying a font change.
188 extern Language const * ignore_language;
189 /// Default language defined in LyXRC
190 extern Language const * latex_language;
191 /// Used to indicate that the language should be reset to the Buffer
192 // language when applying a font change.
193 extern Language const * reset_language;
194
195
196 } // namespace lyx
197
198 #endif