summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/plugins/src/codecs/cn/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/plugins/src/codecs/cn/main.cpp')
-rw-r--r--tqtinterface/qt4/plugins/src/codecs/cn/main.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/tqtinterface/qt4/plugins/src/codecs/cn/main.cpp b/tqtinterface/qt4/plugins/src/codecs/cn/main.cpp
new file mode 100644
index 0000000..3c9064c
--- /dev/null
+++ b/tqtinterface/qt4/plugins/src/codecs/cn/main.cpp
@@ -0,0 +1,52 @@
+#include <tqtextcodecplugin.h>
+#include <tqtextcodec.h>
+#include <tqptrlist.h>
+#include <tqapplication.h>
+
+#include <tqgb18030codec.h>
+#include <private/tqfontcodecs_p.h>
+
+
+class CNTextCodecs : public TQTextCodecPlugin
+{
+public:
+ CNTextCodecs() {}
+
+ TQStringList names() const { return TQStringList() << "GB18030" << "GBK" << "gb2312.1980-0" << "gbk-0"; }
+ TQValueList<int> mibEnums() const { return TQValueList<int>() << -2025 << 57 << 2025; }
+
+ TQTextCodec *createForMib( int );
+ TQTextCodec *createForName( const TQString & );
+};
+
+TQTextCodec *CNTextCodecs::createForMib( int mib )
+{
+ switch (mib) {
+ case 57:
+ return new TQGb2312Codec;
+ case 2025:
+ return new TQGbkCodec;
+ case -2025:
+ return new TQGb18030Codec;
+ default:
+ ;
+ }
+
+ return 0;
+}
+
+
+TQTextCodec *CNTextCodecs::createForName( const TQString &name )
+{
+ if (name == "GB18030")
+ return new TQGb18030Codec;
+ if (name == "GBK" || name == "gbk-0")
+ return new TQGbkCodec;
+ if (name == "gb2312.1980-0")
+ return new TQGb2312Codec;
+
+ return 0;
+}
+
+
+TQ_EXPORT_PLUGIN( CNTextCodecs );