diff options
Diffstat (limited to 'plugins/src/codecs/tw/main.cpp')
-rw-r--r-- | plugins/src/codecs/tw/main.cpp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/plugins/src/codecs/tw/main.cpp b/plugins/src/codecs/tw/main.cpp new file mode 100644 index 000000000..5b4134040 --- /dev/null +++ b/plugins/src/codecs/tw/main.cpp @@ -0,0 +1,47 @@ +#include <qtextcodecplugin.h> +#include <qtextcodec.h> +#include <qptrlist.h> + +#include <qbig5codec.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 ); + |