-
Notifications
You must be signed in to change notification settings - Fork 1
/
langcoder.hh
91 lines (63 loc) · 2.26 KB
/
langcoder.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#ifndef LANGCODER_H
#define LANGCODER_H
#include "wstring.hh"
#include <QString>
#include <QMap>
#include <QPair>
struct GDLangCode
{
char code[ 3 ]; // ISO 639-1
char code3[ 4 ]; // ISO 639-2B ( http://www.loc.gov/standards/iso639-2/ )
int isRTL; // Right-to-left writing; 0 - no, 1 - yes, -1 - let Qt define
char const * lang; // Language name in English
};
template <typename T, int N>
inline int arraySize(T (&)[N]) { return N; }
struct LangStruct
{
int order;
quint32 code;
QString lang;
};
class LangCoder
{
public:
LangCoder();
static quint32 code2toInt(const char code[2])
{ return ( ((quint32)code[1]) << 8 ) + (quint32)code[0]; }
static QString intToCode2( quint32 );
static quint32 code3toInt(const std::string& code3);
/// Finds the id for the given language name, written in english. The search
/// is case- and punctuation insensitive.
static quint32 findIdForLanguage( gd::wstring const & );
static quint32 findIdForLanguageCode3( const char * );
// static QPair<quint32,quint32> findIdsForName( QString const & );
// static QPair<quint32,quint32> findIdsForFilename( QString const & );
static quint32 guessId( const QString & lang );
/// Returns decoded name of language or empty string if not found.
static QString decode(quint32 code);
/// Return true for RTL languages
static bool isLanguageRTL(quint32 code);
//const QMap<quint32, int>& codes() { return codeMap; }
LangStruct langStruct(quint32 code);
// QString CodeToHtml(const QString &code);
// bool CheckCode(QString &code);
private:
QMap<quint32, int> codeMap;
// LangStruct dummyLS;
};
///////////////////////////////////////////////////////////////////////////////
#define LangCodeRole Qt::UserRole
/*
class LangModel : public QAbstractItemModel
{
public:
LangModel(QObject * parent = 0);
virtual int columnCount ( const QModelIndex & parent = QModelIndex(}, const;
virtual int rowCount ( const QModelIndex & parent = QModelIndex(}, const;
virtual QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const;
virtual QModelIndex index ( int row, int column, const QModelIndex & parent = QModelIndex(}, const;
virtual QModelIndex parent ( const QModelIndex & index ) const;
};
*/
#endif // LANGCODER_H