]> git.saurik.com Git - wxWidgets.git/blame - include/wx/unichar.h
fix memory leak when handling background attribute (patch 1687900)
[wxWidgets.git] / include / wx / unichar.h
CommitLineData
e3f6cbd9
VS
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/unichar.h
3// Purpose: wxUniChar and wxUniCharRef classes
4// Author: Vaclav Slavik
5// Created: 2007-03-19
6// RCS-ID: $Id$
7// Copyright: (c) 2007 REA Elektronik GmbH
8// Licence: wxWindows licence
9///////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_UNICHAR_H_
12#define _WX_UNICHAR_H_
13
dbecee02 14#include "wx/defs.h"
e3f6cbd9 15#include "wx/chartype.h"
a7ea63e2 16#include "wx/stringimpl.h"
a962cdf4 17
436bb9f5
VZ
18// wint_t is just a typedef for wchar_t for many old compilers but for modern
19// ones it's a separate type and we must provide a conversion to it to allow
20// passing wxUniChar[Ref] to functions taking wint_t such as iswalnum() &c
21#if (defined(__GNUC__) && !defined(__DARWIN__)) || \
22 (defined(__VISUALC__) && defined(_NATIVE_WCHAR_T_DEFINED))
23 #define wxWINT_T_IS_SEPARATE_TYPE
24#endif
25
26// helper macro for doing something dependent on whether wint_t is or isn't a
27// typedef inside another macro
28#ifdef wxWINT_T_IS_SEPARATE_TYPE
29 #define wxIF_WINT_T_TYPE(x) x
30#else // !wxWINT_T_IS_SEPARATE_TYPE
31 #define wxIF_WINT_T_TYPE(x)
32#endif // wxWINT_T_IS_SEPARATE_TYPE/!wxWINT_T_IS_SEPARATE_TYPE
33
e3f6cbd9
VS
34class WXDLLIMPEXP_BASE wxUniCharRef;
35
36// This class represents single Unicode character. It can be converted to
37// and from char or wchar_t and implements commonly used character operations.
38class WXDLLIMPEXP_BASE wxUniChar
39{
40public:
41 // NB: this is not wchar_t on purpose, it needs to represent the entire
42 // Unicode code points range and wchar_t may be too small for that
43 // (e.g. on Win32 where wchar_t* is encoded in UTF-16)
dbecee02 44 typedef wxUint32 value_type;
e3f6cbd9
VS
45
46 wxUniChar() : m_value(0) {}
47
48 // Create the character from 8bit character value encoded in the current
49 // locale's charset.
50 wxUniChar(char c) { m_value = From8bit(c); }
9f1b1b78 51 wxUniChar(unsigned char c) { m_value = From8bit((char)c); }
e3f6cbd9
VS
52
53 // Create the character from a wchar_t character value.
54 wxUniChar(wchar_t c) { m_value = c; }
436bb9f5
VZ
55#ifdef wxWINT_T_IS_SEPARATE_TYPE
56 wxUniChar(wint_t c) { m_value = c; }
57#endif
e3f6cbd9 58
e3f6cbd9
VS
59 wxUniChar(int c) { m_value = c; }
60
61 wxUniChar(const wxUniCharRef& c);
62
63 // Returns Unicode code point value of the character
d1b7ed67 64 value_type GetValue() const { return m_value; }
e3f6cbd9 65
2a686bd3
VZ
66 // Conversions to char and wchar_t types: all of those are needed to be
67 // able to pass wxUniChars to verious standard narrow and wide character
68 // functions
e3f6cbd9
VS
69 operator char() const { return To8bit(m_value); }
70 operator wchar_t() const { return m_value; }
e3f6cbd9 71 operator int() const { return m_value; }
2a686bd3
VZ
72
73 // More conversions needed for other standard functions: uchar is for VC++
74 // _mbxxx() ones (to which toxxx/isxxx() are mapped when _MBCS is defined)
c961c0cf
VZ
75 // and some wide character functions take wint_t which happens to be the
76 // same as wchar_t for Windows compilers but not for g++ (except for the
77 // special Apple version)
2a686bd3 78 operator unsigned char() const { return (unsigned char)To8bit(m_value); }
436bb9f5 79#ifdef wxWINT_T_IS_SEPARATE_TYPE
c961c0cf
VZ
80 operator wint_t() const { return m_value; }
81#endif
e3f6cbd9
VS
82
83 // We need this operator for the "*p" part of expressions like "for (
84 // const_iterator p = begin() + nStart; *p; ++p )". In this case,
85 // compilation would fail without it because the conversion to bool would
86 // be ambiguous (there are all these int types conversions...). (And adding
87 // operator unspecified_bool_type() would only makes the ambiguity worse.)
88 operator bool() const { return m_value != 0; }
89 bool operator!() const { return !((bool)*this); }
90#if (defined(__VISUALC__) && __VISUALC__ < 1400) || \
91 defined(__DIGITALMARS__) || defined(__BORLANDC__)
92 // We need this for VC++ < 8 or DigitalMars and expressions like
93 // "str[0] && *p":
94 bool operator&&(bool v) const { return (bool)*this && v; }
95#endif
96
97 // Assignment operators:
98 wxUniChar& operator=(const wxUniChar& c) { m_value = c.m_value; return *this; }
99 wxUniChar& operator=(char c) { m_value = From8bit(c); return *this; }
100 wxUniChar& operator=(wchar_t c) { m_value = c; return *this; }
436bb9f5
VZ
101#ifdef wxWINT_T_IS_SEPARATE_TYPE
102 wxUniChar& operator=(wint_t c) { m_value = c; return *this; }
103#endif
e3f6cbd9 104
fb52c2b6 105 // Comparison operators:
e3f6cbd9 106
fb52c2b6 107 // define the given comparison operator for all the types
98c4eb39 108#define wxDEFINE_UNICHAR_OPERATOR(op) \
fb52c2b6
VZ
109 bool operator op(const wxUniChar& c) const { return m_value op c.m_value; }\
110 bool operator op(char c) const { return m_value op From8bit(c); } \
436bb9f5
VZ
111 bool operator op(wchar_t c) const { return m_value op (value_type)c; } \
112 wxIF_WINT_T_TYPE( bool operator op(wint_t c) const { return m_value op (value_type)c; } )
e3f6cbd9 113
fb52c2b6 114 wxFOR_ALL_COMPARISONS(wxDEFINE_UNICHAR_OPERATOR)
e3f6cbd9 115
fb52c2b6 116#undef wxDEFINE_UNICHAR_OPERATOR
e3f6cbd9 117
fb52c2b6 118 // this is needed for expressions like 'Z'-c
e3f6cbd9
VS
119 int operator-(const wxUniChar& c) const { return m_value - c.m_value; }
120 int operator-(char c) const { return m_value - From8bit(c); }
d1b7ed67 121 int operator-(wchar_t c) const { return m_value - (value_type)c; }
436bb9f5
VZ
122#ifdef wxWINT_T_IS_SEPARATE_TYPE
123 int operator-(wint_t c) const { return m_value - (value_type)c; }
124#endif
e3f6cbd9
VS
125
126private:
d1b7ed67
VS
127 static value_type From8bit(char c);
128 static char To8bit(value_type c);
e3f6cbd9
VS
129
130private:
d1b7ed67 131 value_type m_value;
e3f6cbd9
VS
132};
133
134
135// Writeable reference to a character in wxString.
136//
137// This class can be used in the same way wxChar is used, except that changing
138// its value updates the underlying string object.
139class WXDLLIMPEXP_BASE wxUniCharRef
140{
141private:
a962cdf4
VS
142 typedef wxStringImpl::iterator iterator;
143
e3f6cbd9 144 // create the reference
a962cdf4 145 wxUniCharRef(iterator pos) : m_pos(pos) {}
e3f6cbd9
VS
146
147public:
148 // NB: we have to make this public, because we don't have wxString
149 // declaration available here and so can't declare wxString::iterator
150 // as friend; so at least don't use a ctor but a static function
151 // that must be used explicitly (this is more than using 'explicit'
152 // keyword on ctor!):
a962cdf4 153 static wxUniCharRef CreateForString(iterator pos)
e3f6cbd9
VS
154 { return wxUniCharRef(pos); }
155
d1b7ed67 156 wxUniChar::value_type GetValue() const { return UniChar().GetValue(); }
e3f6cbd9
VS
157
158 // Assignment operators:
159 wxUniCharRef& operator=(const wxUniCharRef& c)
160 {
161 *m_pos = *c.m_pos;
162 return *this;
163 };
164
165 wxUniCharRef& operator=(const wxUniChar& c)
166 {
167 *m_pos = c;
168 return *this;
169 };
170
171 wxUniCharRef& operator=(char c) { return *this = wxUniChar(c); }
172 wxUniCharRef& operator=(wchar_t c) { return *this = wxUniChar(c); }
436bb9f5
VZ
173#ifdef wxWINT_T_IS_SEPARATE_TYPE
174 wxUniCharRef& operator=(wint_t c) { return *this = wxUniChar(c); }
175#endif
e3f6cbd9 176
2a686bd3 177 // Conversions to the same types as wxUniChar is convertible too:
e3f6cbd9 178 operator char() const { return UniChar(); }
e3f6cbd9 179 operator int() const { return UniChar(); }
2a686bd3 180 operator unsigned char() const { return UniChar(); }
436bb9f5
VZ
181 operator wchar_t() const { return UniChar(); }
182#ifdef wxWINT_T_IS_SEPARATE_TYPE
c961c0cf
VZ
183 operator wint_t() const { return UniChar(); }
184#endif
e3f6cbd9
VS
185
186 // see wxUniChar::operator bool etc. for explanation
187 operator bool() const { return (bool)UniChar(); }
188 bool operator!() const { return !UniChar(); }
189#if (defined(__VISUALC__) && __VISUALC__ < 1400) || \
190 defined(__DIGITALMARS__) || defined(__BORLANDC__)
191 bool operator&&(bool v) const { return UniChar() && v; }
192#endif
193
fb52c2b6 194 // Comparison operators:
98c4eb39 195#define wxDEFINE_UNICHARREF_OPERATOR(op) \
fb52c2b6
VZ
196 bool operator op(const wxUniCharRef& c) const { return UniChar() op c.UniChar(); }\
197 bool operator op(const wxUniChar& c) const { return UniChar() op c; } \
198 bool operator op(char c) const { return UniChar() op c; } \
436bb9f5
VZ
199 bool operator op(wchar_t c) const { return UniChar() op c; } \
200 wxIF_WINT_T_TYPE( bool operator op(wint_t c) const { return UniChar() op c; } )
e3f6cbd9 201
fb52c2b6 202 wxFOR_ALL_COMPARISONS(wxDEFINE_UNICHARREF_OPERATOR)
e3f6cbd9 203
fb52c2b6 204#undef wxDEFINE_UNICHARREF_OPERATOR
e3f6cbd9
VS
205
206 // for expressions like c-'A':
207 int operator-(const wxUniCharRef& c) const { return UniChar() - c.UniChar(); }
208 int operator-(const wxUniChar& c) const { return UniChar() - c; }
209 int operator-(char c) const { return UniChar() - c; }
210 int operator-(wchar_t c) const { return UniChar() - c; }
436bb9f5
VZ
211#ifdef wxWINT_T_IS_SEPARATE_TYPE
212 int operator-(wint_t c) const { return UniChar() - c; }
213#endif
e3f6cbd9
VS
214
215private:
216 wxUniChar UniChar() const { return *m_pos; }
217 friend class WXDLLIMPEXP_BASE wxUniChar;
218
219private:
220 // pointer to the character in string
a962cdf4 221 iterator m_pos;
e3f6cbd9
VS
222};
223
224inline wxUniChar::wxUniChar(const wxUniCharRef& c)
225{
226 m_value = c.UniChar().m_value;
227}
228
fb52c2b6
VZ
229// Comparison operators for the case when wxUniChar(Ref) is the second operand
230// implemented in terms of member comparison functions
e3f6cbd9 231
fb52c2b6 232#define wxCMP_REVERSE(c1, c2, op) c2 op c1
e3f6cbd9 233
fb52c2b6
VZ
234wxDEFINE_COMPARISONS(char, const wxUniChar&, wxCMP_REVERSE)
235wxDEFINE_COMPARISONS(char, const wxUniCharRef&, wxCMP_REVERSE)
e3f6cbd9 236
fb52c2b6
VZ
237wxDEFINE_COMPARISONS(wchar_t, const wxUniChar&, wxCMP_REVERSE)
238wxDEFINE_COMPARISONS(wchar_t, const wxUniCharRef&, wxCMP_REVERSE)
e3f6cbd9 239
436bb9f5
VZ
240#ifdef wxWINT_T_IS_SEPARATE_TYPE
241wxDEFINE_COMPARISONS(wint_t, const wxUniChar&, wxCMP_REVERSE)
242wxDEFINE_COMPARISONS(wint_t, const wxUniCharRef&, wxCMP_REVERSE)
243#endif
244
fb52c2b6 245wxDEFINE_COMPARISONS(const wxUniChar&, const wxUniCharRef&, wxCMP_REVERSE)
e3f6cbd9 246
fb52c2b6 247#undef wxCMP_REVERSE
e3f6cbd9
VS
248
249// for expressions like c-'A':
250inline int operator-(char c1, const wxUniCharRef& c2) { return -(c2 - c1); }
e3f6cbd9 251inline int operator-(const wxUniChar& c1, const wxUniCharRef& c2) { return -(c2 - c1); }
436bb9f5
VZ
252inline int operator-(wchar_t c1, const wxUniCharRef& c2) { return -(c2 - c1); }
253#ifdef wxWINT_T_IS_SEPARATE_TYPE
254inline int operator-(wint_t c1, const wxUniCharRef& c2) { return -(c2 - c1); }
255#endif
e3f6cbd9
VS
256
257#endif /* _WX_UNICHAR_H_ */