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