]> git.lyx.org Git - lyx.git/blob - src/Language.h
b5aa3d98f6c3f938118c1ce44a0cd15ce6156207
[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         ///
35         std::string const & lang() const { return lang_; }
36         ///
37         std::string const & babel() const { return babel_; }
38         ///
39         std::string const & display() const { return display_; }
40         ///
41         bool rightToLeft() const { return rightToLeft_; }
42         ///
43         Encoding const * encoding() const { return encoding_; }
44         ///
45         std::string const & encodingStr() const { return encodingStr_; }
46         ///
47         std::string const & code() const { return code_; }
48         /// set code (needed for rc.spellchecker_alt_lang)
49         void setCode(std::string const c) { code_ = c; }
50         ///
51         std::string const & variety() const { return variety_; }
52         /// set variety (needed for rc.spellchecker_alt_lang)
53         void setVariety(std::string const v) { variety_ = v; }
54         ///
55         std::string const & babel_postsettings() const { return babel_postsettings_; }
56         ///
57         std::string const & babel_presettings() const { return babel_presettings_; }
58         ///
59         bool internalFontEncoding() const { return internal_enc_; }
60         ///
61         bool read(Lexer & lex);
62         ///
63         bool readLanguage(Lexer & lex);
64         // for the use in std::map
65         friend bool operator<(Language const & p, Language const & q);
66 private:
67         ///
68         std::string lang_;
69         ///
70         std::string babel_;
71         ///
72         std::string display_;
73         ///
74         bool rightToLeft_;
75         ///
76         std::string encodingStr_;
77         ///
78         Encoding const * encoding_;
79         ///
80         std::string code_;
81         ///
82         std::string variety_;
83         ///
84         std::string babel_postsettings_;
85         ///
86         std::string babel_presettings_;
87         ///
88         bool internal_enc_;
89 };
90
91
92 inline bool operator<(Language const & p, Language const & q)
93 {
94         return q.lang() > p.lang();
95 }
96
97
98 class Languages
99 {
100 public:
101         ///
102         typedef std::map<std::string, Language> LanguageList;
103         ///
104         typedef LanguageList::const_iterator const_iterator;
105         ///
106         typedef LanguageList::size_type size_type;
107         ///
108         void read(support::FileName const & filename);
109         ///
110         Language const * getLanguage(std::string const & language) const;
111         ///
112         size_type size() const { return languagelist.size(); }
113         ///
114         const_iterator begin() const { return languagelist.begin(); }
115         ///
116         const_iterator end() const { return languagelist.end(); }
117         ///
118
119 private:
120         ///
121         LanguageList languagelist;
122 };
123
124 /// Global singleton instance.
125 extern Languages languages;
126 /// Default language defined in LyXRC
127 extern Language const * default_language;
128 /// Used to indicate that the language should be left unchanged when
129 /// applying a font change.
130 extern Language const * ignore_language;
131 /// Default language defined in LyXRC
132 extern Language const * latex_language;
133 /// Used to indicate that the language should be reset to the Buffer
134 // language when applying a font change.
135 extern Language const * reset_language;
136
137
138 } // namespace lyx
139
140 #endif