summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/plugins/src/codecs/tw/main.cpp
blob: 6991b33f1b63fb94e6eb2d945006d8611f4b3389 (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 <tqbig5codec.h>
#include <private/tqfontcodecs_p.h>


class TWTextCodecs : public TQTextCodecPlugin
{
public:
    TWTextCodecs() {}
    
    TQStringList names() const { return TQStringList() << "Big5" << "big5*-0"; }
    TQValueList<int> mibEnums() const { return TQValueList<int>() << 2026 << -2026; }
    TQTextCodec *createForMib( int );
    TQTextCodec *createForName( const TQString & );
};

TQTextCodec *TWTextCodecs::createForMib( int mib )
{
    switch (mib) {
    case -2026:
	return new TQFontBig5Codec;
    case 2026:
	return new TQBig5Codec;
    default:
	;
    }

    return 0;
}


TQTextCodec *TWTextCodecs::createForName( const TQString &name )
{
    if (name == "Big5")
	return new TQBig5Codec;
    if (name == "big5*-0")
	return new TQFontBig5Codec;

    return 0;
}


TQ_EXPORT_PLUGIN( TWTextCodecs );