summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp
blob: fa76ad551ff007bbdc8807e6f5ce45dedcae71f2 (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 <tqtextcodecplugin.h>
#include <tqtextcodec.h>
#include <tqptrlist.h>

#include <tqeuckrcodec.h>
#include <private/tqfontcodecs_p.h>


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

    TQStringList names() const { return TQStringList() << "eucKR" << "ksc5601.1987-0"; }
    TQValueList<int> mibEnums() const { return TQValueList<int>() << 38 << 36; }
    TQTextCodec *createForMib( int );
    TQTextCodec *createForName( const TQString & );
};


TQTextCodec *KRTextCodecs::createForMib( int mib )
{
    switch (mib) {
    case 36:
	return new TQFontKsc5601Codec;
    case 38:
	return new TQEucKrCodec;
    default:
	;
    }

    return 0;
}


TQTextCodec *KRTextCodecs::createForName( const TQString &name )
{
    if (name == "eucKR")
	return new TQEucKrCodec;
    if (name == "ksc5601.1987-0")
	return new TQFontKsc5601Codec;

    return 0;
}


TQ_EXPORT_PLUGIN( KRTextCodecs );