diff options
Diffstat (limited to 'tqtinterface/qt4/plugins/src/codecs/tw')
-rw-r--r-- | tqtinterface/qt4/plugins/src/codecs/tw/main.cpp | 47 | ||||
-rw-r--r-- | tqtinterface/qt4/plugins/src/codecs/tw/tw.pro | 18 |
2 files changed, 65 insertions, 0 deletions
diff --git a/tqtinterface/qt4/plugins/src/codecs/tw/main.cpp b/tqtinterface/qt4/plugins/src/codecs/tw/main.cpp new file mode 100644 index 0000000..6991b33 --- /dev/null +++ b/tqtinterface/qt4/plugins/src/codecs/tw/main.cpp @@ -0,0 +1,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 ); + diff --git a/tqtinterface/qt4/plugins/src/codecs/tw/tw.pro b/tqtinterface/qt4/plugins/src/codecs/tw/tw.pro new file mode 100644 index 0000000..da264b7 --- /dev/null +++ b/tqtinterface/qt4/plugins/src/codecs/tw/tw.pro @@ -0,0 +1,18 @@ +TEMPLATE = lib +TARGET = qtwcodecs + +CONFIG += qt warn_on plugin +DESTDIR = ../../../codecs + +REQUIRES = !bigcodecs + +HEADERS = ../../../../include/tqbig5codec.h \ + ../../../../include/private/tqfontcodecs_p.h +SOURCES = ../../../../src/codecs/tqbig5codec.cpp \ + ../../../../src/codecs/tqfonttwcodec.cpp \ + main.cpp + + +target.path += $$plugins.path/codecs +INSTALLS += target + |