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