]> git.lyx.org Git - lyx.git/blob - src/Language.h
de-po
[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                                  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         /// The most suitable font encoding(s) for the selected document font
88         std::string fontenc(BufferParams const &) const;
89         /// Return the localized date formats (long, medium, short format)
90         std::string dateFormat(size_t i) const;
91         /// This language corresponds to a translation of the GUI
92         bool hasGuiSupport() const { return has_gui_support_; }
93         ///
94         bool read(Lexer & lex);
95         ///
96         bool readLanguage(Lexer & lex);
97         ///
98         typedef std::map<trivstring, trivdocstring> TranslationMap;
99         ///
100         void readLayoutTranslations(TranslationMap const & trans, bool replace);
101         // for the use in std::map
102         friend bool operator<(Language const & p, Language const & q);
103 private:
104         ///
105         trivstring lang_;
106         ///
107         trivstring babel_;
108         ///
109         trivstring polyglossia_name_;
110         ///
111         trivstring polyglossia_opts_;
112         ///
113         trivstring quote_style_;
114         ///
115         trivstring requires_;
116         ///
117         trivstring provides_;
118         ///
119         trivstring display_;
120         ///
121         bool rightToLeft_;
122         ///
123         trivstring encodingStr_;
124         ///
125         Encoding const * encoding_;
126         ///
127         trivstring code_;
128         ///
129         trivstring variety_;
130         ///
131         trivdocstring babel_postsettings_;
132         ///
133         trivdocstring babel_presettings_;
134         ///
135         std::vector<std::string> fontenc_;
136         ///
137         std::vector<std::string> dateformats_;
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         Language const * getFromCode(std::string const & code) const;
168         ///
169         void readLayoutTranslations(support::FileName const & filename);
170         ///
171         Language const * getLanguage(std::string const & language) const;
172         ///
173         size_type size() const { return languagelist.size(); }
174         ///
175         const_iterator begin() const { return languagelist.begin(); }
176         ///
177         const_iterator end() const { return languagelist.end(); }
178
179 private:
180         ///
181         LanguageList languagelist;
182 };
183
184 /// Global singleton instance.
185 extern Languages languages;
186 /// Default language defined in LyXRC
187 extern Language const * default_language;
188 /// Used to indicate that the language should be left unchanged when
189 /// applying a font change.
190 extern Language const * ignore_language;
191 /// Default language defined in LyXRC
192 extern Language const * latex_language;
193 /// Used to indicate that the language should be reset to the Buffer
194 // language when applying a font change.
195 extern Language const * reset_language;
196
197
198 } // namespace lyx
199
200 #endif