]> git.lyx.org Git - lyx.git/blob - src/Language.h
Routines for calculating numerical labels for BibTeX citations.
[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         ///
49         std::string const & latex_options() const { return latex_options_; }
50         ///
51         bool internalFontEncoding() const;
52         ///
53         bool read(Lexer & lex);
54         // for the use in std::map
55         friend bool operator<(Language const & p, Language const & q);
56 private:
57         ///
58         std::string lang_;
59         ///
60         std::string babel_;
61         ///
62         std::string display_;
63         ///
64         bool rightToLeft_;
65         ///
66         std::string encodingStr_;
67         ///
68         Encoding const * encoding_;
69         ///
70         std::string code_;
71         ///
72         std::string latex_options_;
73 };
74
75
76 inline bool operator<(Language const & p, Language const & q)
77 {
78         return q.lang() > p.lang();
79 }
80
81
82 class Languages
83 {
84 public:
85         ///
86         typedef std::map<std::string, Language> LanguageList;
87         ///
88         typedef LanguageList::const_iterator const_iterator;
89         ///
90         typedef LanguageList::size_type size_type;
91         ///
92         void read(support::FileName const & filename);
93         ///
94         Language const * getLanguage(std::string const & language) const;
95         ///
96         size_type size() const { return languagelist.size(); }
97         ///
98         const_iterator begin() const { return languagelist.begin(); }
99         ///
100         const_iterator end() const { return languagelist.end(); }
101         ///
102
103 private:
104         ///
105         LanguageList languagelist;
106 };
107
108 /// Global singleton instance.
109 extern Languages languages;
110 /// Default language defined in LyXRC
111 extern Language const * default_language;
112 /// Used to indicate that the language should be left unchanged when
113 /// applying a font change.
114 extern Language const * ignore_language;
115 /// Default language defined in LyXRC
116 extern Language const * latex_language;
117 /// Used to indicate that the language should be reset to the Buffer
118 // language when applying a font change.
119 extern Language const * reset_language;
120
121
122 } // namespace lyx
123
124 #endif