]> git.lyx.org Git - lyx.git/blobdiff - src/language.h
Point fix, earlier forgotten
[lyx.git] / src / language.h
index e009d88703533dbd851069f9292bb226f6d119b4..7a3db0510e223a158aab43d0f589c746c771e580 100644 (file)
@@ -1,21 +1,20 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *        
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+/**
+ * \file language.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ * \author Dekel Tsur
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef LANGUAGE_H
 #define LANGUAGE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include <map>
 #include "LString.h"
 
@@ -28,9 +27,10 @@ public:
        Language() : RightToLeft_(false) {}
        ///
        Language(string const & l, string const & b, string const & d,
-                bool rtl, Encoding const * e, string const & c)
+                bool rtl, Encoding const * e, string const & c,
+                string const & o)
                : lang_(l), babel_(b), display_(d), RightToLeft_(rtl),
-                 encoding_(e), code_(c)
+                 encoding_(e), code_(c), latex_options_(o)
                {}
        ///
        string const & lang() const {
@@ -56,6 +56,10 @@ public:
        string const & code() const {
                return code_;
        }
+       ///
+       string const & latex_options() const {
+               return latex_options_;
+       }
 private:
        ///
        string lang_;
@@ -69,6 +73,8 @@ private:
        Encoding const * encoding_;
        ///
        string code_;
+       ///
+       string latex_options_;
 };
 
 class Languages
@@ -79,21 +85,25 @@ public:
        ///
        typedef LanguageList::const_iterator const_iterator;
        ///
-       void read(string const & filename);
+       typedef LanguageList::size_type size_type;
        ///
-       void setDefaults();
+       void read(string const & filename);
        ///
        Language const * getLanguage(string const & language) const;
        ///
+       size_type size() const {
+               return languagelist.size();
+       }
+       ///
        const_iterator begin() const {
-                return languagelist.begin();
-        }
-        ///
-        const_iterator end() const {
-                return languagelist.end();
-        }
-       ///
-       
+               return languagelist.begin();
+       }
+       ///
+       const_iterator end() const {
+               return languagelist.end();
+       }
+       ///
+
 private:
        ///
        LanguageList languagelist;
@@ -102,6 +112,7 @@ private:
 extern Languages languages;
 extern Language const * default_language;
 extern Language const * english_language;
-extern Language const *ignore_language;
+extern Language const * ignore_language;
+extern Language const * latex_language;
 
 #endif