mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
109 lines
1.7 KiB
C++
109 lines
1.7 KiB
C++
// -*- 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 <map>
|
|
#include <string>
|
|
|
|
|
|
///
|
|
typedef unsigned short int Uchar;
|
|
|
|
///
|
|
class Encoding {
|
|
public:
|
|
///
|
|
Encoding() {}
|
|
///
|
|
Encoding(std::string const & n, std::string const & l, Uchar const * e)
|
|
: Name_(n), LatexName_(l) {
|
|
for (int i = 0; i < 256; ++i)
|
|
encoding_table[i] = e[i];
|
|
}
|
|
///
|
|
std::string const & Name() const {
|
|
return Name_;
|
|
}
|
|
///
|
|
std::string const & LatexName() const {
|
|
return LatexName_;
|
|
}
|
|
///
|
|
Uchar ucs(unsigned char c) const {
|
|
return encoding_table[c];
|
|
}
|
|
private:
|
|
///
|
|
std::string Name_;
|
|
///
|
|
std::string LatexName_;
|
|
///
|
|
Uchar encoding_table[256];
|
|
};
|
|
|
|
extern Encoding symbol_encoding;
|
|
|
|
class Encodings {
|
|
public:
|
|
///
|
|
typedef std::map<std::string, Encoding> 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(unsigned char c);
|
|
///
|
|
static
|
|
bool IsComposeChar_arabic(unsigned char c);
|
|
///
|
|
static
|
|
bool is_arabic_special(unsigned char c);
|
|
///
|
|
static
|
|
bool is_arabic(unsigned char c);
|
|
///
|
|
static
|
|
unsigned char TransformChar(unsigned char c, Letter_Form form);
|
|
|
|
private:
|
|
///
|
|
EncodingList encodinglist;
|
|
///
|
|
Encoding symbol_encoding_;
|
|
};
|
|
|
|
extern Encodings encodings;
|
|
|
|
#endif
|