From bde4baaced626df90e0312a3d94d024e41d7ab80 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 22 Sep 2003 20:29:15 +0000 Subject: [PATCH] more wxMBConv classes cleanup, define wxConvLibc to use Win32 API under Windows git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23825 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/strconv.h | 40 ++++++--- src/common/strconv.cpp | 195 ++++++++++++++++------------------------- 2 files changed, 105 insertions(+), 130 deletions(-) diff --git a/include/wx/strconv.h b/include/wx/strconv.h index 09040dc6fa..a5c89c2197 100644 --- a/include/wx/strconv.h +++ b/include/wx/strconv.h @@ -33,20 +33,24 @@ #if wxUSE_WCHAR_T // ---------------------------------------------------------------------------- -// wxMBConv (base class for conversions, using libc conversion itself) +// wxMBConv (abstract base class for conversions) // ---------------------------------------------------------------------------- class WXDLLIMPEXP_BASE wxMBConv { public: // the actual conversion takes place here - virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const; - virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const; + // + // note that n is the size of the output buffer, not the length of input + // (which is always supposed to be NUL-terminated) + virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const = 0; + virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const = 0; - // No longer inline since BC++ complains. + // MB <-> WC const wxWCharBuffer cMB2WC(const char *psz) const; const wxCharBuffer cWC2MB(const wchar_t *psz) const; + // convenience functions for converting MB or WC to/from wxWin default #if wxUSE_UNICODE const wxWCharBuffer cMB2WX(const char *psz) const { return cMB2WC(psz); } const wxCharBuffer cWX2MB(const wchar_t *psz) const { return cWC2MB(psz); } @@ -63,7 +67,22 @@ public: virtual ~wxMBConv(); }; -WXDLLIMPEXP_DATA_BASE(extern wxMBConv) wxConvLibc; +// ---------------------------------------------------------------------------- +// wxMBConvLibc uses standard mbstowcs() and wcstombs() functions for +// conversion (hence it depends on the current locale) +// ---------------------------------------------------------------------------- + +class WXDLLIMPEXP_BASE wxMBConvLibc : public wxMBConv +{ +public: + virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const; + virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const; +}; + +// not very accurately named because it is not necessarily of type wxMBConvLibc +// (but the name can't eb changed because of backwards compatibility) default +// conversion +WXDLLIMPEXP_DATA_BASE(extern wxMBConv&) wxConvLibc; // ---------------------------------------------------------------------------- // wxMBConvUTF7 (for conversion using UTF7 encoding) @@ -76,7 +95,7 @@ public: virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const; }; -WXDLLIMPEXP_DATA_BASE(extern wxMBConvUTF7) wxConvUTF7; +WXDLLIMPEXP_DATA_BASE(extern wxMBConvUTF7&) wxConvUTF7; // ---------------------------------------------------------------------------- // wxMBConvUTF8 (for conversion using UTF8 encoding) @@ -89,7 +108,7 @@ public: virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const; }; -WXDLLIMPEXP_DATA_BASE(extern wxMBConvUTF8) wxConvUTF8; +WXDLLIMPEXP_DATA_BASE(extern wxMBConvUTF8&) wxConvUTF8; // ---------------------------------------------------------------------------- // wxMBConvUTF16LE (for conversion using UTF16 Little Endian encoding) @@ -184,8 +203,8 @@ private: }; #define wxConvFile wxConvLocal -WXDLLIMPEXP_DATA_BASE(extern wxCSConv) wxConvLocal; -WXDLLIMPEXP_DATA_BASE(extern wxCSConv) wxConvISO8859_1; +WXDLLIMPEXP_DATA_BASE(extern wxCSConv&) wxConvLocal; +WXDLLIMPEXP_DATA_BASE(extern wxCSConv&) wxConvISO8859_1; WXDLLIMPEXP_DATA_BASE(extern wxMBConv *) wxConvCurrent; // ---------------------------------------------------------------------------- @@ -233,8 +252,9 @@ public: const char* cWX2MB(const char *psz) const { return psz; } }; +#define wxConvFile wxConvLocal + WXDLLIMPEXP_DATA_BASE(extern wxMBConv) wxConvLibc, - wxConvFile, wxConvLocal, wxConvISO8859_1, wxConvUTF8; diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index 4c9d38cf19..1987800ac2 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -34,6 +34,10 @@ #include "wx/log.h" #endif // WX_PRECOMP +#include "wx/strconv.h" + +#if wxUSE_WCHAR_T + #ifdef __WXMSW__ #include "wx/msw/private.h" #endif @@ -46,57 +50,14 @@ #include #include -#include "wx/module.h" -#include "wx/strconv.h" - #if defined(__WIN32__) && !defined(__WXMICROWIN__) #define wxHAVE_WIN32_MB2WC #endif // __WIN32__ but !__WXMICROWIN__ -// ---------------------------------------------------------------------------- -// globals -// ---------------------------------------------------------------------------- - -#if wxUSE_WCHAR_T - WXDLLIMPEXP_DATA_BASE(wxMBConv) wxConvLibc; - WXDLLIMPEXP_DATA_BASE(wxCSConv) wxConvLocal((const wxChar *)NULL); - WXDLLIMPEXP_DATA_BASE(wxCSConv) wxConvISO8859_1(_T("iso-8859-1")); -#else - // stand-ins in absence of wchar_t - WXDLLIMPEXP_DATA_BASE(wxMBConv) wxConvLibc, - wxConvFile, - wxConvISO8859_1, - wxConvLocal, - wxConvUTF8; -#endif // wxUSE_WCHAR_T - -WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent = &wxConvLibc; - -class wxStrConvModule: public wxModule -{ -public: - wxStrConvModule() : wxModule() { } - virtual bool OnInit() { return true; } - virtual void OnExit() - { -#if wxUSE_WCHAR_T - wxConvLocal.Clear(); - wxConvISO8859_1.Clear(); -#endif - } - - DECLARE_DYNAMIC_CLASS(wxStrConvModule) -}; - -IMPLEMENT_DYNAMIC_CLASS(wxStrConvModule, wxModule) - - // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- -#if wxUSE_WCHAR_T - #ifdef __SALFORDC__ #include #endif @@ -115,12 +76,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxStrConvModule, wxModule) #define BSWAP_UCS4(str, len) { unsigned _c; for (_c=0; _c