blob: d91909541354556b1743a3e1f164279c9b1b6d5a (
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 <ntqbig5codec.h>
#include <private/qfontcodecs_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;
}
Q_EXPORT_PLUGIN( TWTextCodecs );
|