]> git.lyx.org Git - lyx.git/blob - src/Language.h
Do not overwrite read-only files. We now move the file to the backup directory and...
[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) {}
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         /// default encoding
47         Encoding const * encoding() const { return encoding_; }
48         ///
49         std::string const & encodingStr() const { return encodingStr_; }
50         /// language code
51         std::string const & code() const { return code_; }
52         /// set code (needed for rc.spellchecker_alt_lang)
53         void setCode(std::string const c) { code_ = c; }
54         /// language variety (needed by aspell checker)
55         std::string const & variety() const { return variety_; }
56         /// set variety (needed for rc.spellchecker_alt_lang)
57         void setVariety(std::string const v) { variety_ = v; }
58         /// preamble settings after babel was called
59         std::string const & babel_postsettings() const { return babel_postsettings_; }
60         /// preamble settings before babel is called
61         std::string const & babel_presettings() const { return babel_presettings_; }
62         /// This language internally sets a font encoding
63         bool internalFontEncoding() const { return internal_enc_; }
64         /// This language needs to be passed to babel itself (not the class)
65         bool asBabelOptions() const { return as_babel_options_; }
66         ///
67         bool read(Lexer & lex);
68         ///
69         bool readLanguage(Lexer & lex);
70         // for the use in std::map
71         friend bool operator<(Language const & p, Language const & q);
72 private:
73         ///
74         std::string lang_;
75         ///
76         std::string babel_;
77         ///
78         std::string polyglossia_name_;
79         ///
80         std::string polyglossia_opts_;
81         ///
82         std::string display_;
83         ///
84         bool rightToLeft_;
85         ///
86         std::string encodingStr_;
87         ///
88         Encoding const * encoding_;
89         ///
90         std::string code_;
91         ///
92         std::string variety_;
93         ///
94         std::string babel_postsettings_;
95         ///
96         std::string babel_presettings_;
97         ///
98         bool internal_enc_;
99         ///
100         bool as_babel_options_;
101 };
102
103
104 inline bool operator<(Language const & p, Language const & q)
105 {
106         return q.lang() > p.lang();
107 }
108
109
110 class Languages
111 {
112 public:
113         ///
114         typedef std::map<std::string, Language> LanguageList;
115         ///
116         typedef LanguageList::const_iterator const_iterator;
117         ///
118         typedef LanguageList::size_type size_type;
119         ///
120         void read(support::FileName const & filename);
121         ///
122         Language const * getLanguage(std::string const & language) const;
123         ///
124         size_type size() const { return languagelist.size(); }
125         ///
126         const_iterator begin() const { return languagelist.begin(); }
127         ///
128         const_iterator end() const { return languagelist.end(); }
129         ///
130
131 private:
132         ///
133         LanguageList languagelist;
134 };
135
136 /// Global singleton instance.
137 extern Languages languages;
138 /// Default language defined in LyXRC
139 extern Language const * default_language;
140 /// Used to indicate that the language should be left unchanged when
141 /// applying a font change.
142 extern Language const * ignore_language;
143 /// Default language defined in LyXRC
144 extern Language const * latex_language;
145 /// Used to indicate that the language should be reset to the Buffer
146 // language when applying a font change.
147 extern Language const * reset_language;
148
149
150 } // namespace lyx
151
152 #endif