]> git.lyx.org Git - lyx.git/blobdiff - src/language.h
do not reconfigure when not needed
[lyx.git] / src / language.h
index 68f87abd9d28b4275c0986bf20b4dde55ddbfa4e..b0eeff259dd3c62a8ee9d2007b785d920051f2bd 100644 (file)
@@ -1,23 +1,23 @@
 // -*- 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"
+#include <string>
+
 
 class Encoding;
 
@@ -27,14 +27,22 @@ public:
        ///
        Language() : RightToLeft_(false) {}
        ///
-       Language(string const & l, string const & d, bool rtl, Encoding const * e)
-               : lang_(l), display_(d), RightToLeft_(rtl) , encoding_(e) {}
+       Language(std::string const & l, std::string const & b, std::string const & d,
+                bool rtl, Encoding const * e, std::string const & c,
+                std::string const & o)
+               : lang_(l), babel_(b), display_(d), RightToLeft_(rtl),
+                 encoding_(e), code_(c), latex_options_(o)
+               {}
        ///
-       string const & lang() const {
+       std::string const & lang() const {
                return lang_;
        }
        ///
-       string const & display() const {
+       std::string const & babel() const {
+               return babel_;
+       }
+       ///
+       std::string const & display() const {
                return display_;
        }
        ///
@@ -45,37 +53,67 @@ public:
        Encoding const * encoding() const {
                return encoding_;
        }
+       ///
+       std::string const & code() const {
+               return code_;
+       }
+       ///
+       std::string const & latex_options() const {
+               return latex_options_;
+       }
 private:
        ///
-       string lang_;
+       std::string lang_;
+       ///
+       std::string babel_;
        ///
-       string display_;
+       std::string display_;
        ///
        bool RightToLeft_;
        ///
        Encoding const * encoding_;
+       ///
+       std::string code_;
+       ///
+       std::string latex_options_;
 };
 
-#if 0
-bool operator==(Language const & l1, Language const & l2) 
+class Languages
 {
-       return l1.lang == l2.lang
-               && l1.display_ == l2.display_
-               && l1.RightToLeft_ == l2.RightToLeft_
-               && l1.encoding_ == l2.encoding_;
-}
-
-
-bool operator!=(Language const l1, Language const & l2)
-{
-       return !(l1 == l2);
+public:
+       ///
+       typedef std::map<std::string, Language> LanguageList;
+       ///
+       typedef LanguageList::const_iterator const_iterator;
+       ///
+       typedef LanguageList::size_type size_type;
+       ///
+       void read(std::string const & filename);
+       ///
+       Language const * getLanguage(std::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();
+       }
+       ///
 
-}
-#endif
+private:
+       ///
+       LanguageList languagelist;
+};
 
-typedef std::map<string, Language> Languages;
 extern Languages languages;
 extern Language const * default_language;
-extern Language const *ignore_language;
+extern Language const * english_language;
+extern Language const * ignore_language;
+extern Language const * latex_language;
 
 #endif