summaryrefslogtreecommitdiffstats
path: root/plugins/src/codecs/cn/main.cpp
blob: a6f117352ab8664d972c9b50b7c5b64a2b09a0d8 (plain)
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
#include <qtextcodecplugin.h>
#include <qtextcodec.h>
#include <qptrlist.h>
#include <qapplication.h>

#include <qgb18030codec.h>
#include <private/qfontcodecs_p.h>


class CNTextCodecs : public QTextCodecPlugin
{
public:
    CNTextCodecs() {}

    QStringList names() const { return QStringList() << "GB18030" << "GBK" << "gb2312.1980-0" << "gbk-0"; }
    QValueList<int> mibEnums() const { return QValueList<int>() << -2025 << 57 << 2025; }

    QTextCodec *createForMib( int );
    QTextCodec *createForName( const QString & );
};

QTextCodec *CNTextCodecs::createForMib( int mib )
{
    switch (mib) {
    case 57:
	return new QGb2312Codec;
    case 2025:
	return new QGbkCodec;
    case -2025:
	return new QGb18030Codec;
    default:
	;
    }

    return 0;
}


QTextCodec *CNTextCodecs::createForName( const QString &name )
{
    if (name == "GB18030")
	return new QGb18030Codec;
    if (name == "GBK" || name == "gbk-0")
	return new QGbkCodec;
    if (name == "gb2312.1980-0")
	return new QGb2312Codec;

    return 0;
}


Q_EXPORT_PLUGIN( CNTextCodecs );