1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxVariant docs
4 %% Author: wxWidgets Team
8 %% Copyright: (c) wxWidgets Team
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxVariant
}}\label{wxvariant
}
14 The
{\bf wxVariant
} class represents a container for any type.
15 A variant's value can be changed at run time, possibly to a different type of value.
17 As standard, wxVariant can store values of type bool, wxChar, double, long, string,
18 string list, time, date, void pointer, list of strings, and list of variants.
19 However, an application can extend wxVariant's capabilities by deriving from the
20 class
\helpref{wxVariantData
}{wxvariantdata
} and using the wxVariantData form of
21 the wxVariant constructor or assignment operator to assign this data to a variant.
22 Actual values for user-defined types will need to be accessed via the wxVariantData
23 object, unlike the case for basic data types where convenience functions such as
24 \helpref{GetLong
}{wxvariantgetlong
} can be used.
26 Pointers to any
\helpref{wxObject
}{wxobject
} derived class can also easily be stored
27 in a wxVariant. wxVariant will then use wxWidgets' built-in RTTI system to set the
28 type name (returned by
\helpref{GetType
}{wxvariantgettype
}) and to perform
29 type-safety checks at runtime.
31 This class is useful for reducing the programming for certain tasks, such as an editor
32 for different data types, or a remote procedure call protocol.
34 An optional name member is associated with a wxVariant. This might be used, for example,
35 in CORBA or OLE automation classes, where named parameters are required.
37 Note that as of wxWidgets
2.7.1, wxVariant is
\helpref{reference counted
}{trefcount
}.
38 Additionally, the convenience macros
{\bf DECLARE
\_VARIANT\_OBJECT} and
39 {\bf IMPLEMENT
\_VARIANT\_OBJECT} were added so that adding (limited) support
40 for conversion to and from wxVariant can be very easily implemented without modifying
41 either wxVariant or the class to be stored by wxVariant. Since assignment operators
42 cannot be declared outside the class, the shift left operators are used like this:
46 DECLARE_VARIANT_OBJECT(MyClass)
48 // in the implementation file
49 IMPLMENT_VARIANT_OBJECT(MyClass)
60 For this to work, MyClass must derive from
\helpref{wxObject
}{wxobject
}, implement
61 the
\helpref{wxWidgets RTTI system
}{runtimeclassoverview
}
62 and support the assignment operator and equality operator for itself. Ideally, it
63 should also be reference counted to make copying operations cheap and fast. This
64 can be most easily implemented using the reference counting support offered by
65 \helpref{wxObject
}{wxobject
} itself. By default, wxWidgets already implements
66 the shift operator conversion for a few of its drawing related classes:
69 IMPLEMENT_VARIANT_OBJECT(wxColour)
70 IMPLEMENT_VARIANT_OBJECT(wxImage)
71 IMPLEMENT_VARIANT_OBJECT(wxIcon)
72 IMPLEMENT_VARIANT_OBJECT(wxBitmap)
75 Note that as of wxWidgets
2.9.0, wxVariantData no longer inherits from wxObject
76 and wxVariant no longer uses the type-unsafe wxList class for list
77 operations but the type-safe wxVariantList class.
79 \wxheading{Derived from
}
81 \helpref{wxObject
}{wxobject
}
83 \wxheading{Include files
}
89 \helpref{wxBase
}{librarieslist
}
93 \helpref{wxVariantData
}{wxvariantdata
}
95 \latexignore{\rtfignore{\wxheading{Members
}}}
97 \membersection{wxVariant::wxVariant
}\label{wxvariantctor
}
99 \func{}{wxVariant
}{\void}
103 \func{}{wxVariant
}{\param{const wxVariant\&
}{variant
}}
105 Copy constructor, uses
\helpref{reference counting
}{trefcount
}.
107 \func{}{wxVariant
}{\param{const wxChar*
}{ value
},
\param{const wxString\&
}{name = ``"
}}
109 \func{}{wxVariant
}{\param{const wxString\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
111 Construction from a string value.
113 \func{}{wxVariant
}{\param{wxChar
}{ value
},
\param{const wxString\&
}{name = ``"
}}
115 Construction from a character value.
117 \func{}{wxVariant
}{\param{long
}{ value
},
\param{const wxString\&
}{name = ``"
}}
119 Construction from an integer value. You may need to cast to (long) to
120 avoid confusion with other constructors (such as the bool constructor).
122 \func{}{wxVariant
}{\param{bool
}{ value
},
\param{const wxString\&
}{name = ``"
}}
124 Construction from a boolean value.
126 \func{}{wxVariant
}{\param{double
}{ value
},
\param{const wxString\&
}{name = ``"
}}
128 Construction from a double-precision floating point value.
130 \func{}{wxVariant
}{\param{const wxVariantList\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
132 Construction from a list of wxVariant objects. This constructor
133 copies
{\it value
}, the application is still responsible for
134 deleting
{\it value
} and its contents.
136 \func{}{wxVariant
}{\param{void*
}{ value
},
\param{const wxString\&
}{name = ``"
}}
138 Construction from a void pointer.
140 \func{}{wxVariant
}{\param{wxObject*
}{ value
},
\param{const wxString\&
}{name = ``"
}}
142 Construction from a wxObject pointer.
144 \func{}{wxVariant
}{\param{wxVariantData*
}{ data
},
\param{const wxString\&
}{name = ``"
}}
146 Construction from user-defined data. The variant holds onto the
{\it data
} pointer.
148 \func{}{wxVariant
}{\param{wxDateTime\&
}{ val
},
\param{const wxString\&
}{name = ``"
}}
150 Construction from a
\helpref{wxDateTime
}{wxdatetime
}.
152 \func{}{wxVariant
}{\param{wxArrayString\&
}{ val
},
\param{const wxString\&
}{name = ``"
}}
154 Construction from an array of strings. This constructor copies
{\it value
} and its contents.
156 \func{}{wxVariant
}{\param{DATE
\_STRUCT*
}{ val
},
\param{const wxString\&
}{name = ``"
}}
158 Construction from a odbc date value. Represented internally by a
\helpref{wxDateTime
}{wxdatetime
} value.
160 \func{}{wxVariant
}{\param{TIME
\_STRUCT*
}{ val
},
\param{const wxString\&
}{name = ``"
}}
162 Construction from a odbc time value. Represented internally by a
\helpref{wxDateTime
}{wxdatetime
} value.
164 \func{}{wxVariant
}{\param{TIMESTAMP
\_STRUCT*
}{ val
},
\param{const wxString\&
}{name = ``"
}}
166 Construction from a odbc timestamp value. Represented internally by a
\helpref{wxDateTime
}{wxdatetime
} value.
168 \membersection{wxVariant::
\destruct{wxVariant
}}\label{wxvariantdtor
}
170 \func{}{\destruct{wxVariant
}}{\void}
174 Note that destructor is protected, so wxVariantData cannot usually
175 be deleted. Instead,
\helpref{DecRef
}{wxvariantdatadecref
} should be called.
176 See
\helpref{reference-counted object destruction
}{refcountdestruct
} for more info.
179 \membersection{wxVariant::Append
}\label{wxvariantappend
}
181 \func{void
}{Append
}{\param{const wxVariant\&
}{ value
}}
183 Appends a value to the list.
185 \membersection{wxVariant::Clear
}\label{wxvariantclear
}
187 \func{void
}{Clear
}{\void}
189 Makes the variant null by deleting the internal data and
190 set the name to
{\it wxEmptyString
}.
192 \membersection{wxVariant::ClearList
}\label{wxvariantclearlist
}
194 \func{void
}{ClearList
}{\void}
196 Deletes the contents of the list.
199 \membersection{wxVariant::Convert
}\label{wxvariantconvert
}
201 \constfunc{bool
}{Convert
}{\param{long*
}{ value
}}
203 \constfunc{bool
}{Convert
}{\param{bool*
}{ value
}}
205 \constfunc{bool
}{Convert
}{\param{double*
}{ value
}}
207 \constfunc{bool
}{Convert
}{\param{wxString*
}{ value
}}
209 \constfunc{bool
}{Convert
}{\param{wxChar*
}{ value
}}
211 \constfunc{bool
}{Convert
}{\param{wxDateTime*
}{ value
}}
213 Retrieves and converts the value of this variant to the type that
{\it value
} is.
216 \membersection{wxVariant::GetCount
}\label{wxvariantgetcount
}
218 \constfunc{size
\_t}{GetCount
}{\void}
220 Returns the number of elements in the list.
222 \membersection{wxVariant::Delete
}\label{wxvariantdelete
}
224 \func{bool
}{Delete
}{\param{size
\_t }{item
}}
226 Deletes the zero-based
{\it item
} from the list.
228 \membersection{wxVariant::GetArrayString
}\label{wxvariantgetarraystring
}
230 \constfunc{wxArrayString
}{GetArrayString
}{\void}
232 Returns the string array value.
234 \membersection{wxVariant::GetBool
}\label{wxvariantgetbool
}
236 \constfunc{bool
}{GetBool
}{\void}
238 Returns the boolean value.
240 \membersection{wxVariant::GetChar
}\label{wxvariantgetchar
}
242 \constfunc{wxChar
}{GetChar
}{\void}
244 Returns the character value.
246 \membersection{wxVariant::GetData
}\label{wxvariantgetdata
}
248 \constfunc{wxVariantData*
}{GetData
}{\void}
250 Returns a pointer to the internal variant data. To take ownership
251 of this data, you must call its
\helpref{IncRef
}{wxvariantdataincref
}
252 method. When you stop using it,
\helpref{DecRef
}{wxvariantdatadecref
}
253 must be likewise called.
255 \membersection{wxVariant::GetDateTime
}\label{wxvariantgetdatetime
}
257 \constfunc{wxDateTime
}{GetDateTime
}{\void}
259 Returns the date value.
261 \membersection{wxVariant::GetDouble
}\label{wxvariantgetdouble
}
263 \constfunc{double
}{GetDouble
}{\void}
265 Returns the floating point value.
267 \membersection{wxVariant::GetList
}\label{wxvariantgetlist
}
269 \constfunc{wxVariantList &
}{GetList
}{\void}
271 Returns a reference to the wxVariantList class used by
272 wxVariant if this wxVariant is currently a list of variants.
274 \membersection{wxVariant::GetLong
}\label{wxvariantgetlong
}
276 \constfunc{long
}{GetLong
}{\void}
278 Returns the integer value.
280 \membersection{wxVariant::GetName
}\label{wxvariantgetname
}
282 \constfunc{const wxString\&
}{GetName
}{\void}
284 Returns a constant reference to the variant name.
286 \membersection{wxVariant::GetString
}\label{wxvariantgetstring
}
288 \constfunc{wxString
}{GetString
}{\void}
290 Gets the string value.
292 \membersection{wxVariant::GetType
}\label{wxvariantgettype
}
294 \constfunc{wxString
}{GetType
}{\void}
296 Returns the value type as a string. The built-in types are: bool, char, datetime, double, list, long, string, arrstring, void*.
298 If the variant is null, the value type returned is the string ``null" (not the empty string).
300 \membersection{wxVariant::GetVoidPtr
}\label{wxvariantgetvoidptr
}
302 \constfunc{void*
}{GetVoidPtr
}{\void}
304 Gets the void pointer value.
306 \membersection{wxVariant::GetWxObjectPtr
}\label{wxvariantgetwxobjectptr
}
308 \constfunc{wxObject*
}{GetWxObjectPtr
}{\void}
310 Gets the wxObject pointer value.
312 \membersection{wxVariant::Insert
}\label{wxvariantinsert
}
314 \func{void
}{Insert
}{\param{const wxVariant\&
}{ value
}}
316 Inserts a value at the front of the list.
318 \membersection{wxVariant::IsNull
}\label{wxvariantisnull
}
320 \constfunc{bool
}{IsNull
}{\void}
322 Returns true if there is no data associated with this variant, false if there is data.
324 \membersection{wxVariant::IsType
}\label{wxvariantistype
}
326 \constfunc{bool
}{IsType
}{\param{const wxString\&
}{ type
}}
328 Returns true if
{\it type
} matches the type of the variant, false otherwise.
330 \membersection{wxVariant::IsValueKindOf
}\label{wxvariantisvaluekindof
}
332 \constfunc{bool
}{IsValueKindOf
}{\param{const wxClassInfo* type
}{ type
}}
334 Returns true if the data is derived from the class described by
{\it type
}, false otherwise.
336 \membersection{wxVariant::MakeNull
}\label{wxvariantmakenull
}
338 \func{void
}{MakeNull
}{\void}
340 Makes the variant null by deleting the internal data.
342 \membersection{wxVariant::MakeString
}\label{wxvariantmakestring
}
344 \constfunc{wxString
}{MakeString
}{\void}
346 Makes a string representation of the variant value (for any type).
348 \membersection{wxVariant::Member
}\label{wxvariantmember
}
350 \constfunc{bool
}{Member
}{\param{const wxVariant\&
}{ value
}}
352 Returns true if
{\it value
} matches an element in the list.
354 \membersection{wxVariant::NullList
}\label{wxvariantnulllist
}
356 \func{void
}{NullList
}{\void}
358 Makes an empty list. This differs from a null variant which has no data; a null list
359 is of type list, but the number of elements in the list is zero.
361 \membersection{wxVariant::SetData
}\label{wxvariantsetdata
}
363 \func{void
}{SetData
}{\param{wxVariantData*
}{ data
}}
365 Sets the internal variant data, deleting the existing data if there is any.
367 \membersection{wxVariant::operator $=$
}\label{wxvariantassignment
}
369 \func{void
}{operator $=$
}{\param{const wxVariant\&
}{value
}}
371 \func{void
}{operator $=$
}{\param{wxVariantData*
}{value
}}
373 \func{void
}{operator $=$
}{\param{const wxString\&
}{value
}}
375 \func{void
}{operator $=$
}{\param{const wxChar*
}{value
}}
377 \func{void
}{operator $=$
}{\param{wxChar
}{value
}}
379 \func{void
}{operator $=$
}{\param{const long
}{value
}}
381 \func{void
}{operator $=$
}{\param{const bool
}{value
}}
383 \func{void
}{operator $=$
}{\param{const double
}{value
}}
385 \func{void
}{operator $=$
}{\param{void*
}{value
}}
387 \func{void
}{operator $=$
}{\param{wxObject*
}{value
}}
389 \func{void
}{operator $=$
}{\param{const wxVariantList\&
}{value
}}
391 \func{void
}{operator $=$
}{\param{const wxDateTime\&
}{value
}}
393 \func{void
}{operator $=$
}{\param{const wxArrayString\&
}{value
}}
395 \func{void
}{operator $=$
}{\param{const DATE
\_STRUCT*
}{value
}}
397 \func{void
}{operator $=$
}{\param{const TIME
\_STRUCT*
}{value
}}
399 \func{void
}{operator $=$
}{\param{const TIMESTAMP
\_STRUCT*
}{value
}}
401 Assignment operators, using
\helpref{reference counting
}{trefcount
} when possible.
403 \membersection{wxVariant::operator $==$
}\label{wxvarianteq
}
405 \constfunc{bool
}{operator $==$
}{\param{const wxVariant\&
}{value
}}
407 \constfunc{bool
}{operator $==$
}{\param{const wxString\&
}{value
}}
409 \constfunc{bool
}{operator $==$
}{\param{const wxChar*
}{value
}}
411 \constfunc{bool
}{operator $==$
}{\param{wxChar
}{value
}}
413 \constfunc{bool
}{operator $==$
}{\param{const long
}{value
}}
415 \constfunc{bool
}{operator $==$
}{\param{const bool
}{value
}}
417 \constfunc{bool
}{operator $==$
}{\param{const double
}{value
}}
419 \constfunc{bool
}{operator $==$
}{\param{void*
}{value
}}
421 \constfunc{bool
}{operator $==$
}{\param{wxObject*
}{value
}}
423 \constfunc{bool
}{operator $==$
}{\param{const wxVariantList\&
}{value
}}
425 \constfunc{bool
}{operator $==$
}{\param{const wxArrayString\&
}{value
}}
427 \constfunc{bool
}{operator $==$
}{\param{const wxDateTime\&
}{value
}}
429 Equality test operators.
431 \membersection{wxVariant::operator $!=$
}\label{wxvariantneq
}
433 \constfunc{bool
}{operator $!=$
}{\param{const wxVariant\&
}{value
}}
435 \constfunc{bool
}{operator $!=$
}{\param{const wxString\&
}{value
}}
437 \constfunc{bool
}{operator $!=$
}{\param{const wxChar*
}{value
}}
439 \constfunc{bool
}{operator $!=$
}{\param{wxChar
}{value
}}
441 \constfunc{bool
}{operator $!=$
}{\param{const long
}{value
}}
443 \constfunc{bool
}{operator $!=$
}{\param{const bool
}{value
}}
445 \constfunc{bool
}{operator $!=$
}{\param{const double
}{value
}}
447 \constfunc{bool
}{operator $!=$
}{\param{void*
}{value
}}
449 \constfunc{bool
}{operator $!=$
}{\param{wxObject*
}{value
}}
451 \constfunc{bool
}{operator $!=$
}{\param{const wxVariantList\&
}{value
}}
453 \constfunc{bool
}{operator $!=$
}{\param{const wxArrayString\&
}{value
}}
455 \constfunc{bool
}{operator $!=$
}{\param{const wxDateTime\&
}{value
}}
457 Inequality test operators.
459 \membersection{wxVariant::operator $
[]$
}\label{wxvariantarray
}
461 \constfunc{wxVariant
}{operator $
[]$
}{\param{size
\_t }{idx
}}
463 Returns the value at
{\it idx
} (zero-based).
465 \func{wxVariant\&
}{operator $
[]$
}{\param{size
\_t }{idx
}}
467 Returns a reference to the value at
{\it idx
} (zero-based). This can be used
468 to change the value at this index.
470 \membersection{wxVariant::operator wxChar
}\label{wxvariantchar
}
472 \constfunc{char
}{operator wxChar
}{\void}
474 Operator for implicit conversion to a wxChar, using
\helpref{wxVariant::GetChar
}{wxvariantgetchar
}.
476 \membersection{wxVariant::operator double
}\label{wxvariantdouble
}
478 \constfunc{double
}{operator double
}{\void}
480 Operator for implicit conversion to a double, using
\helpref{wxVariant::GetDouble
}{wxvariantgetdouble
}.
482 \constfunc{long
}{operator long
}{\void}
484 Operator for implicit conversion to a long, using
\helpref{wxVariant::GetLong
}{wxvariantgetlong
}.
486 \membersection{wxVariant::operator wxString
}\label{wxvariantwxstring
}
488 \constfunc{wxString
}{operator wxString
}{\void}
490 Operator for implicit conversion to a string, using
\helpref{wxVariant::MakeString
}{wxvariantmakestring
}.
492 \membersection{wxVariant::operator void*
}\label{wxvariantvoid
}
494 \constfunc{void*
}{operator void*
}{\void}
496 Operator for implicit conversion to a pointer to a void, using
\helpref{wxVariant::GetVoidPtr
}{wxvariantgetvoidptr
}.
498 \membersection{wxVariant::operator wxDateTime
}\label{wxvariantdatetime
}
500 \constfunc{void*
}{operator wxDateTime
}{\void}
502 Operator for implicit conversion to a pointer to a
\helpref{wxDateTime
}{wxdatetime
}, using
\helpref{wxVariant::GetDateTime
}{wxvariantgetdatetime
}.
509 \section{\class{wxVariantData
}}\label{wxvariantdata
}
511 The
{\bf wxVariantData
} class is used to implement a new type for
\helpref{wxVariant
}{wxvariant
}.
512 Derive from wxVariantData, and override the pure virtual functions.
514 wxVariantData is
\helpref{reference counted
}{refcount
}, but you don't normally have to care about this,
515 as wxVariant manages the count automatically. However, in case your application needs to take
516 ownership of wxVariantData, be aware that the object is created with reference count of
1,
517 and passing it to wxVariant will not increase this. In other words,
\helpref{IncRef
}{wxvariantdataincref
}
518 needs to be called only if you both take ownership of wxVariantData and pass it to a wxVariant.
519 Also note that the destructor is protected, so you can never explicitly delete a wxVariantData
520 instance. Instead,
\helpref{DecRef
}{wxvariantdatadecref
} will delete the object automatically
521 when the reference count reaches zero.
523 \wxheading{Include files
}
527 \wxheading{Derived from
}
533 \helpref{wxBase
}{librarieslist
}
537 \helpref{wxVariant
}{wxvariant
}
539 \latexignore{\rtfignore{\wxheading{Members
}}}
541 \membersection{wxVariantData::wxVariantData
}\label{wxvariantdatactor
}
543 \func{}{wxVariantData
}{\void}
547 \membersection{wxVariantData::DecRef
}\label{wxvariantdatadecref
}
549 \func{void
}{DecRef
}{\void}
551 Decreases reference count. If the count reaches zero, the object is
552 automatically deleted.
554 Note that destructor of wxVariantData is protected, so delete
555 cannot be used as normal. Instead,
\helpref{DecRef
}{wxvariantdatadecref
} should be called.
559 \membersection{wxVariantData::Eq
}\label{wxvariantdataeq
}
561 \constfunc{bool
}{Eq
}{\param{wxVariantData\&
}{ data
}}
563 Returns true if this object is equal to
{\it data
}.
565 \membersection{wxVariantData::GetType
}\label{wxvariantdatagettype
}
567 \constfunc{wxString
}{GetType
}{\void}
569 Returns the string type of the data.
571 \membersection{wxVariantData::GetValueClassInfo
}\label{wxvariantdatagetvalueclassinfo
}
573 \constfunc{wxClassInfo*
}{GetValueClassInfo
}{\void}
575 If the data is a wxObject returns a pointer to the objects wxClassInfo structure, if
576 the data isn't a wxObject the method returns NULL.
578 \membersection{wxVariantData::IncRef
}\label{wxvariantdataincref
}
580 \func{void
}{IncRef
}{\void}
582 Increases reference count. Note that initially wxVariantData has reference count of
1.
584 \membersection{wxVariantData::Read
}\label{wxvariantdataread
}
586 \func{bool
}{Read
}{\param{ostream\&
}{ stream
}}
588 \func{bool
}{Read
}{\param{wxString\&
}{ string
}}
590 Reads the data from
{\it stream
} or
{\it string
}.
592 \membersection{wxVariantData::Write
}\label{wxvariantdatawrite
}
594 \constfunc{bool
}{Write
}{\param{ostream\&
}{ stream
}}
596 \constfunc{bool
}{Write
}{\param{wxString\&
}{ string
}}
598 Writes the data to
{\it stream
} or
{\it string
}.
601 \membersection{wxGetVariantCast
}\label{wxgetvariantcast
}
603 \func{classname *
}{wxGetVariantCast
}{wxVariant\&, classname
}
605 This macro returns the data stored in
{\it variant
} cast to the type
{\it classname *
} if
606 the data is of this type (the check is done during the run-time) or
607 {\tt NULL
} otherwise.
612 \helpref{RTTI overview
}{runtimeclassoverview
}\\
613 \helpref{wxDynamicCast
}{wxdynamiccast
}