summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp')
-rw-r--r--experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp b/experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp
new file mode 100644
index 000000000..fa76ad551
--- /dev/null
+++ b/experimental/tqtinterface/qt4/plugins/src/codecs/kr/main.cpp
@@ -0,0 +1,47 @@
+#include <tqtextcodecplugin.h>
+#include <tqtextcodec.h>
+#include <tqptrlist.h>
+
+#include <tqeuckrcodec.h>
+#include <private/tqfontcodecs_p.h>
+
+
+class KRTextCodecs : public TQTextCodecPlugin
+{
+public:
+ KRTextCodecs() {}
+
+ TQStringList names() const { return TQStringList() << "eucKR" << "ksc5601.1987-0"; }
+ TQValueList<int> mibEnums() const { return TQValueList<int>() << 38 << 36; }
+ TQTextCodec *createForMib( int );
+ TQTextCodec *createForName( const TQString & );
+};
+
+
+TQTextCodec *KRTextCodecs::createForMib( int mib )
+{
+ switch (mib) {
+ case 36:
+ return new TQFontKsc5601Codec;
+ case 38:
+ return new TQEucKrCodec;
+ default:
+ ;
+ }
+
+ return 0;
+}
+
+
+TQTextCodec *KRTextCodecs::createForName( const TQString &name )
+{
+ if (name == "eucKR")
+ return new TQEucKrCodec;
+ if (name == "ksc5601.1987-0")
+ return new TQFontKsc5601Codec;
+
+ return 0;
+}
+
+
+TQ_EXPORT_PLUGIN( KRTextCodecs );