]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: variant.h | |
e54c96f1 | 3 | // Purpose: interface of wxVariant |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxVariant | |
11 | @wxheader{variant.h} | |
7c913512 | 12 | |
23324ae1 FM |
13 | The @b wxVariant class represents a container for any type. |
14 | A variant's value can be changed at run time, possibly to a different type of | |
15 | value. | |
7c913512 | 16 | |
23324ae1 FM |
17 | As standard, wxVariant can store values of type bool, wxChar, double, long, |
18 | string, | |
7c913512 | 19 | string list, time, date, void pointer, list of strings, and list of variants. |
23324ae1 FM |
20 | However, an application can extend wxVariant's capabilities by deriving from the |
21 | class wxVariantData and using the wxVariantData form of | |
22 | the wxVariant constructor or assignment operator to assign this data to a | |
23 | variant. | |
24 | Actual values for user-defined types will need to be accessed via the | |
25 | wxVariantData | |
26 | object, unlike the case for basic data types where convenience functions such as | |
27 | wxVariant::GetLong can be used. | |
7c913512 | 28 | |
23324ae1 FM |
29 | Pointers to any wxObject derived class can also easily be stored |
30 | in a wxVariant. wxVariant will then use wxWidgets' built-in RTTI system to set | |
31 | the | |
7c913512 | 32 | type name (returned by wxVariant::GetType) and to perform |
23324ae1 | 33 | type-safety checks at runtime. |
7c913512 | 34 | |
23324ae1 FM |
35 | This class is useful for reducing the programming for certain tasks, such as an |
36 | editor | |
37 | for different data types, or a remote procedure call protocol. | |
7c913512 | 38 | |
23324ae1 FM |
39 | An optional name member is associated with a wxVariant. This might be used, for |
40 | example, | |
41 | in CORBA or OLE automation classes, where named parameters are required. | |
7c913512 | 42 | |
23324ae1 | 43 | Note that as of wxWidgets 2.7.1, wxVariant is @ref overview_trefcount |
7c913512 FM |
44 | "reference counted". |
45 | Additionally, the convenience macros @b DECLARE_VARIANT_OBJECT and | |
46 | @b IMPLEMENT_VARIANT_OBJECT were added so that adding (limited) support | |
23324ae1 | 47 | for conversion to and from wxVariant can be very easily implemented without |
7c913512 | 48 | modifying |
23324ae1 | 49 | either wxVariant or the class to be stored by wxVariant. Since assignment |
7c913512 | 50 | operators |
23324ae1 FM |
51 | cannot be declared outside the class, the shift left operators are used like |
52 | this: | |
7c913512 | 53 | |
23324ae1 FM |
54 | @code |
55 | // in the header file | |
56 | DECLARE_VARIANT_OBJECT(MyClass) | |
7c913512 | 57 | |
23324ae1 FM |
58 | // in the implementation file |
59 | IMPLEMENT_VARIANT_OBJECT(MyClass) | |
7c913512 | 60 | |
23324ae1 FM |
61 | // in the user code |
62 | wxVariant variant; | |
63 | MyClass value; | |
64 | variant value; | |
7c913512 | 65 | |
23324ae1 FM |
66 | // or |
67 | value variant; | |
68 | @endcode | |
7c913512 | 69 | |
23324ae1 FM |
70 | For this to work, MyClass must derive from wxObject, implement |
71 | the @ref overview_runtimeclassoverview "wxWidgets RTTI system" | |
72 | and support the assignment operator and equality operator for itself. Ideally, | |
73 | it | |
74 | should also be reference counted to make copying operations cheap and fast. This | |
75 | can be most easily implemented using the reference counting support offered by | |
76 | wxObject itself. By default, wxWidgets already implements | |
77 | the shift operator conversion for a few of its drawing related classes: | |
7c913512 | 78 | |
23324ae1 FM |
79 | @code |
80 | IMPLEMENT_VARIANT_OBJECT(wxColour) | |
81 | IMPLEMENT_VARIANT_OBJECT(wxImage) | |
82 | IMPLEMENT_VARIANT_OBJECT(wxIcon) | |
83 | IMPLEMENT_VARIANT_OBJECT(wxBitmap) | |
84 | @endcode | |
7c913512 | 85 | |
23324ae1 FM |
86 | Note that as of wxWidgets 2.9.0, wxVariantData no longer inherits from wxObject |
87 | and wxVariant no longer uses the type-unsafe wxList class for list | |
88 | operations but the type-safe wxVariantList class. Also, wxVariantData now | |
89 | supports the Clone function for implementing the wxVariant::Unshare function. | |
90 | Clone is implemented automatically by IMPLEMENT_VARIANT_OBJECT. | |
7c913512 | 91 | |
23324ae1 FM |
92 | Since wxVariantData no longer derives from wxObject, any code that tests the |
93 | type | |
94 | of the data using wxDynamicCast will require adjustment. You can use the macro | |
95 | wxDynamicCastVariantData with the same arguments as wxDynamicCast, to use C++ | |
96 | RTTI | |
97 | type information instead of wxWidgets RTTI. | |
7c913512 | 98 | |
23324ae1 FM |
99 | @library{wxbase} |
100 | @category{data} | |
7c913512 | 101 | |
e54c96f1 | 102 | @see wxVariantData |
23324ae1 FM |
103 | */ |
104 | class wxVariant : public wxObject | |
105 | { | |
106 | public: | |
107 | //@{ | |
108 | /** | |
109 | Construction from a ODBC timestamp value. Represented internally by a | |
110 | wxDateTime value. | |
111 | */ | |
112 | wxVariant(); | |
7c913512 FM |
113 | wxVariant(const wxVariant& variant); |
114 | wxVariant(const wxChar* value, const wxString& name = ""); | |
115 | wxVariant(const wxString& value, const wxString& name = ""); | |
116 | wxVariant(wxChar value, const wxString& name = ""); | |
117 | wxVariant(long value, const wxString& name = ""); | |
118 | wxVariant(bool value, const wxString& name = ""); | |
119 | wxVariant(double value, const wxString& name = ""); | |
120 | wxVariant(const wxVariantList& value, | |
121 | const wxString& name = ""); | |
122 | wxVariant(void* value, const wxString& name = ""); | |
123 | wxVariant(wxObject* value, const wxString& name = ""); | |
124 | wxVariant(wxVariantData* data, const wxString& name = ""); | |
125 | wxVariant(wxDateTime& val, const wxString& name = ""); | |
126 | wxVariant(wxArrayString& val, const wxString& name = ""); | |
127 | wxVariant(DATE_STRUCT* val, const wxString& name = ""); | |
128 | wxVariant(TIME_STRUCT* val, const wxString& name = ""); | |
129 | wxVariant(TIMESTAMP_STRUCT* val, const wxString& name = ""); | |
23324ae1 FM |
130 | //@} |
131 | ||
132 | /** | |
133 | Destructor. | |
23324ae1 FM |
134 | Note that destructor is protected, so wxVariantData cannot usually |
135 | be deleted. Instead, wxVariantData::DecRef should be called. | |
136 | See @ref overview_refcountdestruct "reference-counted object destruction" for | |
137 | more info. | |
138 | */ | |
139 | ~wxVariant(); | |
140 | ||
141 | /** | |
142 | Appends a value to the list. | |
143 | */ | |
144 | void Append(const wxVariant& value); | |
145 | ||
146 | /** | |
147 | Makes the variant null by deleting the internal data and | |
148 | set the name to @e wxEmptyString. | |
149 | */ | |
150 | void Clear(); | |
151 | ||
152 | /** | |
153 | Deletes the contents of the list. | |
154 | */ | |
155 | void ClearList(); | |
156 | ||
157 | //@{ | |
158 | /** | |
4cc4bfaf | 159 | Retrieves and converts the value of this variant to the type that @a value is. |
23324ae1 | 160 | */ |
328f5751 FM |
161 | bool Convert(long* value) const; |
162 | const bool Convert(bool* value) const; | |
163 | const bool Convert(double* value) const; | |
164 | const bool Convert(wxString* value) const; | |
165 | const bool Convert(wxChar* value) const; | |
166 | const bool Convert(wxDateTime* value) const; | |
23324ae1 FM |
167 | //@} |
168 | ||
169 | /** | |
4cc4bfaf | 170 | Deletes the zero-based @a item from the list. |
23324ae1 FM |
171 | */ |
172 | bool Delete(size_t item); | |
173 | ||
174 | /** | |
175 | Returns the string array value. | |
176 | */ | |
328f5751 | 177 | wxArrayString GetArrayString() const; |
23324ae1 FM |
178 | |
179 | /** | |
180 | Returns the boolean value. | |
181 | */ | |
328f5751 | 182 | bool GetBool() const; |
23324ae1 FM |
183 | |
184 | /** | |
185 | Returns the character value. | |
186 | */ | |
328f5751 | 187 | wxChar GetChar() const; |
23324ae1 FM |
188 | |
189 | /** | |
190 | Returns the number of elements in the list. | |
191 | */ | |
328f5751 | 192 | size_t GetCount() const; |
23324ae1 FM |
193 | |
194 | /** | |
195 | Returns a pointer to the internal variant data. To take ownership | |
196 | of this data, you must call its wxVariantData::IncRef | |
197 | method. When you stop using it, wxVariantData::DecRef | |
198 | must be likewise called. | |
199 | */ | |
328f5751 | 200 | wxVariantData* GetData() const; |
23324ae1 FM |
201 | |
202 | /** | |
203 | Returns the date value. | |
204 | */ | |
328f5751 | 205 | wxDateTime GetDateTime() const; |
23324ae1 FM |
206 | |
207 | /** | |
208 | Returns the floating point value. | |
209 | */ | |
328f5751 | 210 | double GetDouble() const; |
23324ae1 FM |
211 | |
212 | /** | |
213 | Returns a reference to the wxVariantList class used by | |
214 | wxVariant if this wxVariant is currently a list of variants. | |
215 | */ | |
328f5751 | 216 | wxVariantList GetList() const; |
23324ae1 FM |
217 | |
218 | /** | |
219 | Returns the integer value. | |
220 | */ | |
328f5751 | 221 | long GetLong() const; |
23324ae1 FM |
222 | |
223 | /** | |
224 | Returns a constant reference to the variant name. | |
225 | */ | |
328f5751 | 226 | const wxString GetName() const; |
23324ae1 FM |
227 | |
228 | /** | |
229 | Gets the string value. | |
230 | */ | |
328f5751 | 231 | wxString GetString() const; |
23324ae1 FM |
232 | |
233 | /** | |
234 | Returns the value type as a string. The built-in types are: bool, char, | |
235 | datetime, double, list, long, string, arrstring, void*. | |
23324ae1 FM |
236 | If the variant is null, the value type returned is the string "null" (not the |
237 | empty string). | |
238 | */ | |
328f5751 | 239 | wxString GetType() const; |
23324ae1 FM |
240 | |
241 | /** | |
242 | Gets the void pointer value. | |
243 | */ | |
328f5751 | 244 | void* GetVoidPtr() const; |
23324ae1 FM |
245 | |
246 | /** | |
247 | Gets the wxObject pointer value. | |
248 | */ | |
328f5751 | 249 | wxObject* GetWxObjectPtr() const; |
23324ae1 FM |
250 | |
251 | /** | |
252 | Inserts a value at the front of the list. | |
253 | */ | |
254 | void Insert(const wxVariant& value); | |
255 | ||
256 | /** | |
257 | Returns @true if there is no data associated with this variant, @false if there | |
258 | is data. | |
259 | */ | |
328f5751 | 260 | bool IsNull() const; |
23324ae1 FM |
261 | |
262 | /** | |
4cc4bfaf | 263 | Returns @true if @a type matches the type of the variant, @false otherwise. |
23324ae1 | 264 | */ |
328f5751 | 265 | bool IsType(const wxString& type) const; |
23324ae1 FM |
266 | |
267 | /** | |
268 | Returns @true if the data is derived from the class described by @e type, @false | |
269 | otherwise. | |
270 | */ | |
328f5751 | 271 | bool IsValueKindOf(const wxClassInfo* type type) const; |
23324ae1 FM |
272 | |
273 | /** | |
274 | Makes the variant null by deleting the internal data. | |
275 | */ | |
276 | void MakeNull(); | |
277 | ||
278 | /** | |
279 | Makes a string representation of the variant value (for any type). | |
280 | */ | |
328f5751 | 281 | wxString MakeString() const; |
23324ae1 FM |
282 | |
283 | /** | |
4cc4bfaf | 284 | Returns @true if @a value matches an element in the list. |
23324ae1 | 285 | */ |
328f5751 | 286 | bool Member(const wxVariant& value) const; |
23324ae1 FM |
287 | |
288 | /** | |
289 | Makes an empty list. This differs from a null variant which has no data; a null | |
290 | list | |
291 | is of type list, but the number of elements in the list is zero. | |
292 | */ | |
293 | void NullList(); | |
294 | ||
295 | /** | |
296 | Sets the internal variant data, deleting the existing data if there is any. | |
297 | */ | |
298 | void SetData(wxVariantData* data); | |
299 | ||
300 | /** | |
301 | Makes sure that any data associated with this variant is not shared with other | |
302 | variants. For this to work, wxVariantData::Clone must | |
303 | be implemented for the data types you are working with. Clone is implemented | |
304 | for all the default data types. | |
305 | */ | |
306 | bool Unshare(); | |
307 | ||
308 | //@{ | |
309 | /** | |
310 | Inequality test operators. | |
311 | */ | |
328f5751 FM |
312 | bool operator !=(const wxVariant& value) const; |
313 | const bool operator !=(const wxString& value) const; | |
314 | const bool operator !=(const wxChar* value) const; | |
315 | const bool operator !=(wxChar value) const; | |
316 | const bool operator !=(const long value) const; | |
317 | const bool operator !=(const bool value) const; | |
318 | const bool operator !=(const double value) const; | |
319 | const bool operator !=(void* value) const; | |
320 | const bool operator !=(wxObject* value) const; | |
321 | const bool operator !=(const wxVariantList& value) const; | |
322 | const bool operator !=(const wxArrayString& value) const; | |
323 | const bool operator !=(const wxDateTime& value) const; | |
23324ae1 FM |
324 | //@} |
325 | ||
326 | //@{ | |
327 | /** | |
328 | Assignment operators, using @ref overview_trefcount "reference counting" when | |
329 | possible. | |
330 | */ | |
331 | void operator =(const wxVariant& value); | |
7c913512 FM |
332 | void operator =(wxVariantData* value); |
333 | void operator =(const wxString& value); | |
334 | void operator =(const wxChar* value); | |
335 | void operator =(wxChar value); | |
336 | void operator =(const long value); | |
337 | void operator =(const bool value); | |
338 | void operator =(const double value); | |
339 | void operator =(void* value); | |
340 | void operator =(wxObject* value); | |
341 | void operator =(const wxVariantList& value); | |
342 | void operator =(const wxDateTime& value); | |
343 | void operator =(const wxArrayString& value); | |
344 | void operator =(const DATE_STRUCT* value); | |
345 | void operator =(const TIME_STRUCT* value); | |
346 | void operator =(const TIMESTAMP_STRUCT* value); | |
23324ae1 FM |
347 | //@} |
348 | ||
349 | //@{ | |
350 | /** | |
351 | Equality test operators. | |
352 | */ | |
328f5751 FM |
353 | bool operator ==(const wxVariant& value) const; |
354 | const bool operator ==(const wxString& value) const; | |
355 | const bool operator ==(const wxChar* value) const; | |
356 | const bool operator ==(wxChar value) const; | |
357 | const bool operator ==(const long value) const; | |
358 | const bool operator ==(const bool value) const; | |
359 | const bool operator ==(const double value) const; | |
360 | const bool operator ==(void* value) const; | |
361 | const bool operator ==(wxObject* value) const; | |
362 | const bool operator ==(const wxVariantList& value) const; | |
363 | const bool operator ==(const wxArrayString& value) const; | |
364 | const bool operator ==(const wxDateTime& value) const; | |
23324ae1 FM |
365 | //@} |
366 | ||
367 | //@{ | |
368 | /** | |
4cc4bfaf | 369 | Returns a reference to the value at @a idx (zero-based). This can be used |
23324ae1 FM |
370 | to change the value at this index. |
371 | */ | |
372 | wxVariant operator [](size_t idx); | |
328f5751 | 373 | const wxVariant& operator [](size_t idx); |
23324ae1 FM |
374 | //@} |
375 | ||
376 | //@{ | |
377 | /** | |
378 | Operator for implicit conversion to a long, using GetLong(). | |
379 | */ | |
328f5751 FM |
380 | double operator double() const; |
381 | const long operator long() const; | |
23324ae1 FM |
382 | //@} |
383 | ||
384 | /** | |
385 | Operator for implicit conversion to a pointer to a void, using GetVoidPtr(). | |
386 | */ | |
328f5751 | 387 | void* operator void*() const; |
23324ae1 FM |
388 | |
389 | /** | |
390 | Operator for implicit conversion to a wxChar, using GetChar(). | |
391 | */ | |
328f5751 | 392 | char operator wxChar() const; |
23324ae1 FM |
393 | |
394 | /** | |
395 | Operator for implicit conversion to a pointer to a wxDateTime, using | |
396 | GetDateTime(). | |
397 | */ | |
328f5751 | 398 | void* operator wxDateTime() const; |
23324ae1 FM |
399 | |
400 | /** | |
401 | Operator for implicit conversion to a string, using MakeString(). | |
402 | */ | |
328f5751 | 403 | wxString operator wxString() const; |
23324ae1 FM |
404 | }; |
405 | ||
406 | ||
e54c96f1 | 407 | |
23324ae1 FM |
408 | /** |
409 | @class wxVariantData | |
410 | @wxheader{variant.h} | |
7c913512 FM |
411 | |
412 | The @b wxVariantData class is used to implement a new type for wxVariant. | |
23324ae1 | 413 | Derive from wxVariantData, and override the pure virtual functions. |
7c913512 | 414 | |
23324ae1 | 415 | wxVariantData is @ref overview_refcount "reference counted", but you don't |
7c913512 | 416 | normally have to care about this, |
23324ae1 FM |
417 | as wxVariant manages the count automatically. However, in case your application |
418 | needs to take | |
419 | ownership of wxVariantData, be aware that the object is created with reference | |
420 | count of 1, | |
421 | and passing it to wxVariant will not increase this. In other words, | |
422 | wxVariantData::IncRef | |
423 | needs to be called only if you both take ownership of wxVariantData and pass it | |
424 | to a wxVariant. | |
425 | Also note that the destructor is protected, so you can never explicitly delete | |
426 | a wxVariantData | |
427 | instance. Instead, wxVariantData::DecRef will delete the object automatically | |
428 | when the reference count reaches zero. | |
7c913512 | 429 | |
23324ae1 FM |
430 | @library{wxbase} |
431 | @category{FIXME} | |
7c913512 | 432 | |
e54c96f1 | 433 | @see wxVariant |
23324ae1 | 434 | */ |
7c913512 | 435 | class wxVariantData |
23324ae1 FM |
436 | { |
437 | public: | |
438 | /** | |
439 | Default constructor. | |
440 | */ | |
441 | wxVariantData(); | |
442 | ||
443 | /** | |
444 | This function can be overridden to clone the data. | |
445 | Implement Clone if you wish wxVariant::Unshare to work | |
446 | for your data. This function is implemented for all built-in data types. | |
447 | */ | |
328f5751 | 448 | wxVariantData* Clone() const; |
23324ae1 FM |
449 | |
450 | /** | |
451 | Decreases reference count. If the count reaches zero, the object is | |
452 | automatically deleted. | |
23324ae1 FM |
453 | Note that destructor of wxVariantData is protected, so delete |
454 | cannot be used as normal. Instead, DecRef() should be called. | |
455 | */ | |
456 | void DecRef(); | |
457 | ||
458 | /** | |
459 | Returns @true if this object is equal to @e data. | |
460 | */ | |
328f5751 | 461 | bool Eq(wxVariantData& data) const; |
23324ae1 FM |
462 | |
463 | /** | |
464 | Returns the string type of the data. | |
465 | */ | |
328f5751 | 466 | wxString GetType() const; |
23324ae1 FM |
467 | |
468 | /** | |
469 | If the data is a wxObject returns a pointer to the objects wxClassInfo | |
470 | structure, if | |
471 | the data isn't a wxObject the method returns @NULL. | |
472 | */ | |
328f5751 | 473 | wxClassInfo* GetValueClassInfo() const; |
23324ae1 FM |
474 | |
475 | /** | |
476 | Increases reference count. Note that initially wxVariantData has reference | |
477 | count of 1. | |
478 | */ | |
479 | void IncRef(); | |
480 | ||
481 | //@{ | |
482 | /** | |
4cc4bfaf | 483 | Reads the data from @a stream or @e string. |
23324ae1 FM |
484 | */ |
485 | bool Read(ostream& stream); | |
7c913512 | 486 | bool Read(wxString& string); |
23324ae1 FM |
487 | //@} |
488 | ||
489 | //@{ | |
490 | /** | |
4cc4bfaf | 491 | Writes the data to @a stream or @e string. |
23324ae1 | 492 | */ |
328f5751 FM |
493 | bool Write(ostream& stream) const; |
494 | const bool Write(wxString& string) const; | |
23324ae1 FM |
495 | //@} |
496 | ||
497 | /** | |
498 | This macro returns the data stored in @e variant cast to the type @e classname | |
499 | * if | |
500 | the data is of this type (the check is done during the run-time) or | |
501 | @NULL otherwise. | |
502 | */ | |
4cc4bfaf | 503 | classname* wxGetVariantCast(); |
23324ae1 | 504 | }; |
e54c96f1 | 505 |