]> git.saurik.com Git - wxWidgets.git/commitdiff
Commit empty wxConvBrokenFileNames
authorRobert Roebling <robert@roebling.de>
Sat, 26 Mar 2005 12:14:40 +0000 (12:14 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 26 Mar 2005 12:14:40 +0000 (12:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/strconv.cpp

index a842c9aeae640dac866538f89c23cba74a2375b6..2e3c0c8eaa33b4896b55eb9cc160863b27d851f7 100644 (file)
@@ -356,6 +356,41 @@ size_t wxMBConvLibc::WC2MB(char *buf, const wchar_t *psz, size_t n) const
 {
     return wxWC2MB(buf, psz, n);
 }
+
+// ----------------------------------------------------------------------------
+// wxConvBrokenFileNames is made for GTK2 in Unicode mode when
+// files are accidentally written in an encoding which is not
+// the system encoding. Typically, the system encoding will be
+// UTF8 but there might be files stored in ISO8859-1 in disk. 
+// ----------------------------------------------------------------------------
+
+class wxConvBrokenFileNames: public wxMBConvLibc
+{
+public:
+    virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
+    virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
+};
+
+size_t wxConvBrokenFileNames::MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const
+{
+#if 0
+    if (we find some invalid characters)
+    {
+       Convert to Unicode range.
+    }
+    else
+#endif
+    return wxMBConvLibc::MB2WC( outputBuf, psz, outputSize );
+}
+
+size_t wxConvBrokenFileNames::WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const
+{
+#if 0
+    Convert back from Unicode range.
+#endif
+    return wxMBConvLibc::WC2MB( outputBuf, psz, outputSize );
+}
+
 // ----------------------------------------------------------------------------
 // UTF-7 
 // ----------------------------------------------------------------------------