]>
Commit | Line | Data |
---|---|---|
8cb50e4b | 1 | ///////////////////////////////////////////////////////////////////////////// |
43f06cfd | 2 | // Name: wx/variant.h |
8cb50e4b JS |
3 | // Purpose: wxVariant class, container for any type |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 10/09/98 | |
7 | // RCS-ID: $Id$ | |
99d80019 | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
8cb50e4b JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_VARIANT_H_ | |
13 | #define _WX_VARIANT_H_ | |
14 | ||
8cb50e4b | 15 | #include "wx/defs.h" |
d5dc103f VZ |
16 | |
17 | #if wxUSE_VARIANT | |
18 | ||
8cb50e4b JS |
19 | #include "wx/object.h" |
20 | #include "wx/string.h" | |
4c3ebca9 | 21 | #include "wx/arrstr.h" |
8cb50e4b | 22 | #include "wx/list.h" |
bde626ce | 23 | #include "wx/cpp.h" |
4e00b908 | 24 | #include "wx/longlong.h" |
8cb50e4b | 25 | |
e2b87f38 VZ |
26 | #if wxUSE_DATETIME |
27 | #include "wx/datetime.h" | |
28 | #endif // wxUSE_DATETIME | |
edca7a82 | 29 | |
65f19af1 | 30 | #include "wx/iosfwrap.h" |
8cb50e4b | 31 | |
0bf14ab8 JS |
32 | class wxAny; |
33 | ||
8cb50e4b JS |
34 | /* |
35 | * wxVariantData stores the actual data in a wxVariant object, | |
36 | * to allow it to store any type of data. | |
37 | * Derive from this to provide custom data handling. | |
38 | * | |
2562c823 RR |
39 | * NB: When you construct a wxVariantData, it will have refcount |
40 | * of one. Refcount will not be further increased when | |
41 | * it is passed to wxVariant. This simulates old common | |
42 | * scenario where wxVariant took ownership of wxVariantData | |
43 | * passed to it. | |
44 | * If you create wxVariantData for other reasons than passing | |
45 | * it to wxVariant, technically you are not required to call | |
46 | * DecRef() before deleting it. | |
47 | * | |
8cb50e4b JS |
48 | * TODO: in order to replace wxPropertyValue, we would need |
49 | * to consider adding constructors that take pointers to C++ variables, | |
50 | * or removing that functionality from the wxProperty library. | |
51 | * Essentially wxPropertyValue takes on some of the wxValidator functionality | |
52 | * by storing pointers and not just actual values, allowing update of C++ data | |
53 | * to be handled automatically. Perhaps there's another way of doing this without | |
54 | * overloading wxVariant with unnecessary functionality. | |
55 | */ | |
56 | ||
cf25a599 | 57 | class WXDLLIMPEXP_BASE wxVariantData : public wxObjectRefData |
8cb50e4b | 58 | { |
2562c823 | 59 | friend class wxVariant; |
8cb50e4b | 60 | public: |
92ffc98a | 61 | wxVariantData() { } |
8cb50e4b | 62 | |
2562c823 | 63 | // Override these to provide common functionality |
8cb50e4b | 64 | virtual bool Eq(wxVariantData& data) const = 0; |
07502d73 | 65 | |
38830220 | 66 | #if wxUSE_STD_IOSTREAM |
07502d73 | 67 | virtual bool Write(wxSTD ostream& WXUNUSED(str)) const { return false; } |
38830220 | 68 | #endif |
07502d73 | 69 | virtual bool Write(wxString& WXUNUSED(str)) const { return false; } |
38830220 | 70 | #if wxUSE_STD_IOSTREAM |
07502d73 | 71 | virtual bool Read(wxSTD istream& WXUNUSED(str)) { return false; } |
38830220 | 72 | #endif |
07502d73 | 73 | virtual bool Read(wxString& WXUNUSED(str)) { return false; } |
8cb50e4b JS |
74 | // What type is it? Return a string name. |
75 | virtual wxString GetType() const = 0; | |
cf6ae290 RG |
76 | // If it based on wxObject return the ClassInfo. |
77 | virtual wxClassInfo* GetValueClassInfo() { return NULL; } | |
2562c823 | 78 | |
cf25a599 | 79 | // Implement this to make wxVariant::UnShare work. Returns |
c8058a09 JS |
80 | // a copy of the data. |
81 | virtual wxVariantData* Clone() const { return NULL; } | |
82 | ||
0bf14ab8 JS |
83 | #if wxUSE_ANY |
84 | // Converts value to wxAny, if possible. Return true if successful. | |
85 | virtual bool GetAsAny(wxAny* WXUNUSED(any)) const { return false; } | |
86 | #endif | |
87 | ||
2562c823 RR |
88 | protected: |
89 | // Protected dtor should make some incompatible code | |
90 | // break more louder. That is, they should do data->DecRef() | |
91 | // instead of delete data. | |
92 | virtual ~wxVariantData() { } | |
8cb50e4b JS |
93 | }; |
94 | ||
95 | /* | |
96 | * wxVariant can store any kind of data, but has some basic types | |
97 | * built in. | |
8cb50e4b | 98 | */ |
c8058a09 | 99 | |
7e6b4780 RR |
100 | class WXDLLIMPEXP_FWD_BASE wxVariant; |
101 | ||
102 | WX_DECLARE_LIST_WITH_DECL(wxVariant, wxVariantList, class WXDLLIMPEXP_BASE); | |
8cb50e4b | 103 | |
bddd7a8d | 104 | class WXDLLIMPEXP_BASE wxVariant: public wxObject |
8cb50e4b | 105 | { |
8cb50e4b | 106 | public: |
8cb50e4b | 107 | wxVariant(); |
07502d73 | 108 | |
8cb50e4b | 109 | wxVariant(const wxVariant& variant); |
2562c823 | 110 | wxVariant(wxVariantData* data, const wxString& name = wxEmptyString); |
0bf14ab8 JS |
111 | #if wxUSE_ANY |
112 | wxVariant(const wxAny& any); | |
113 | #endif | |
d3c7fc99 | 114 | virtual ~wxVariant(); |
8cb50e4b | 115 | |
2562c823 | 116 | // generic assignment |
8cb50e4b JS |
117 | void operator= (const wxVariant& variant); |
118 | ||
119 | // Assignment using data, e.g. | |
120 | // myVariant = new wxStringVariantData("hello"); | |
121 | void operator= (wxVariantData* variantData); | |
07502d73 | 122 | |
8cb50e4b JS |
123 | bool operator== (const wxVariant& variant) const; |
124 | bool operator!= (const wxVariant& variant) const; | |
125 | ||
2562c823 RR |
126 | // Sets/gets name |
127 | inline void SetName(const wxString& name) { m_name = name; } | |
128 | inline const wxString& GetName() const { return m_name; } | |
129 | ||
130 | // Tests whether there is data | |
07502d73 | 131 | bool IsNull() const; |
2562c823 RR |
132 | |
133 | // For compatibility with wxWidgets <= 2.6, this doesn't increase | |
134 | // reference count. | |
cf25a599 JS |
135 | wxVariantData* GetData() const |
136 | { | |
137 | return (wxVariantData*) m_refData; | |
138 | } | |
2562c823 RR |
139 | void SetData(wxVariantData* data) ; |
140 | ||
141 | // make a 'clone' of the object | |
cf25a599 | 142 | void Ref(const wxVariant& clone) { wxObject::Ref(clone); } |
2562c823 | 143 | |
c8058a09 JS |
144 | // ensure that the data is exclusive to this variant, and not shared |
145 | bool Unshare(); | |
146 | ||
2562c823 RR |
147 | // Make NULL (i.e. delete the data) |
148 | void MakeNull(); | |
07502d73 | 149 | |
2562c823 RR |
150 | // Delete data and name |
151 | void Clear(); | |
07502d73 | 152 | |
2562c823 RR |
153 | // Returns a string representing the type of the variant, |
154 | // e.g. "string", "bool", "stringlist", "list", "double", "long" | |
155 | wxString GetType() const; | |
156 | ||
157 | bool IsType(const wxString& type) const; | |
158 | bool IsValueKindOf(const wxClassInfo* type) const; | |
159 | ||
07502d73 | 160 | // write contents to a string (e.g. for debugging) |
2562c823 | 161 | wxString MakeString() const; |
07502d73 | 162 | |
0bf14ab8 JS |
163 | #if wxUSE_ANY |
164 | wxAny GetAny() const; | |
165 | #endif | |
166 | ||
2562c823 RR |
167 | // double |
168 | wxVariant(double val, const wxString& name = wxEmptyString); | |
8cb50e4b JS |
169 | bool operator== (double value) const; |
170 | bool operator!= (double value) const; | |
171 | void operator= (double value) ; | |
2562c823 RR |
172 | inline operator double () const { return GetDouble(); } |
173 | inline double GetReal() const { return GetDouble(); } | |
174 | double GetDouble() const; | |
07502d73 | 175 | |
2562c823 RR |
176 | // long |
177 | wxVariant(long val, const wxString& name = wxEmptyString); | |
178 | wxVariant(int val, const wxString& name = wxEmptyString); | |
179 | wxVariant(short val, const wxString& name = wxEmptyString); | |
8cb50e4b JS |
180 | bool operator== (long value) const; |
181 | bool operator!= (long value) const; | |
182 | void operator= (long value) ; | |
2562c823 RR |
183 | inline operator long () const { return GetLong(); } |
184 | inline long GetInteger() const { return GetLong(); } | |
185 | long GetLong() const; | |
07502d73 WS |
186 | |
187 | // bool | |
2562c823 | 188 | wxVariant(bool val, const wxString& name = wxEmptyString); |
8cb50e4b JS |
189 | bool operator== (bool value) const; |
190 | bool operator!= (bool value) const; | |
191 | void operator= (bool value) ; | |
2562c823 RR |
192 | inline operator bool () const { return GetBool(); } |
193 | bool GetBool() const ; | |
2562c823 RR |
194 | |
195 | // wxDateTime | |
196 | #if wxUSE_DATETIME | |
07502d73 | 197 | wxVariant(const wxDateTime& val, const wxString& name = wxEmptyString); |
2562c823 RR |
198 | bool operator== (const wxDateTime& value) const; |
199 | bool operator!= (const wxDateTime& value) const; | |
200 | void operator= (const wxDateTime& value) ; | |
2562c823 RR |
201 | inline operator wxDateTime () const { return GetDateTime(); } |
202 | wxDateTime GetDateTime() const; | |
57493f9f | 203 | #endif |
2562c823 RR |
204 | |
205 | // wxString | |
206 | wxVariant(const wxString& val, const wxString& name = wxEmptyString); | |
af717fa8 VS |
207 | // these overloads are necessary to prevent the compiler from using bool |
208 | // version instead of wxString one: | |
209 | wxVariant(const char* val, const wxString& name = wxEmptyString); | |
210 | wxVariant(const wchar_t* val, const wxString& name = wxEmptyString); | |
211 | wxVariant(const wxCStrData& val, const wxString& name = wxEmptyString); | |
de4983f3 VS |
212 | wxVariant(const wxScopedCharBuffer& val, const wxString& name = wxEmptyString); |
213 | wxVariant(const wxScopedWCharBuffer& val, const wxString& name = wxEmptyString); | |
af717fa8 | 214 | |
8cb50e4b JS |
215 | bool operator== (const wxString& value) const; |
216 | bool operator!= (const wxString& value) const; | |
af717fa8 VS |
217 | wxVariant& operator=(const wxString& value); |
218 | // these overloads are necessary to prevent the compiler from using bool | |
219 | // version instead of wxString one: | |
220 | wxVariant& operator=(const char* value) | |
221 | { return *this = wxString(value); } | |
222 | wxVariant& operator=(const wchar_t* value) | |
223 | { return *this = wxString(value); } | |
224 | wxVariant& operator=(const wxCStrData& value) | |
225 | { return *this = value.AsString(); } | |
226 | template<typename T> | |
de4983f3 | 227 | wxVariant& operator=(const wxScopedCharTypeBuffer<T>& value) |
af717fa8 VS |
228 | { return *this = value.data(); } |
229 | ||
2562c823 RR |
230 | inline operator wxString () const { return MakeString(); } |
231 | wxString GetString() const; | |
232 | ||
28144838 VS |
233 | #if wxUSE_STD_STRING |
234 | wxVariant(const std::string& val, const wxString& name = wxEmptyString); | |
235 | bool operator==(const std::string& value) const | |
236 | { return operator==(wxString(value)); } | |
237 | bool operator!=(const std::string& value) const | |
238 | { return operator!=(wxString(value)); } | |
239 | wxVariant& operator=(const std::string& value) | |
240 | { return operator=(wxString(value)); } | |
241 | operator std::string() const { return (operator wxString()).ToStdString(); } | |
242 | ||
243 | wxVariant(const wxStdWideString& val, const wxString& name = wxEmptyString); | |
244 | bool operator==(const wxStdWideString& value) const | |
245 | { return operator==(wxString(value)); } | |
246 | bool operator!=(const wxStdWideString& value) const | |
247 | { return operator!=(wxString(value)); } | |
248 | wxVariant& operator=(const wxStdWideString& value) | |
249 | { return operator=(wxString(value)); } | |
250 | operator wxStdWideString() const { return (operator wxString()).ToStdWstring(); } | |
251 | #endif // wxUSE_STD_STRING | |
252 | ||
af717fa8 VS |
253 | // wxUniChar |
254 | wxVariant(const wxUniChar& val, const wxString& name = wxEmptyString); | |
255 | wxVariant(const wxUniCharRef& val, const wxString& name = wxEmptyString); | |
256 | wxVariant(char val, const wxString& name = wxEmptyString); | |
257 | wxVariant(wchar_t val, const wxString& name = wxEmptyString); | |
258 | bool operator==(const wxUniChar& value) const; | |
259 | bool operator==(const wxUniCharRef& value) const { return *this == wxUniChar(value); } | |
260 | bool operator==(char value) const { return *this == wxUniChar(value); } | |
261 | bool operator==(wchar_t value) const { return *this == wxUniChar(value); } | |
262 | bool operator!=(const wxUniChar& value) const { return !(*this == value); } | |
263 | bool operator!=(const wxUniCharRef& value) const { return !(*this == value); } | |
264 | bool operator!=(char value) const { return !(*this == value); } | |
265 | bool operator!=(wchar_t value) const { return !(*this == value); } | |
266 | wxVariant& operator=(const wxUniChar& value); | |
267 | wxVariant& operator=(const wxUniCharRef& value) { return *this = wxUniChar(value); } | |
268 | wxVariant& operator=(char value) { return *this = wxUniChar(value); } | |
269 | wxVariant& operator=(wchar_t value) { return *this = wxUniChar(value); } | |
270 | operator wxUniChar() const { return GetChar(); } | |
271 | operator char() const { return GetChar(); } | |
272 | operator wchar_t() const { return GetChar(); } | |
273 | wxUniChar GetChar() const; | |
07502d73 | 274 | |
2562c823 RR |
275 | // wxArrayString |
276 | wxVariant(const wxArrayString& val, const wxString& name = wxEmptyString); | |
277 | bool operator== (const wxArrayString& value) const; | |
278 | bool operator!= (const wxArrayString& value) const; | |
279 | void operator= (const wxArrayString& value); | |
af717fa8 | 280 | operator wxArrayString () const { return GetArrayString(); } |
2562c823 RR |
281 | wxArrayString GetArrayString() const; |
282 | ||
283 | // void* | |
284 | wxVariant(void* ptr, const wxString& name = wxEmptyString); | |
285 | bool operator== (void* value) const; | |
286 | bool operator!= (void* value) const; | |
287 | void operator= (void* value); | |
af717fa8 | 288 | operator void* () const { return GetVoidPtr(); } |
2562c823 RR |
289 | void* GetVoidPtr() const; |
290 | ||
291 | // wxObject* | |
292 | wxVariant(wxObject* ptr, const wxString& name = wxEmptyString); | |
293 | bool operator== (wxObject* value) const; | |
294 | bool operator!= (wxObject* value) const; | |
295 | void operator= (wxObject* value); | |
296 | wxObject* GetWxObjectPtr() const; | |
297 | ||
4e00b908 JS |
298 | #if wxUSE_LONGLONG |
299 | // wxLongLong | |
300 | wxVariant(wxLongLong, const wxString& name = wxEmptyString); | |
301 | bool operator==(wxLongLong value) const; | |
302 | bool operator!=(wxLongLong value) const; | |
303 | void operator=(wxLongLong value); | |
304 | operator wxLongLong() const { return GetLongLong(); } | |
305 | wxLongLong GetLongLong() const; | |
306 | ||
307 | // wxULongLong | |
308 | wxVariant(wxULongLong, const wxString& name = wxEmptyString); | |
309 | bool operator==(wxULongLong value) const; | |
310 | bool operator!=(wxULongLong value) const; | |
311 | void operator=(wxULongLong value); | |
312 | operator wxULongLong() const { return GetULongLong(); } | |
313 | wxULongLong GetULongLong() const; | |
314 | #endif | |
2562c823 | 315 | |
2562c823 RR |
316 | // ------------------------------ |
317 | // list operations | |
318 | // ------------------------------ | |
319 | ||
9a0a58f5 RR |
320 | wxVariant(const wxVariantList& val, const wxString& name = wxEmptyString); // List of variants |
321 | bool operator== (const wxVariantList& value) const; | |
322 | bool operator!= (const wxVariantList& value) const; | |
323 | void operator= (const wxVariantList& value) ; | |
8cb50e4b JS |
324 | // Treat a list variant as an array |
325 | wxVariant operator[] (size_t idx) const; | |
326 | wxVariant& operator[] (size_t idx) ; | |
9a0a58f5 | 327 | wxVariantList& GetList() const ; |
8cb50e4b JS |
328 | |
329 | // Return the number of elements in a list | |
43f06cfd | 330 | size_t GetCount() const; |
07502d73 | 331 | |
8cb50e4b JS |
332 | // Make empty list |
333 | void NullList(); | |
334 | ||
335 | // Append to list | |
336 | void Append(const wxVariant& value); | |
337 | ||
338 | // Insert at front of list | |
339 | void Insert(const wxVariant& value); | |
340 | ||
cab1a605 | 341 | // Returns true if the variant is a member of the list |
8cb50e4b JS |
342 | bool Member(const wxVariant& value) const; |
343 | ||
344 | // Deletes the nth element of the list | |
43f06cfd | 345 | bool Delete(size_t item); |
8cb50e4b JS |
346 | |
347 | // Clear list | |
348 | void ClearList(); | |
349 | ||
9708db20 | 350 | public: |
2562c823 | 351 | // Type conversion |
8cb50e4b JS |
352 | bool Convert(long* value) const; |
353 | bool Convert(bool* value) const; | |
354 | bool Convert(double* value) const; | |
355 | bool Convert(wxString* value) const; | |
af717fa8 VS |
356 | bool Convert(wxUniChar* value) const; |
357 | bool Convert(char* value) const; | |
358 | bool Convert(wchar_t* value) const; | |
e2b87f38 | 359 | #if wxUSE_DATETIME |
edca7a82 | 360 | bool Convert(wxDateTime* value) const; |
e2b87f38 | 361 | #endif // wxUSE_DATETIME |
4e00b908 JS |
362 | #if wxUSE_LONGLONG |
363 | bool Convert(wxLongLong* value) const; | |
364 | bool Convert(wxULongLong* value) const; | |
5eedcd5e JS |
365 | #ifdef wxLongLong_t |
366 | bool Convert(wxLongLong_t* value) const | |
367 | { | |
368 | wxLongLong temp; | |
369 | if ( !Convert(&temp) ) | |
370 | return false; | |
371 | *value = temp.GetValue(); | |
372 | return true; | |
373 | } | |
374 | bool Convert(wxULongLong_t* value) const | |
375 | { | |
376 | wxULongLong temp; | |
377 | if ( !Convert(&temp) ) | |
378 | return false; | |
379 | *value = temp.GetValue(); | |
380 | return true; | |
381 | } | |
382 | #endif // wxLongLong_t | |
4e00b908 | 383 | #endif // wxUSE_LONGLONG |
8cb50e4b JS |
384 | |
385 | // Attributes | |
386 | protected: | |
cf25a599 JS |
387 | virtual wxObjectRefData *CreateRefData() const; |
388 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; | |
389 | ||
a0a302dc | 390 | wxString m_name; |
07502d73 | 391 | |
2562c823 RR |
392 | private: |
393 | DECLARE_DYNAMIC_CLASS(wxVariant) | |
8cb50e4b JS |
394 | }; |
395 | ||
0bf14ab8 JS |
396 | |
397 | // | |
398 | // wxVariant <-> wxAny conversion code | |
399 | // | |
400 | #if wxUSE_ANY | |
401 | ||
402 | #include "wx/any.h" | |
403 | ||
404 | // In order to convert wxAny to wxVariant, we need to be able to associate | |
405 | // wxAnyValueType with a wxVariantData factory function. | |
406 | typedef wxVariantData* (*wxVariantDataFactory)(const wxAny& any); | |
407 | ||
408 | // Actual Any-to-Variant registration must be postponed to a time when all | |
409 | // global variables have been initialized. Hence this arrangement. | |
410 | // wxAnyToVariantRegistration instances are kept in global scope and | |
411 | // wxAnyValueTypeGlobals in any.cpp will use their data when the time is | |
412 | // right. | |
413 | class WXDLLIMPEXP_BASE wxAnyToVariantRegistration | |
414 | { | |
415 | public: | |
416 | wxAnyToVariantRegistration(wxVariantDataFactory factory); | |
2a227e8c | 417 | virtual ~wxAnyToVariantRegistration(); |
0bf14ab8 JS |
418 | |
419 | virtual wxAnyValueType* GetAssociatedType() = 0; | |
420 | wxVariantDataFactory GetFactory() const { return m_factory; } | |
421 | private: | |
422 | wxVariantDataFactory m_factory; | |
423 | }; | |
424 | ||
425 | template<typename T> | |
426 | class wxAnyToVariantRegistrationImpl : public wxAnyToVariantRegistration | |
427 | { | |
428 | public: | |
429 | wxAnyToVariantRegistrationImpl(wxVariantDataFactory factory) | |
430 | : wxAnyToVariantRegistration(factory) | |
431 | { | |
432 | } | |
433 | ||
434 | virtual wxAnyValueType* GetAssociatedType() | |
435 | { | |
436 | return wxAnyValueTypeImpl<T>::GetInstance(); | |
437 | } | |
438 | private: | |
439 | }; | |
440 | ||
441 | #define DECLARE_WXANY_CONVERSION() \ | |
442 | virtual bool GetAsAny(wxAny* any) const; \ | |
443 | static wxVariantData* VariantDataFactory(const wxAny& any); | |
444 | ||
153107b4 | 445 | #define _REGISTER_WXANY_CONVERSION(T, CLASSNAME, FUNC) \ |
0bf14ab8 JS |
446 | static wxAnyToVariantRegistrationImpl<T> \ |
447 | gs_##CLASSNAME##AnyToVariantRegistration = \ | |
153107b4 JS |
448 | wxAnyToVariantRegistrationImpl<T>(&FUNC); |
449 | ||
450 | #define REGISTER_WXANY_CONVERSION(T, CLASSNAME) \ | |
451 | _REGISTER_WXANY_CONVERSION(T, CLASSNAME, CLASSNAME::VariantDataFactory) | |
0bf14ab8 JS |
452 | |
453 | #define IMPLEMENT_TRIVIAL_WXANY_CONVERSION(T, CLASSNAME) \ | |
454 | bool CLASSNAME::GetAsAny(wxAny* any) const \ | |
455 | { \ | |
456 | *any = m_value; \ | |
457 | return true; \ | |
458 | } \ | |
459 | wxVariantData* CLASSNAME::VariantDataFactory(const wxAny& any) \ | |
460 | { \ | |
461 | return new CLASSNAME(wxANY_AS(any, T)); \ | |
462 | } \ | |
463 | REGISTER_WXANY_CONVERSION(T, CLASSNAME) | |
464 | ||
0bf14ab8 JS |
465 | #else // if !wxUSE_ANY |
466 | ||
467 | #define DECLARE_WXANY_CONVERSION() | |
468 | #define REGISTER_WXANY_CONVERSION(T, CLASSNAME) | |
469 | #define IMPLEMENT_TRIVIAL_WXANY_CONVERSION(T, CLASSNAME) | |
470 | ||
471 | #endif // wxUSE_ANY/!wxUSE_ANY | |
472 | ||
473 | ||
3f90a399 | 474 | #define DECLARE_VARIANT_OBJECT(classname) \ |
bde626ce | 475 | DECLARE_VARIANT_OBJECT_EXPORTED(classname, wxEMPTY_PARAMETER_VALUE) |
07502d73 | 476 | |
6f5d7825 | 477 | #define DECLARE_VARIANT_OBJECT_EXPORTED(classname,expdecl) \ |
39a48551 VZ |
478 | expdecl classname& operator << ( classname &object, const wxVariant &variant ); \ |
479 | expdecl wxVariant& operator << ( wxVariant &variant, const classname &object ); | |
3f90a399 RR |
480 | |
481 | #define IMPLEMENT_VARIANT_OBJECT(classname) \ | |
bde626ce | 482 | IMPLEMENT_VARIANT_OBJECT_EXPORTED(classname, wxEMPTY_PARAMETER_VALUE) |
6f5d7825 | 483 | |
55ccdb93 | 484 | #define IMPLEMENT_VARIANT_OBJECT_EXPORTED_NO_EQ(classname,expdecl) \ |
3f90a399 RR |
485 | class classname##VariantData: public wxVariantData \ |
486 | { \ | |
487 | public:\ | |
488 | classname##VariantData() {} \ | |
489 | classname##VariantData( const classname &value ) { m_value = value; } \ | |
490 | \ | |
491 | classname &GetValue() { return m_value; } \ | |
492 | \ | |
493 | virtual bool Eq(wxVariantData& data) const; \ | |
494 | \ | |
495 | virtual wxString GetType() const; \ | |
496 | virtual wxClassInfo* GetValueClassInfo(); \ | |
c8058a09 JS |
497 | \ |
498 | virtual wxVariantData* Clone() const { return new classname##VariantData(m_value); } \ | |
3f90a399 | 499 | \ |
0bf14ab8 | 500 | DECLARE_WXANY_CONVERSION() \ |
3f90a399 RR |
501 | protected:\ |
502 | classname m_value; \ | |
3f90a399 RR |
503 | };\ |
504 | \ | |
3f90a399 RR |
505 | wxString classname##VariantData::GetType() const\ |
506 | {\ | |
507 | return m_value.GetClassInfo()->GetClassName();\ | |
508 | }\ | |
509 | \ | |
510 | wxClassInfo* classname##VariantData::GetValueClassInfo()\ | |
511 | {\ | |
512 | return m_value.GetClassInfo();\ | |
513 | }\ | |
514 | \ | |
39a48551 | 515 | expdecl classname& operator << ( classname &value, const wxVariant &variant )\ |
3f90a399 | 516 | {\ |
3586d10f | 517 | wxASSERT( variant.GetType() == #classname );\ |
3f90a399 RR |
518 | \ |
519 | classname##VariantData *data = (classname##VariantData*) variant.GetData();\ | |
520 | value = data->GetValue();\ | |
521 | return value;\ | |
522 | }\ | |
523 | \ | |
39a48551 | 524 | expdecl wxVariant& operator << ( wxVariant &variant, const classname &value )\ |
3f90a399 RR |
525 | {\ |
526 | classname##VariantData *data = new classname##VariantData( value );\ | |
527 | variant.SetData( data );\ | |
528 | return variant;\ | |
0bf14ab8 JS |
529 | } \ |
530 | IMPLEMENT_TRIVIAL_WXANY_CONVERSION(classname, classname##VariantData) | |
3f90a399 | 531 | |
01df01eb VZ |
532 | // implements a wxVariantData-derived class using for the Eq() method the |
533 | // operator== which must have been provided by "classname" | |
55ccdb93 | 534 | #define IMPLEMENT_VARIANT_OBJECT_EXPORTED(classname,expdecl) \ |
5ffa72f4 | 535 | IMPLEMENT_VARIANT_OBJECT_EXPORTED_NO_EQ(classname,wxEMPTY_PARAMETER_VALUE expdecl) \ |
55ccdb93 VZ |
536 | \ |
537 | bool classname##VariantData::Eq(wxVariantData& data) const \ | |
538 | {\ | |
3586d10f | 539 | wxASSERT( GetType() == data.GetType() );\ |
55ccdb93 VZ |
540 | \ |
541 | classname##VariantData & otherData = (classname##VariantData &) data;\ | |
542 | \ | |
543 | return otherData.m_value == m_value;\ | |
544 | }\ | |
545 | ||
546 | ||
547 | // implements a wxVariantData-derived class using for the Eq() method a shallow | |
a3ab1c18 | 548 | // comparison (through wxObject::IsSameAs function) |
01df01eb VZ |
549 | #define IMPLEMENT_VARIANT_OBJECT_SHALLOWCMP(classname) \ |
550 | IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(classname, wxEMPTY_PARAMETER_VALUE) | |
55ccdb93 | 551 | #define IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(classname,expdecl) \ |
5ffa72f4 | 552 | IMPLEMENT_VARIANT_OBJECT_EXPORTED_NO_EQ(classname,wxEMPTY_PARAMETER_VALUE expdecl) \ |
55ccdb93 VZ |
553 | \ |
554 | bool classname##VariantData::Eq(wxVariantData& data) const \ | |
555 | {\ | |
3586d10f | 556 | wxASSERT( GetType() == data.GetType() );\ |
55ccdb93 VZ |
557 | \ |
558 | classname##VariantData & otherData = (classname##VariantData &) data;\ | |
559 | \ | |
a3ab1c18 | 560 | return (otherData.m_value.IsSameAs(m_value));\ |
55ccdb93 VZ |
561 | }\ |
562 | ||
563 | ||
3f90a399 RR |
564 | // Since we want type safety wxVariant we need to fetch and dynamic_cast |
565 | // in a seemingly safe way so the compiler can check, so we define | |
566 | // a dynamic_cast /wxDynamicCast analogue. | |
cf6ae290 RG |
567 | |
568 | #define wxGetVariantCast(var,classname) \ | |
cab1a605 WS |
569 | ((classname*)(var.IsValueKindOf(&classname::ms_classInfo) ?\ |
570 | var.GetWxObjectPtr() : NULL)); | |
cf6ae290 | 571 | |
c8058a09 JS |
572 | // Replacement for using wxDynamicCast on a wxVariantData object |
573 | #define wxDynamicCastVariantData(data, classname) dynamic_cast<classname*>(data) | |
574 | ||
bddd7a8d | 575 | extern wxVariant WXDLLIMPEXP_BASE wxNullVariant; |
a0a302dc | 576 | |
d5dc103f VZ |
577 | #endif // wxUSE_VARIANT |
578 | ||
579 | #endif // _WX_VARIANT_H_ |