blob: e024d64c0fe00ce371580b4d87b1ac107a9e4f1d (
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 <ntqtextcodecplugin.h>
#include <ntqtextcodec.h>
#include <ntqptrlist.h>
#include <ntqeuckrcodec.h>
#include <private/qfontcodecs_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 );
|