1 \section{\class{wxVariant
}}\label{wxvariant
}
3 The
{\bf wxVariant
} class represents a container for any type.
4 A variant's value can be changed at run time, possibly to a different type of value.
6 As standard, wxVariant can store values of type bool, char, double, long, string,
7 string list, time, date, void pointer, list of strings, and list of variants. However, an application can extend
8 wxVariant's capabilities by deriving from the class
\helpref{wxVariantData
}{wxvariantdata
} and
9 using the wxVariantData form of the wxVariant constructor or assignment operator
10 to assign this data to a variant. Actual values for user-defined types will need to be accessed
11 via the wxVariantData object, unlike the case for basic data types where convenience
12 functions such as GetLong can be used.
14 This class is useful for reducing the programming for certain tasks, such as an editor
15 for different data types, or a remote procedure call protocol.
17 An optional name member is associated with a wxVariant. This might be used, for example, in CORBA
18 or OLE automation classes, where named parameters are required.
20 wxVariant is similar to wxExpr and also to wxPropertyValue. However, wxExpr is efficiency-optimized for
21 a restricted range of data types, whereas wxVariant is less efficient but more extensible.
22 wxPropertyValue may be replaced by wxVariant eventually.
24 \wxheading{Derived from
}
26 \helpref{wxObject
}{wxobject
}
30 \helpref{wxVariantData
}{wxvariantdata
}
32 \latexignore{\rtfignore{\wxheading{Members
}}}
34 \membersection{wxVariant::wxVariant
}\label{wxvariantctor
}
36 \func{}{wxVariant
}{\void}
40 \func{}{wxVariant
}{\param{const wxVariant\&
}{variant
}}
44 \func{}{wxVariant
}{\param{const char*
}{ value
},
\param{const wxString\&
}{name = ``"
}}\\
45 \func{}{wxVariant
}{\param{const wxString\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
47 Construction from a string value.
49 \func{}{wxVariant
}{\param{char
}{ value
},
\param{const wxString\&
}{name = ``"
}}
51 Construction from a character value.
53 \func{}{wxVariant
}{\param{long
}{ value
},
\param{const wxString\&
}{name = ``"
}}
55 Construction from an integer value. You may need to cast to (long) to
56 avoid confusion with other constructors (such as the bool constructor).
58 \func{}{wxVariant
}{\param{bool
}{ value
},
\param{const wxString\&
}{name = ``"
}}
60 Construction from a boolean value.
62 \func{}{wxVariant
}{\param{double
}{ value
},
\param{const wxString\&
}{name = ``"
}}
64 Construction from a double-precision floating point value.
66 \func{}{wxVariant
}{\param{const wxList\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
68 Construction from a list of wxVariant objects. This constructor
69 copies
{\it value
}, the application is still responsible for
70 deleting
{\it value
} and its contents.
72 \func{}{wxVariant
}{\param{const wxStringList\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
74 Construction from a list of strings. This constructor
75 copies
{\it value
}, the application is still responsible for
76 deleting
{\it value
} and its contents.
78 %Note: this constructor is currently disabled because it causes a C++ ambiguity.
80 \func{}{wxVariant
}{\param{const wxTime\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
82 Construction from a time.
84 \func{}{wxVariant
}{\param{const wxDate\&
}{ value
},
\param{const wxString\&
}{name = ``"
}}
86 Construction from a date.
88 \func{}{wxVariant
}{\param{void*
}{ value
},
\param{const wxString\&
}{name = ``"
}}
90 Construction from a void pointer.
92 \func{}{wxVariant
}{\param{wxVariantData*
}{ data
},
\param{const wxString\&
}{name = ``"
}}
94 Construction from user-defined data. The variant holds on to the
{\it data
} pointer.
96 \membersection{wxVariant::
\destruct{wxVariant
}}\label{wxvariantdtor
}
98 \func{}{\destruct{wxVariant
}}{\void}
102 \membersection{wxVariant::Append
}\label{wxvariantappend
}
104 \func{void
}{Append
}{\param{const wxVariant\&
}{ value
}}
106 Appends a value to the list.
108 \membersection{wxVariant::ClearList
}\label{wxvariantclearlist
}
110 \func{void
}{ClearList
}{\void}
112 Deletes the contents of the list.
114 \membersection{wxVariant::GetCount
}\label{wxvariantgetcount
}
116 \constfunc{int
}{GetCount
}{\void}
118 Returns the number of elements in the list.
120 \membersection{wxVariant::Delete
}\label{wxvariantdelete
}
122 \func{bool
}{Delete
}{\param{int
}{item
}}
124 Deletes the zero-based
{\it item
} from the list.
126 \membersection{wxVariant::GetBool
}\label{wxvariantgetbool
}
128 \constfunc{bool
}{GetBool
}{\void}
130 Returns the boolean value.
132 \membersection{wxVariant::GetChar
}\label{wxvariantgetchar
}
134 \constfunc{char
}{GetChar
}{\void}
136 Returns the character value.
138 \membersection{wxVariant::GetData
}\label{wxvariantgetdata
}
140 \constfunc{wxVariantData*
}{GetData
}{\void}
142 Returns a pointer to the internal variant data.
144 \membersection{wxVariant::GetDate
}\label{wxvariantgetdate
}
146 \constfunc{wxDate
}{GetDate
}{\void}
150 \membersection{wxVariant::GetDouble
}\label{wxvariantgetdouble
}
152 \constfunc{double
}{GetDouble
}{\void}
154 Returns the floating point value.
156 \membersection{wxVariant::GetLong
}\label{wxvariantgetlong
}
158 \constfunc{long
}{GetLong
}{\void}
160 Returns the integer value.
162 \membersection{wxVariant::GetName
}\label{wxvariantgetname
}
164 \constfunc{const wxString\&
}{GetName
}{\void}
166 Returns a constant reference to the variant name.
168 \membersection{wxVariant::GetString
}\label{wxvariantgetstring
}
170 \constfunc{wxString
}{GetString
}{\void}
172 Gets the string value.
174 \membersection{wxVariant::GetTime
}\label{wxvariantgettime
}
176 \constfunc{wxTime
}{GetTime
}{\void}
180 \membersection{wxVariant::GetType
}\label{wxvariantgettype
}
182 \constfunc{wxString
}{GetType
}{\void}
184 Returns the value type as a string. The built-in types are: bool, char, date, double, list, long, string, stringlist, time, void*.
186 If the variant is null, the value type returned is the string ``null" (not the empty string).
188 \membersection{wxVariant::GetVoidPtr
}\label{wxvariantgetvoidptr
}
190 \constfunc{void*
}{GetVoidPtr
}{\void}
192 Gets the void pointer value.
194 \membersection{wxVariant::Insert
}\label{wxvariantinsert
}
196 \func{void
}{Insert
}{\param{const wxVariant\&
}{ value
}}
198 Inserts a value at the front of the list.
200 \membersection{wxVariant::IsNull
}\label{wxvariantisnull
}
202 \constfunc{bool
}{IsNull
}{\void}
204 Returns TRUE if there is no data associated with this variant, FALSE if there is data.
206 \membersection{wxVariant::IsType
}\label{wxvariantistype
}
208 \constfunc{bool
}{IsType
}{\param{const wxString\&
}{ type
}}
210 Returns TRUE if
{\it type
} matches the type of the variant, FALSE otherwise.
212 \membersection{wxVariant::MakeNull
}\label{wxvariantmakenull
}
214 \func{void
}{MakeNull
}{\void}
216 Makes the variant null by deleting the internal data.
218 \membersection{wxVariant::MakeString
}\label{wxvariantmakestring
}
220 \constfunc{wxString
}{MakeString
}{\void}
222 Makes a string representation of the variant value (for any type).
224 \membersection{wxVariant::Member
}\label{wxvariantmember
}
226 \constfunc{bool
}{Member
}{\param{const wxVariant\&
}{ value
}}
228 Returns TRUE if
{\it value
} matches an element in the list.
230 \membersection{wxVariant::NullList
}\label{wxvariantnulllist
}
232 \func{void
}{NullList
}{\void}
234 Makes an empty list. This differs from a null variant which has no data; a null list
235 is of type list, but the number of elements in the list is zero.
237 \membersection{wxVariant::SetData
}\label{wxvariantsetdata
}
239 \func{void
}{SetData
}{\param{wxVariantData*
}{ data
}}
241 Sets the internal variant data, deleting the existing data if there is any.
243 \membersection{wxVariant::operator $=$
}\label{wxvariantassignment
}
245 \func{void
}{operator $=$
}{\param{const wxVariant\&
}{value
}}
247 \func{void
}{operator $=$
}{\param{wxVariantData*
}{value
}}
249 \func{void
}{operator $=$
}{\param{const wxString\&
}{value
}}
251 \func{void
}{operator $=$
}{\param{const char*
}{value
}}
253 \func{void
}{operator $=$
}{\param{char
}{value
}}
255 \func{void
}{operator $=$
}{\param{const long
}{value
}}
257 \func{void
}{operator $=$
}{\param{const bool
}{value
}}
259 \func{void
}{operator $=$
}{\param{const double
}{value
}}
261 \func{void
}{operator $=$
}{\param{const wxDate\&
}{value
}}
263 \func{void
}{operator $=$
}{\param{const wxTime\&
}{value
}}
265 \func{void
}{operator $=$
}{\param{void*
}{value
}}
267 \func{void
}{operator $=$
}{\param{const wxList\&
}{value
}}
269 \func{void
}{operator $=$
}{\param{const wxStringList\&
}{value
}}
271 Assignment operators.
273 \membersection{wxVariant::operator $==$
}\label{wxvarianteq
}
275 \func{bool
}{operator $==$
}{\param{const wxVariant\&
}{value
}}
277 \func{bool
}{operator $==$
}{\param{const wxString\&
}{value
}}
279 \func{bool
}{operator $==$
}{\param{const char*
}{value
}}
281 \func{bool
}{operator $==$
}{\param{char
}{value
}}
283 \func{bool
}{operator $==$
}{\param{const long
}{value
}}
285 \func{bool
}{operator $==$
}{\param{const bool
}{value
}}
287 \func{bool
}{operator $==$
}{\param{const double
}{value
}}
289 \func{bool
}{operator $==$
}{\param{const wxDate\&
}{value
}}
291 \func{bool
}{operator $==$
}{\param{const wxTime\&
}{value
}}
293 \func{bool
}{operator $==$
}{\param{void*
}{value
}}
295 \func{bool
}{operator $==$
}{\param{const wxList\&
}{value
}}
297 \func{bool
}{operator $==$
}{\param{const wxStringList\&
}{value
}}
299 Equality test operators.
301 \membersection{wxVariant::operator $!=$
}\label{wxvariantneq
}
303 \func{bool
}{operator $!=$
}{\param{const wxVariant\&
}{value
}}
305 \func{bool
}{operator $!=$
}{\param{const wxString\&
}{value
}}
307 \func{bool
}{operator $!=$
}{\param{const char*
}{value
}}
309 \func{bool
}{operator $!=$
}{\param{char
}{value
}}
311 \func{bool
}{operator $!=$
}{\param{const long
}{value
}}
313 \func{bool
}{operator $!=$
}{\param{const bool
}{value
}}
315 \func{bool
}{operator $!=$
}{\param{const double
}{value
}}
317 \func{bool
}{operator $!=$
}{\param{const wxDate\&
}{value
}}
319 \func{bool
}{operator $!=$
}{\param{const wxTime\&
}{value
}}
321 \func{bool
}{operator $!=$
}{\param{void*
}{value
}}
323 \func{bool
}{operator $!=$
}{\param{const wxList\&
}{value
}}
325 \func{bool
}{operator $!=$
}{\param{const wxStringList\&
}{value
}}
327 Inequality test operators.
329 \membersection{wxVariant::operator $
[]$
}\label{wxvariantarray
}
331 \constfunc{wxVariant
}{operator $
[]$
}{\param{size
\_t }{idx
}}
333 Returns the value at
{\it idx
} (zero-based).
335 \func{wxVariant\&
}{operator $
[]$
}{\param{size
\_t }{idx
}}
337 Returns a reference to the value at
{\it idx
} (zero-based). This can be used
338 to change the value at this index.
340 \membersection{wxVariant::operator char
}\label{wxvariantchar
}
342 \constfunc{char
}{operator char
}{\void}
344 Operator for implicit conversion to a char, using
\helpref{wxVariant::GetChar
}{wxvariantgetchar
}.
346 \membersection{wxVariant::operator double
}\label{wxvariantdouble
}
348 \constfunc{double
}{operator double
}{\void}
350 Operator for implicit conversion to a double, using
\helpref{wxVariant::GetDouble
}{wxvariantgetdouble
}.
352 \constfunc{long
}{operator long
}{\void}
354 Operator for implicit conversion to a long, using
\helpref{wxVariant::GetLong
}{wxvariantgetlong
}.
356 \membersection{wxVariant::operator wxDate
}\label{wxvariantwxdate
}
358 \constfunc{wxDate
}{operator wxDate
}{\void}
360 Operator for implicit conversion to a wxDate, using
\helpref{wxVariant::GetDate
}{wxvariantgetdate
}.
362 \membersection{wxVariant::operator wxString
}\label{wxvariantwxstring
}
364 \constfunc{wxString
}{operator wxString
}{\void}
366 Operator for implicit conversion to a string, using
\helpref{wxVariant::MakeString
}{wxvariantmakestring
}.
368 \membersection{wxVariant::operator wxTime
}\label{wxvariantwxtime
}
370 \constfunc{wxTime
}{operator wxTime
}{\void}
372 Operator for implicit conversion to a wxTime, using
\helpref{wxVariant::GetTime
}{wxvariantgettime
}.
374 \membersection{wxVariant::operator void*
}\label{wxvariantvoid
}
376 \constfunc{void*
}{operator void*
}{\void}
378 Operator for implicit conversion to a pointer to a void, using
\helpref{wxVariant::GetVoidPtr
}{wxvariantgetvoidptr
}.
380 \section{\class{wxVariantData
}}\label{wxvariantdata
}
382 The
{\bf wxVariantData
} is used to implement a new type for wxVariant. Derive from wxVariantData,
383 and override the pure virtual functions.
385 \wxheading{Derived from
}
387 \helpref{wxObject
}{wxobject
}
391 \helpref{wxVariant
}{wxvariant
}
393 \latexignore{\rtfignore{\wxheading{Members
}}}
395 \membersection{wxVariantData::wxVariantData
}\label{wxvariantdatactor
}
397 \func{}{wxVariantData
}{\void}
401 \membersection{wxVariantData::Copy
}\label{wxvariantdatacopy
}
403 \func{void
}{Copy
}{\param{wxVariantData\&
}{ data
}}
405 Copy the data from `this' object to
{\it data
}.
407 \membersection{wxVariantData::Eq
}\label{wxvariantdataeq
}
409 \constfunc{bool
}{Eq
}{\param{wxVariantData\&
}{ data
}}
411 Returns TRUE if this object is equal to
{\it data
}.
413 \membersection{wxVariantData::GetType
}\label{wxvariantdatagettype
}
415 \constfunc{wxString
}{GetType
}{\void}
417 Returns the string type of the data.
419 \membersection{wxVariantData::Read
}\label{wxvariantdataread
}
421 \func{bool
}{Read
}{\param{ostream\&
}{ stream
}}
423 \func{bool
}{Read
}{\param{wxString\&
}{ string
}}
425 Reads the data from
{\it stream
} or
{\it string
}.
427 \membersection{wxVariantData::Write
}\label{wxvariantdatawrite
}
429 \constfunc{bool
}{Write
}{\param{ostream\&
}{ stream
}}
431 \constfunc{bool
}{Write
}{\param{wxString\&
}{ string
}}
433 Writes the data to
{\it stream
} or
{\it string
}.