]> git.lyx.org Git - lyx.git/blob - src/Language.h
073ecdb6d4709f32c98cb346c73ecb7f00c0fb67
[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 <map>
19 #include <string>
20
21
22 namespace lyx {
23
24 namespace support { class FileName; }
25
26 class Encoding;
27 class Lexer;
28
29 ///
30 class Language {
31 public:
32         ///
33         Language() : rightToLeft_(false), translated_(false) {}
34         /// LyX language name
35         std::string const & lang() const { return lang_; }
36         /// Babel language name
37         std::string const & babel() const { return babel_; }
38         /// polyglossia language name
39         std::string const & polyglossia() const { return polyglossia_name_; }
40         /// polyglossia language options
41         std::string const & polyglossiaOpts() const { return polyglossia_opts_; }
42         /// translatable GUI name
43         std::string const & display() const { return display_; }
44         /// is this a RTL language?
45         bool rightToLeft() const { return rightToLeft_; }
46         /// Is an (at least partial) translation of this language available?
47         bool translated() const { return translated_; }
48         /// default encoding
49         Encoding const * encoding() const { return encoding_; }
50         ///
51         std::string const & encodingStr() const { return encodingStr_; }
52         /// language code
53         std::string const & code() const { return code_; }
54         /// set code (needed for rc.spellchecker_alt_lang)
55         void setCode(std::string const c) { code_ = c; }
56         /// language variety (needed by aspell checker)
57         std::string const & variety() const { return variety_; }
58         /// set variety (needed for rc.spellchecker_alt_lang)
59         void setVariety(std::string const v) { variety_ = v; }
60         /// preamble settings after babel was called
61         std::string const & babel_postsettings() const { return babel_postsettings_; }
62         /// preamble settings before babel is called
63         std::string const & babel_presettings() const { return babel_presettings_; }
64         /// This language internally sets a font encoding
65         bool internalFontEncoding() const { return internal_enc_; }
66         /// This language needs to be passed to babel itself (not the class)
67         bool asBabelOptions() const { return as_babel_options_; }
68         ///
69         bool read(Lexer & lex);
70         ///
71         bool readLanguage(Lexer & lex);
72         // for the use in std::map
73         friend bool operator<(Language const & p, Language const & q);
74 private:
75         ///
76         std::string lang_;
77         ///
78         std::string babel_;
79         ///
80         std::string polyglossia_name_;
81         ///
82         std::string polyglossia_opts_;
83         ///
84         std::string display_;
85         ///
86         bool rightToLeft_;
87         ///
88         std::string encodingStr_;
89         ///
90         Encoding const * encoding_;
91         ///
92         std::string code_;
93         ///
94         std::string variety_;
95         ///
96         std::string babel_postsettings_;
97         ///
98         std::string babel_presettings_;
99         ///
100         bool internal_enc_;
101         ///
102         bool as_babel_options_;
103         ///
104         bool translated_;
105 };
106
107
108 inline bool operator<(Language const & p, Language const & q)
109 {
110         return q.lang() > p.lang();
111 }
112
113
114 class Languages
115 {
116 public:
117         ///
118         typedef std::map<std::string, Language> LanguageList;
119         ///
120         typedef LanguageList::const_iterator const_iterator;
121         ///
122         typedef LanguageList::size_type size_type;
123         ///
124         void read(support::FileName const & filename);
125         ///
126         Language const * getLanguage(std::string const & language) const;
127         ///
128         size_type size() const { return languagelist.size(); }
129         ///
130         const_iterator begin() const { return languagelist.begin(); }
131         ///
132         const_iterator end() const { return languagelist.end(); }
133         ///
134
135 private:
136         ///
137         LanguageList languagelist;
138 };
139
140 /// Global singleton instance.
141 extern Languages languages;
142 /// Default language defined in LyXRC
143 extern Language const * default_language;
144 /// Used to indicate that the language should be left unchanged when
145 /// applying a font change.
146 extern Language const * ignore_language;
147 /// Default language defined in LyXRC
148 extern Language const * latex_language;
149 /// Used to indicate that the language should be reset to the Buffer
150 // language when applying a font change.
151 extern Language const * reset_language;
152
153
154 } // namespace lyx
155
156 #endif