summaryrefslogtreecommitdiffstats
path: root/plugins/src/codecs/kr/main.cpp
blob: 2b804423f243e7b41a9cdb8ca49db9ea8a67e105 (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
#include <qtextcodecplugin.h>
#include <qtextcodec.h>
#include <qptrlist.h>

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


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

    QStringList names() const { return QStringList() << "eucKR" << "ksc5601.1987-0"; }
    QValueList<int> mibEnums() const { return QValueList<int>() << 38 << 36; }
    QTextCodec *createForMib( int );
    QTextCodec *createForName( const QString & );
};


QTextCodec *KRTextCodecs::createForMib( int mib )
{
    switch (mib) {
    case 36:
	return new QFontKsc5601Codec;
    case 38:
	return new QEucKrCodec;
    default:
	;
    }

    return 0;
}


QTextCodec *KRTextCodecs::createForName( const QString &name )
{
    if (name == "eucKR")
	return new QEucKrCodec;
    if (name == "ksc5601.1987-0")
	return new QFontKsc5601Codec;

    return 0;
}


Q_EXPORT_PLUGIN( KRTextCodecs );