]> git.saurik.com Git - wxWidgets.git/blame - include/wx/variant.h
More alignment issues
[wxWidgets.git] / include / wx / variant.h
CommitLineData
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"
8cb50e4b 24
e2b87f38
VZ
25#if wxUSE_DATETIME
26 #include "wx/datetime.h"
27#endif // wxUSE_DATETIME
edca7a82
GT
28
29#if wxUSE_ODBC
30 #include "wx/db.h" // will #include sqltypes.h
31#endif //ODBC
32
65f19af1 33#include "wx/iosfwrap.h"
8cb50e4b
JS
34
35/*
36 * wxVariantData stores the actual data in a wxVariant object,
37 * to allow it to store any type of data.
38 * Derive from this to provide custom data handling.
39 *
2562c823
RR
40 * NB: To prevent addition of extra vtbl pointer to wxVariantData,
41 * we don't multiple-inherit from wxObjectRefData. Instead,
42 * we simply replicate the wxObject ref-counting scheme.
43 *
44 * NB: When you construct a wxVariantData, it will have refcount
45 * of one. Refcount will not be further increased when
46 * it is passed to wxVariant. This simulates old common
47 * scenario where wxVariant took ownership of wxVariantData
48 * passed to it.
49 * If you create wxVariantData for other reasons than passing
50 * it to wxVariant, technically you are not required to call
51 * DecRef() before deleting it.
52 *
8cb50e4b
JS
53 * TODO: in order to replace wxPropertyValue, we would need
54 * to consider adding constructors that take pointers to C++ variables,
55 * or removing that functionality from the wxProperty library.
56 * Essentially wxPropertyValue takes on some of the wxValidator functionality
57 * by storing pointers and not just actual values, allowing update of C++ data
58 * to be handled automatically. Perhaps there's another way of doing this without
59 * overloading wxVariant with unnecessary functionality.
60 */
61
3586d10f 62class WXDLLIMPEXP_BASE wxVariantData
8cb50e4b 63{
2562c823 64 friend class wxVariant;
8cb50e4b 65public:
3586d10f 66 wxVariantData() : m_count(1) { }
8cb50e4b 67
2562c823 68 // Override these to provide common functionality
8cb50e4b 69 virtual bool Eq(wxVariantData& data) const = 0;
07502d73 70
38830220 71#if wxUSE_STD_IOSTREAM
07502d73 72 virtual bool Write(wxSTD ostream& WXUNUSED(str)) const { return false; }
38830220 73#endif
07502d73 74 virtual bool Write(wxString& WXUNUSED(str)) const { return false; }
38830220 75#if wxUSE_STD_IOSTREAM
07502d73 76 virtual bool Read(wxSTD istream& WXUNUSED(str)) { return false; }
38830220 77#endif
07502d73 78 virtual bool Read(wxString& WXUNUSED(str)) { return false; }
8cb50e4b
JS
79 // What type is it? Return a string name.
80 virtual wxString GetType() const = 0;
cf6ae290
RG
81 // If it based on wxObject return the ClassInfo.
82 virtual wxClassInfo* GetValueClassInfo() { return NULL; }
2562c823
RR
83
84 void IncRef() { m_count++; }
85 void DecRef()
86 {
87 if ( --m_count == 0 )
88 delete this;
89 }
90
91 int GetRefCount() const { return m_count; }
92
93protected:
94 // Protected dtor should make some incompatible code
95 // break more louder. That is, they should do data->DecRef()
96 // instead of delete data.
97 virtual ~wxVariantData() { }
98
99private:
100 int m_count;
8cb50e4b
JS
101};
102
103/*
104 * wxVariant can store any kind of data, but has some basic types
105 * built in.
8cb50e4b 106 */
7e6b4780
RR
107
108class WXDLLIMPEXP_FWD_BASE wxVariant;
109
110WX_DECLARE_LIST_WITH_DECL(wxVariant, wxVariantList, class WXDLLIMPEXP_BASE);
8cb50e4b 111
bddd7a8d 112class WXDLLIMPEXP_BASE wxVariant: public wxObject
8cb50e4b 113{
8cb50e4b 114public:
8cb50e4b 115 wxVariant();
07502d73 116
8cb50e4b 117 wxVariant(const wxVariant& variant);
2562c823 118 wxVariant(wxVariantData* data, const wxString& name = wxEmptyString);
d3c7fc99 119 virtual ~wxVariant();
8cb50e4b 120
2562c823 121 // generic assignment
8cb50e4b
JS
122 void operator= (const wxVariant& variant);
123
124 // Assignment using data, e.g.
125 // myVariant = new wxStringVariantData("hello");
126 void operator= (wxVariantData* variantData);
07502d73 127
8cb50e4b
JS
128 bool operator== (const wxVariant& variant) const;
129 bool operator!= (const wxVariant& variant) const;
130
2562c823
RR
131 // Sets/gets name
132 inline void SetName(const wxString& name) { m_name = name; }
133 inline const wxString& GetName() const { return m_name; }
134
135 // Tests whether there is data
07502d73 136 bool IsNull() const;
2562c823
RR
137
138 // For compatibility with wxWidgets <= 2.6, this doesn't increase
139 // reference count.
140 wxVariantData* GetData() const { return m_data; }
141 void SetData(wxVariantData* data) ;
142
143 // make a 'clone' of the object
144 void Ref(const wxVariant& clone);
145
146 // destroy a reference
147 void UnRef();
148
149 // Make NULL (i.e. delete the data)
150 void MakeNull();
07502d73 151
2562c823
RR
152 // Delete data and name
153 void Clear();
07502d73 154
2562c823
RR
155 // Returns a string representing the type of the variant,
156 // e.g. "string", "bool", "stringlist", "list", "double", "long"
157 wxString GetType() const;
158
159 bool IsType(const wxString& type) const;
160 bool IsValueKindOf(const wxClassInfo* type) const;
161
07502d73 162 // write contents to a string (e.g. for debugging)
2562c823 163 wxString MakeString() const;
07502d73 164
2562c823
RR
165 // double
166 wxVariant(double val, const wxString& name = wxEmptyString);
8cb50e4b
JS
167 bool operator== (double value) const;
168 bool operator!= (double value) const;
169 void operator= (double value) ;
2562c823
RR
170 inline operator double () const { return GetDouble(); }
171 inline double GetReal() const { return GetDouble(); }
172 double GetDouble() const;
07502d73 173
2562c823
RR
174 // long
175 wxVariant(long val, const wxString& name = wxEmptyString);
176 wxVariant(int val, const wxString& name = wxEmptyString);
177 wxVariant(short val, const wxString& name = wxEmptyString);
8cb50e4b
JS
178 bool operator== (long value) const;
179 bool operator!= (long value) const;
180 void operator= (long value) ;
2562c823
RR
181 inline operator long () const { return GetLong(); }
182 inline long GetInteger() const { return GetLong(); }
183 long GetLong() const;
07502d73
WS
184
185 // bool
57493f9f 186#ifdef HAVE_BOOL
2562c823 187 wxVariant(bool val, const wxString& name = wxEmptyString);
8cb50e4b
JS
188 bool operator== (bool value) const;
189 bool operator!= (bool value) const;
190 void operator= (bool value) ;
2562c823
RR
191 inline operator bool () const { return GetBool(); }
192 bool GetBool() const ;
193#endif
194
195 // wxDateTime
196#if wxUSE_DATETIME
07502d73 197 wxVariant(const wxDateTime& val, const wxString& name = wxEmptyString);
2562c823
RR
198#if wxUSE_ODBC
199 wxVariant(const DATE_STRUCT* valptr, const wxString& name = wxEmptyString);
200 wxVariant(const TIME_STRUCT* valptr, const wxString& name = wxEmptyString);
201 wxVariant(const TIMESTAMP_STRUCT* valptr, const wxString& name = wxEmptyString);
202#endif
203 bool operator== (const wxDateTime& value) const;
204 bool operator!= (const wxDateTime& value) const;
205 void operator= (const wxDateTime& value) ;
206#if wxUSE_ODBC
207 void operator= (const DATE_STRUCT* value) ;
208 void operator= (const TIME_STRUCT* value) ;
209 void operator= (const TIMESTAMP_STRUCT* value) ;
210#endif
211 inline operator wxDateTime () const { return GetDateTime(); }
212 wxDateTime GetDateTime() const;
57493f9f 213#endif
2562c823
RR
214
215 // wxString
216 wxVariant(const wxString& val, const wxString& name = wxEmptyString);
af717fa8
VS
217 // these overloads are necessary to prevent the compiler from using bool
218 // version instead of wxString one:
219 wxVariant(const char* val, const wxString& name = wxEmptyString);
220 wxVariant(const wchar_t* val, const wxString& name = wxEmptyString);
221 wxVariant(const wxCStrData& val, const wxString& name = wxEmptyString);
222 wxVariant(const wxCharBuffer& val, const wxString& name = wxEmptyString);
223 wxVariant(const wxWCharBuffer& val, const wxString& name = wxEmptyString);
224
8cb50e4b
JS
225 bool operator== (const wxString& value) const;
226 bool operator!= (const wxString& value) const;
af717fa8
VS
227 wxVariant& operator=(const wxString& value);
228 // these overloads are necessary to prevent the compiler from using bool
229 // version instead of wxString one:
230 wxVariant& operator=(const char* value)
231 { return *this = wxString(value); }
232 wxVariant& operator=(const wchar_t* value)
233 { return *this = wxString(value); }
234 wxVariant& operator=(const wxCStrData& value)
235 { return *this = value.AsString(); }
236 template<typename T>
237 wxVariant& operator=(const wxCharTypeBuffer<T>& value)
238 { return *this = value.data(); }
239
2562c823
RR
240 inline operator wxString () const { return MakeString(); }
241 wxString GetString() const;
242
af717fa8
VS
243 // wxUniChar
244 wxVariant(const wxUniChar& val, const wxString& name = wxEmptyString);
245 wxVariant(const wxUniCharRef& val, const wxString& name = wxEmptyString);
246 wxVariant(char val, const wxString& name = wxEmptyString);
247 wxVariant(wchar_t val, const wxString& name = wxEmptyString);
248 bool operator==(const wxUniChar& value) const;
249 bool operator==(const wxUniCharRef& value) const { return *this == wxUniChar(value); }
250 bool operator==(char value) const { return *this == wxUniChar(value); }
251 bool operator==(wchar_t value) const { return *this == wxUniChar(value); }
252 bool operator!=(const wxUniChar& value) const { return !(*this == value); }
253 bool operator!=(const wxUniCharRef& value) const { return !(*this == value); }
254 bool operator!=(char value) const { return !(*this == value); }
255 bool operator!=(wchar_t value) const { return !(*this == value); }
256 wxVariant& operator=(const wxUniChar& value);
257 wxVariant& operator=(const wxUniCharRef& value) { return *this = wxUniChar(value); }
258 wxVariant& operator=(char value) { return *this = wxUniChar(value); }
259 wxVariant& operator=(wchar_t value) { return *this = wxUniChar(value); }
260 operator wxUniChar() const { return GetChar(); }
261 operator char() const { return GetChar(); }
262 operator wchar_t() const { return GetChar(); }
263 wxUniChar GetChar() const;
07502d73 264
2562c823
RR
265 // wxArrayString
266 wxVariant(const wxArrayString& val, const wxString& name = wxEmptyString);
267 bool operator== (const wxArrayString& value) const;
268 bool operator!= (const wxArrayString& value) const;
269 void operator= (const wxArrayString& value);
af717fa8 270 operator wxArrayString () const { return GetArrayString(); }
2562c823
RR
271 wxArrayString GetArrayString() const;
272
273 // void*
274 wxVariant(void* ptr, const wxString& name = wxEmptyString);
275 bool operator== (void* value) const;
276 bool operator!= (void* value) const;
277 void operator= (void* value);
af717fa8 278 operator void* () const { return GetVoidPtr(); }
2562c823
RR
279 void* GetVoidPtr() const;
280
281 // wxObject*
282 wxVariant(wxObject* ptr, const wxString& name = wxEmptyString);
283 bool operator== (wxObject* value) const;
284 bool operator!= (wxObject* value) const;
285 void operator= (wxObject* value);
286 wxObject* GetWxObjectPtr() const;
287
288
2562c823
RR
289 // ------------------------------
290 // list operations
291 // ------------------------------
292
9a0a58f5
RR
293 wxVariant(const wxVariantList& val, const wxString& name = wxEmptyString); // List of variants
294 bool operator== (const wxVariantList& value) const;
295 bool operator!= (const wxVariantList& value) const;
296 void operator= (const wxVariantList& value) ;
8cb50e4b
JS
297 // Treat a list variant as an array
298 wxVariant operator[] (size_t idx) const;
299 wxVariant& operator[] (size_t idx) ;
9a0a58f5 300 wxVariantList& GetList() const ;
8cb50e4b
JS
301
302 // Return the number of elements in a list
43f06cfd 303 size_t GetCount() const;
07502d73 304
8cb50e4b
JS
305 // Make empty list
306 void NullList();
307
308 // Append to list
309 void Append(const wxVariant& value);
310
311 // Insert at front of list
312 void Insert(const wxVariant& value);
313
cab1a605 314 // Returns true if the variant is a member of the list
8cb50e4b
JS
315 bool Member(const wxVariant& value) const;
316
317 // Deletes the nth element of the list
43f06cfd 318 bool Delete(size_t item);
8cb50e4b
JS
319
320 // Clear list
321 void ClearList();
322
9708db20 323public:
2562c823 324 // Type conversion
8cb50e4b
JS
325 bool Convert(long* value) const;
326 bool Convert(bool* value) const;
327 bool Convert(double* value) const;
328 bool Convert(wxString* value) const;
af717fa8
VS
329 bool Convert(wxUniChar* value) const;
330 bool Convert(char* value) const;
331 bool Convert(wchar_t* value) const;
e2b87f38 332#if wxUSE_DATETIME
edca7a82 333 bool Convert(wxDateTime* value) const;
e2b87f38 334#endif // wxUSE_DATETIME
8cb50e4b
JS
335
336// Attributes
337protected:
338 wxVariantData* m_data;
a0a302dc 339 wxString m_name;
07502d73 340
2562c823
RR
341private:
342 DECLARE_DYNAMIC_CLASS(wxVariant)
8cb50e4b
JS
343};
344
3f90a399 345#define DECLARE_VARIANT_OBJECT(classname) \
bde626ce 346 DECLARE_VARIANT_OBJECT_EXPORTED(classname, wxEMPTY_PARAMETER_VALUE)
07502d73 347
6f5d7825 348#define DECLARE_VARIANT_OBJECT_EXPORTED(classname,expdecl) \
39a48551
VZ
349expdecl classname& operator << ( classname &object, const wxVariant &variant ); \
350expdecl wxVariant& operator << ( wxVariant &variant, const classname &object );
3f90a399
RR
351
352#define IMPLEMENT_VARIANT_OBJECT(classname) \
bde626ce 353 IMPLEMENT_VARIANT_OBJECT_EXPORTED(classname, wxEMPTY_PARAMETER_VALUE)
6f5d7825 354
55ccdb93 355#define IMPLEMENT_VARIANT_OBJECT_EXPORTED_NO_EQ(classname,expdecl) \
3f90a399
RR
356class classname##VariantData: public wxVariantData \
357{ \
358public:\
359 classname##VariantData() {} \
360 classname##VariantData( const classname &value ) { m_value = value; } \
361\
362 classname &GetValue() { return m_value; } \
363\
364 virtual bool Eq(wxVariantData& data) const; \
365\
366 virtual wxString GetType() const; \
367 virtual wxClassInfo* GetValueClassInfo(); \
368\
369protected:\
370 classname m_value; \
3f90a399
RR
371};\
372\
3f90a399
RR
373wxString classname##VariantData::GetType() const\
374{\
375 return m_value.GetClassInfo()->GetClassName();\
376}\
377\
378wxClassInfo* classname##VariantData::GetValueClassInfo()\
379{\
380 return m_value.GetClassInfo();\
381}\
382\
39a48551 383expdecl classname& operator << ( classname &value, const wxVariant &variant )\
3f90a399 384{\
3586d10f 385 wxASSERT( variant.GetType() == #classname );\
3f90a399
RR
386 \
387 classname##VariantData *data = (classname##VariantData*) variant.GetData();\
388 value = data->GetValue();\
389 return value;\
390}\
391\
39a48551 392expdecl wxVariant& operator << ( wxVariant &variant, const classname &value )\
3f90a399
RR
393{\
394 classname##VariantData *data = new classname##VariantData( value );\
395 variant.SetData( data );\
396 return variant;\
397}
398
01df01eb
VZ
399// implements a wxVariantData-derived class using for the Eq() method the
400// operator== which must have been provided by "classname"
55ccdb93 401#define IMPLEMENT_VARIANT_OBJECT_EXPORTED(classname,expdecl) \
5ffa72f4 402IMPLEMENT_VARIANT_OBJECT_EXPORTED_NO_EQ(classname,wxEMPTY_PARAMETER_VALUE expdecl) \
55ccdb93
VZ
403\
404bool classname##VariantData::Eq(wxVariantData& data) const \
405{\
3586d10f 406 wxASSERT( GetType() == data.GetType() );\
55ccdb93
VZ
407\
408 classname##VariantData & otherData = (classname##VariantData &) data;\
409\
410 return otherData.m_value == m_value;\
411}\
412
413
414// implements a wxVariantData-derived class using for the Eq() method a shallow
a3ab1c18 415// comparison (through wxObject::IsSameAs function)
01df01eb
VZ
416#define IMPLEMENT_VARIANT_OBJECT_SHALLOWCMP(classname) \
417 IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(classname, wxEMPTY_PARAMETER_VALUE)
55ccdb93 418#define IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(classname,expdecl) \
5ffa72f4 419IMPLEMENT_VARIANT_OBJECT_EXPORTED_NO_EQ(classname,wxEMPTY_PARAMETER_VALUE expdecl) \
55ccdb93
VZ
420\
421bool classname##VariantData::Eq(wxVariantData& data) const \
422{\
3586d10f 423 wxASSERT( GetType() == data.GetType() );\
55ccdb93
VZ
424\
425 classname##VariantData & otherData = (classname##VariantData &) data;\
426\
a3ab1c18 427 return (otherData.m_value.IsSameAs(m_value));\
55ccdb93
VZ
428}\
429
430
3f90a399
RR
431// Since we want type safety wxVariant we need to fetch and dynamic_cast
432// in a seemingly safe way so the compiler can check, so we define
433// a dynamic_cast /wxDynamicCast analogue.
cf6ae290
RG
434
435#define wxGetVariantCast(var,classname) \
cab1a605
WS
436 ((classname*)(var.IsValueKindOf(&classname::ms_classInfo) ?\
437 var.GetWxObjectPtr() : NULL));
cf6ae290 438
bddd7a8d 439extern wxVariant WXDLLIMPEXP_BASE wxNullVariant;
a0a302dc 440
d5dc103f
VZ
441#endif // wxUSE_VARIANT
442
443#endif // _WX_VARIANT_H_