// -*- C++ -*- /** * \file encoding.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 * * Full author contact details are available in file CREDITS. */ #ifndef ENCODING_H #define ENCODING_H #include #include #include "support/types.h" namespace lyx { /// class Encoding { public: /// Encoding() {} /// Encoding(std::string const & n, std::string const & l, std::string const & i) : Name_(n), LatexName_(l), iconvName_(i) { } /// std::string const & name() const { return Name_; } /// std::string const & latexName() const { return LatexName_; } /// std::string const & iconvName() const { return iconvName_; } private: /// std::string Name_; /// std::string LatexName_; /// std::string iconvName_; }; extern Encoding symbol_encoding; class Encodings { public: /// typedef std::map EncodingList; /// Encodings(); /// void read(std::string const & filename); /// Encoding const * getEncoding(std::string const & encoding) const; /// Encoding const * symbol_encoding() { return &symbol_encoding_; } /// enum Letter_Form { /// FORM_ISOLATED, /// FORM_FINAL, /// FORM_INITIAL, /// FORM_MEDIAL }; /// static bool isComposeChar_hebrew(char_type c); /// static bool isComposeChar_arabic(char_type c); /// static bool is_arabic_special(char_type c); /// static bool is_arabic(char_type c); /// static char_type transformChar(char_type c, Letter_Form form); private: /// EncodingList encodinglist; /// Encoding symbol_encoding_; }; extern Encodings encodings; } // namespace lyx #endif