X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flanguage.h;h=01e0c74b901b4308a6ed3322d95fdaee645b0eb3;hb=98c966c64594611e469313314abd1e59524adb4a;hp=d3b42fb1a7dd09e3facaa4f93964df71758c6fd9;hpb=2889b5fd3e8987d0c265ff4726a7fb6c6cb6c034;p=lyx.git diff --git a/src/language.h b/src/language.h index d3b42fb1a7..01e0c74b90 100644 --- a/src/language.h +++ b/src/language.h @@ -1,23 +1,47 @@ // -*- C++ -*- +/* This file is part of + * ====================================================== + * + * LyX, The Document Processor + * + * Copyright 1995 Matthias Ettrich + * Copyright 1995-2001 The LyX Team. + * + * ====================================================== */ + #ifndef LANGUAGE_H #define LANGUAGE_H +#ifdef __GNUG__ +#pragma interface +#endif + #include #include "LString.h" +class Encoding; + /// class Language { public: /// Language() : RightToLeft_(false) {} /// - Language(string const & l, string const & d, bool rtl) - : lang_(l), display_(d), RightToLeft_(rtl) {} + Language(string const & l, string const & b, string const & d, + bool rtl, Encoding const * e, string const & c, + string const & o) + : lang_(l), babel_(b), display_(d), RightToLeft_(rtl), + encoding_(e), code_(c), latex_options_(o) + {} /// string const & lang() const { return lang_; } /// + string const & babel() const { + return babel_; + } + /// string const & display() const { return display_; } @@ -25,34 +49,76 @@ public: bool RightToLeft() const { return RightToLeft_; } + /// + Encoding const * encoding() const { + return encoding_; + } + /// + string const & code() const { + return code_; + } + /// + string const & latex_options() const { + return latex_options_; + } private: /// string lang_; /// + string babel_; + /// string display_; /// bool RightToLeft_; + /// + Encoding const * encoding_; + /// + string code_; + /// + string latex_options_; }; -#if 0 -bool operator==(Language const & l1, Language const & l2) -{ - return l1.lang == l2.lang - && l1.display == l2.display - && l1.RightToLeft == l2.RightToLeft; -} - - -bool operator!=(Language const l1, Language const & l2) +class Languages { - return !(l1 == l2); +public: + /// + typedef std::map LanguageList; + /// + typedef LanguageList::const_iterator const_iterator; + /// + typedef LanguageList::size_type size_type; + /// + void read(string const & filename); + /// + void setDefaults(); + /// + 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(); + } + /// -} -#endif +private: + /// + LanguageList languagelist; +}; -typedef std::map 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; +#ifdef INHERIT_LANGUAGE +extern Language const * inherit_language; +#endif #endif