]> git.lyx.org Git - lyx.git/blobdiff - src/Language.h
Declare focusInEvent so we can compile.
[lyx.git] / src / Language.h
index 59085ec847133da20b9b9dde0859b7681dcf1227..14700710b75b101548de3d01121a49cfab84098a 100644 (file)
@@ -4,10 +4,10 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
  * \author Dekel Tsur
- * \author Jürgen Vigna
+ * \author Jürgen Vigna
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -24,6 +24,7 @@ namespace lyx {
 namespace support { class FileName; }
 
 class Encoding;
+class Lexer;
 
 ///
 class Language {
@@ -31,13 +32,6 @@ public:
        ///
        Language() : rightToLeft_(false) {}
        ///
-       Language(std::string const & l, std::string const & b, std::string const & d,
-                bool rtl, std::string const & es, Encoding const * e, std::string const & c,
-                std::string const & o)
-               : lang_(l), babel_(b), display_(d), rightToLeft_(rtl),
-                 encodingStr_(es), encoding_(e), code_(c), latex_options_(o)
-               {}
-       ///
        std::string const & lang() const { return lang_; }
        ///
        std::string const & babel() const { return babel_; }
@@ -53,6 +47,12 @@ public:
        std::string const & code() const { return code_; }
        ///
        std::string const & latex_options() const { return latex_options_; }
+       ///
+       bool internalFontEncoding() const;
+       ///
+       bool read(Lexer & lex);
+       // for the use in std::map
+       friend bool operator<(Language const & p, Language const & q);
 private:
        ///
        std::string lang_;
@@ -72,6 +72,13 @@ private:
        std::string latex_options_;
 };
 
+
+inline bool operator<(Language const & p, Language const & q)
+{
+       return q.lang() > p.lang();
+}
+
+
 class Languages
 {
 public:
@@ -98,11 +105,18 @@ private:
        LanguageList languagelist;
 };
 
+/// Global singleton instance.
 extern Languages languages;
+/// Default language defined in LyXRC
 extern Language const * default_language;
-extern Language const * english_language;
+/// Used to indicate that the language should be left unchanged when
+/// applying a font change.
 extern Language const * ignore_language;
+/// Default language defined in LyXRC
 extern Language const * latex_language;
+/// Used to indicate that the language should be reset to the Buffer
+// language when applying a font change.
+extern Language const * reset_language;
 
 
 } // namespace lyx