]>
git.saurik.com Git - wxWidgets.git/blob - src/common/xlocale.cpp
b2b035aed19af79b86999f53d1833cc8465bc07d
1 //////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/xlocale.cpp
3 // Purpose: xlocale wrappers/impl to provide some xlocale wrappers
4 // Author: Brian Vanderburg II, Vadim Zeitlin
7 // Copyright: (c) 2008 Brian Vanderburg II
8 // 2008 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
29 #include "wx/module.h"
32 #include "wx/xlocale.h"
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 // This is the C locale object, it is created on demand
39 static wxXLocale
*gs_cLocale
= NULL
;
41 wxXLocale wxNullXLocale
;
44 // ============================================================================
46 // ============================================================================
48 // ----------------------------------------------------------------------------
49 // Module for gs_cLocale cleanup
50 // ----------------------------------------------------------------------------
52 class wxXLocaleModule
: public wxModule
55 virtual bool OnInit() { return true; }
56 virtual void OnExit() { wxDELETE(gs_cLocale
); }
58 DECLARE_DYNAMIC_CLASS(wxXLocaleModule
)
61 IMPLEMENT_DYNAMIC_CLASS(wxXLocaleModule
, wxModule
)
64 // ============================================================================
65 // wxXLocale implementation
66 // ============================================================================
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
73 wxXLocale
& wxXLocale::GetCLocale()
77 gs_cLocale
= new wxXLocale(static_cast<wxXLocaleCTag
*>(NULL
));
83 #ifdef wxHAS_XLOCALE_SUPPORT
85 wxXLocale::wxXLocale(wxLanguage lang
)
87 const wxLanguageInfo
* const info
= wxLocale::GetLanguageInfo(lang
);
94 Init(info
->GetLocaleName().c_str());
98 #if wxCHECK_VISUALC_VERSION(8)
100 // ----------------------------------------------------------------------------
101 // implementation using MSVC locale API
102 // ----------------------------------------------------------------------------
104 void wxXLocale::Init(const char *loc
)
106 if (!loc
|| *loc
== '\0')
109 m_locale
= _create_locale(LC_ALL
, loc
);
112 void wxXLocale::Free()
115 _free_locale(m_locale
);
118 #elif defined(HAVE_LOCALE_T)
120 // ----------------------------------------------------------------------------
121 // implementation using xlocale API
122 // ----------------------------------------------------------------------------
124 void wxXLocale::Init(const char *loc
)
126 if (!loc
|| *loc
== '\0')
129 m_locale
= newlocale(LC_ALL_MASK
, loc
, NULL
);
132 // NOTE: here we do something similar to what wxSetLocaleTryUTF8() does
133 // in wxLocale code (but with newlocale() calls instead of wxSetlocale())
136 buf2
= buf
+ wxS(".UTF-8");
137 m_locale
= newlocale(LC_ALL_MASK
, buf2
, NULL
);
140 buf2
= buf
+ wxS(".utf-8");
141 m_locale
= newlocale(LC_ALL_MASK
, buf2
, NULL
);
145 buf2
= buf
+ wxS(".UTF8");
146 m_locale
= newlocale(LC_ALL_MASK
, buf2
, NULL
);
150 buf2
= buf
+ wxS(".utf8");
151 m_locale
= newlocale(LC_ALL_MASK
, buf2
, NULL
);
155 // TODO: wxLocale performs many more manipulations of the given locale
156 // string in the attempt to set a valid locale; reusing that code
157 // (changing it to take a generic wxTryLocale callback) would be nice
160 void wxXLocale::Free()
163 freelocale(m_locale
);
167 #error "Unknown xlocale support."
170 #endif // wxHAS_XLOCALE_SUPPORT
172 #ifndef wxHAS_XLOCALE_SUPPORT
174 // ============================================================================
175 // Implementation of wxFoo_l() functions for "C" locale without xlocale support
176 // ============================================================================
178 // ----------------------------------------------------------------------------
179 // character classification and transformation functions
180 // ----------------------------------------------------------------------------
182 // lookup table and macros for character type functions
183 #define CTYPE_ALNUM 0x0001
184 #define CTYPE_ALPHA 0x0002
185 #define CTYPE_CNTRL 0x0004
186 #define CTYPE_DIGIT 0x0008
187 #define CTYPE_GRAPH 0x0010
188 #define CTYPE_LOWER 0x0020
189 #define CTYPE_PRINT 0x0040
190 #define CTYPE_PUNCT 0x0080
191 #define CTYPE_SPACE 0x0100
192 #define CTYPE_UPPER 0x0200
193 #define CTYPE_XDIGIT 0x0400
195 static unsigned int gs_lookup
[] =
197 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
198 0x0004, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0004, 0x0004,
199 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
200 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
201 0x0140, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0,
202 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0,
203 0x0459, 0x0459, 0x0459, 0x0459, 0x0459, 0x0459, 0x0459, 0x0459,
204 0x0459, 0x0459, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0,
205 0x00D0, 0x0653, 0x0653, 0x0653, 0x0653, 0x0653, 0x0653, 0x0253,
206 0x0253, 0x0253, 0x0253, 0x0253, 0x0253, 0x0253, 0x0253, 0x0253,
207 0x0253, 0x0253, 0x0253, 0x0253, 0x0253, 0x0253, 0x0253, 0x0253,
208 0x0253, 0x0253, 0x0253, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x00D0,
209 0x00D0, 0x0473, 0x0473, 0x0473, 0x0473, 0x0473, 0x0473, 0x0073,
210 0x0073, 0x0073, 0x0073, 0x0073, 0x0073, 0x0073, 0x0073, 0x0073,
211 0x0073, 0x0073, 0x0073, 0x0073, 0x0073, 0x0073, 0x0073, 0x0073,
212 0x0073, 0x0073, 0x0073, 0x00D0, 0x00D0, 0x00D0, 0x00D0, 0x0004
216 #define CTYPE_TEST(c, t) ( (c) <= 127 && (gs_lookup[(c)] & (t)) )
220 #define GEN_ISFUNC(name, test) \
221 int name(const wxUniChar& c, const wxXLocale& loc) \
223 wxCHECK(loc.IsOk(), false); \
224 return CTYPE_TEST(c.GetValue(), test); \
227 GEN_ISFUNC(wxIsalnum_l
, CTYPE_ALNUM
)
228 GEN_ISFUNC(wxIsalpha_l
, CTYPE_ALPHA
)
229 GEN_ISFUNC(wxIscntrl_l
, CTYPE_CNTRL
)
230 GEN_ISFUNC(wxIsdigit_l
, CTYPE_DIGIT
)
231 GEN_ISFUNC(wxIsgraph_l
, CTYPE_GRAPH
)
232 GEN_ISFUNC(wxIslower_l
, CTYPE_LOWER
)
233 GEN_ISFUNC(wxIsprint_l
, CTYPE_PRINT
)
234 GEN_ISFUNC(wxIspunct_l
, CTYPE_PUNCT
)
235 GEN_ISFUNC(wxIsspace_l
, CTYPE_SPACE
)
236 GEN_ISFUNC(wxIsupper_l
, CTYPE_UPPER
)
237 GEN_ISFUNC(wxIsxdigit_l
, CTYPE_XDIGIT
)
239 int wxTolower_l(const wxUniChar
& c
, const wxXLocale
& loc
)
241 wxCHECK(loc
.IsOk(), false);
243 if(CTYPE_TEST(c
.GetValue(), CTYPE_UPPER
))
245 return c
- 'A' + 'a';
251 int wxToupper_l(const wxUniChar
& c
, const wxXLocale
& loc
)
253 wxCHECK(loc
.IsOk(), false);
255 if(CTYPE_TEST(c
.GetValue(), CTYPE_LOWER
))
257 return c
- 'a' + 'A';
263 #endif // !defined(wxHAS_XLOCALE_SUPPORT)
265 #endif // wxUSE_XLOCALE