1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Name: variant.tex
%% Purpose: wxVariant docs
%% Author: wxWidgets Team
%% Modified by:
%% Created: 01/30/2005
%% RCS-ID: $Id: variant.tex 50299 2007-11-28 02:56:19Z VZ $
%% Copyright: (c) wxWidgets Team
%% License: wxWindows license
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{\class{wxVariant}}\label{wxvariant}
The {\bf wxVariant} class represents a container for any type.
A variant's value can be changed at run time, possibly to a different type of value.
As standard, wxVariant can store values of type bool, wxChar, double, long, string,
string list, time, date, void pointer, list of strings, and list of variants.
However, an application can extend wxVariant's capabilities by deriving from the
class \helpref{wxVariantData}{wxvariantdata} and using the wxVariantData form of
the wxVariant constructor or assignment operator to assign this data to a variant.
Actual values for user-defined types will need to be accessed via the wxVariantData
object, unlike the case for basic data types where convenience functions such as
\helpref{GetLong}{wxvariantgetlong} can be used.
Pointers to any \helpref{wxObject}{wxobject} derived class can also easily be stored
in a wxVariant. wxVariant will then use wxWidgets' built-in RTTI system to set the
type name (returned by \helpref{GetType}{wxvariantgettype}) and to perform
type-safety checks at runtime.
This class is useful for reducing the programming for certain tasks, such as an editor
for different data types, or a remote procedure call protocol.
An optional name member is associated with a wxVariant. This might be used, for example,
in CORBA or OLE automation classes, where named parameters are required.
Note that as of wxWidgets 2.7.1, wxVariant is \helpref{reference counted}{trefcount}.
Additionally, the convenience macros {\bf DECLARE\_VARIANT\_OBJECT} and
{\bf IMPLEMENT\_VARIANT\_OBJECT} were added so that adding (limited) support
for conversion to and from wxVariant can be very easily implemented without modifying
either wxVariant or the class to be stored by wxVariant. Since assignment operators
cannot be declared outside the class, the shift left operators are used like this:
\begin{verbatim}
// in the header file
DECLARE_VARIANT_OBJECT(MyClass)
// in the implementation file
IMPLEMENT_VARIANT_OBJECT(MyClass)
// in the user code
wxVariant variant;
MyClass value;
variant << value;
// or
value << variant;
\end{verbatim}
For this to work, MyClass must derive from \helpref{wxObject}{wxobject}, implement
the \helpref{wxWidgets RTTI system}{runtimeclassoverview}
and support the assignment operator and equality operator for itself. Ideally, it
should also be reference counted to make copying operations cheap and fast. This
can be most easily implemented using the reference counting support offered by
\helpref{wxObject}{wxobject} itself. By default, wxWidgets already implements
the shift operator conversion for a few of its drawing related classes:
\begin{verbatim}
IMPLEMENT_VARIANT_OBJECT(wxColour)
IMPLEMENT_VARIANT_OBJECT(wxImage)
IMPLEMENT_VARIANT_OBJECT(wxIcon)
IMPLEMENT_VARIANT_OBJECT(wxBitmap)
\end{verbatim}
\wxheading{Derived from}
\helpref{wxObject}{wxobject}
\wxheading{Include files}
<wx/variant.h>
\wxheading{See also}
\helpref{wxVariantData}{wxvariantdata}
\latexignore{\rtfignore{\wxheading{Members}}}
\membersection{wxVariant::wxVariant}\label{wxvariantctor}
\func{}{wxVariant}{\void}
Default constructor.
\func{}{wxVariant}{\param{const wxVariant\& }{variant}}
Copy constructor, uses \helpref{reference counting}{trefcount}.
\func{}{wxVariant}{\param{const wxChar*}{ value}, \param{const wxString\& }{name = ``"}}
\func{}{wxVariant}{\param{const wxString\&}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a string value.
\func{}{wxVariant}{\param{wxChar}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a character value.
\func{}{wxVariant}{\param{long}{ value}, \param{const wxString\& }{name = ``"}}
Construction from an integer value. You may need to cast to (long) to
avoid confusion with other constructors (such as the bool constructor).
\func{}{wxVariant}{\param{bool}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a boolean value.
\func{}{wxVariant}{\param{double}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a double-precision floating point value.
\func{}{wxVariant}{\param{const wxList\&}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a list of wxVariant objects. This constructor
copies {\it value}, the application is still responsible for
deleting {\it value} and its contents.
\func{}{wxVariant}{\param{void*}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a void pointer.
\func{}{wxVariant}{\param{wxObject*}{ value}, \param{const wxString\& }{name = ``"}}
Construction from a wxObject pointer.
\func{}{wxVariant}{\param{wxVariantData*}{ data}, \param{const wxString\& }{name = ``"}}
Construction from user-defined data. The variant holds onto the {\it data} pointer.
\func{}{wxVariant}{\param{wxDateTime\&}{ val}, \param{const wxString\& }{name = ``"}}
Construction from a \helpref{wxDateTime}{wxdatetime}.
\func{}{wxVariant}{\param{wxArrayString\&}{ val}, \param{const wxString\& }{name = ``"}}
Construction from an array of strings. This constructor copies {\it value} and its contents.
\func{}{wxVariant}{\param{DATE\_STRUCT*}{ val}, \param{const wxString\& }{name = ``"}}
Construction from a odbc date value. Represented internally by a \helpref{wxDateTime}{wxdatetime} value.
\func{}{wxVariant}{\param{TIME\_STRUCT*}{ val}, \param{const wxString\& }{name = ``"}}
Construction from a odbc time value. Represented internally by a \helpref{wxDateTime}{wxdatetime} value.
\func{}{wxVariant}{\param{TIMESTAMP\_STRUCT*}{ val}, \param{const wxString\& }{name = ``"}}
Construction from a odbc timestamp value. Represented internally by a \helpref{wxDateTime}{wxdatetime} value.
\membersection{wxVariant::\destruct{wxVariant}}\label{wxvariantdtor}
\func{}{\destruct{wxVariant}}{\void}
Destructor.
Note that destructor is protected, so wxVariantData cannot usually
be deleted. Instead, \helpref{DecRef}{wxvariantdatadecref} should be called.
See \helpref{reference-counted object destruction}{refcountdestruct} for more info.
\membersection{wxVariant::Append}\label{wxvariantappend}
\func{void}{Append}{\param{const wxVariant\&}{ value}}
Appends a value to the list.
\membersection{wxVariant::Clear}\label{wxvariantclear}
\func{void}{Clear}{\void}
Makes the variant null by deleting the internal data and
set the name to {\it wxEmptyString}.
\membersection{wxVariant::ClearList}\label{wxvariantclearlist}
\func{void}{ClearList}{\void}
Deletes the contents of the list.
\membersection{wxVariant::Convert}\label{wxvariantconvert}
\constfunc{bool}{Convert}{\param{long*}{ value}}
\constfunc{bool}{Convert}{\param{bool*}{ value}}
\constfunc{bool}{Convert}{\param{double*}{ value}}
\constfunc{bool}{Convert}{\param{wxString*}{ value}}
\constfunc{bool}{Convert}{\param{wxChar*}{ value}}
\constfunc{bool}{Convert}{\param{wxDateTime*}{ value}}
Retrieves and converts the value of this variant to the type that {\it value} is.
\membersection{wxVariant::GetCount}\label{wxvariantgetcount}
\constfunc{size\_t}{GetCount}{\void}
Returns the number of elements in the list.
\membersection{wxVariant::Delete}\label{wxvariantdelete}
\func{bool}{Delete}{\param{size\_t }{item}}
Deletes the zero-based {\it item} from the list.
\membersection{wxVariant::GetArrayString}\label{wxvariantgetarraystring}
\constfunc{wxArrayString}{GetArrayString}{\void}
Returns the string array value.
\membersection{wxVariant::GetBool}\label{wxvariantgetbool}
\constfunc{bool}{GetBool}{\void}
Returns the boolean value.
\membersection{wxVariant::GetChar}\label{wxvariantgetchar}
\constfunc{wxChar}{GetChar}{\void}
Returns the character value.
\membersection{wxVariant::GetData}\label{wxvariantgetdata}
\constfunc{wxVariantData*}{GetData}{\void}
Returns a pointer to the internal variant data. To take ownership
of this data, you must call its \helpref{IncRef}{wxvariantdataincref}
method. When you stop using it, \helpref{DecRef}{wxvariantdatadecref}
must be likewise called.
\membersection{wxVariant::GetDateTime}\label{wxvariantgetdatetime}
\constfunc{wxDateTime}{GetDateTime}{\void}
Returns the date value.
\membersection{wxVariant::GetDouble}\label{wxvariantgetdouble}
\constfunc{double}{GetDouble}{\void}
Returns the floating point value.
\membersection{wxVariant::GetLong}\label{wxvariantgetlong}
\constfunc{long}{GetLong}{\void}
Returns the integer value.
\membersection{wxVariant::GetName}\label{wxvariantgetname}
\constfunc{const wxString\&}{GetName}{\void}
Returns a constant reference to the variant name.
\membersection{wxVariant::GetString}\label{wxvariantgetstring}
\constfunc{wxString}{GetString}{\void}
Gets the string value.
\membersection{wxVariant::GetType}\label{wxvariantgettype}
\constfunc{wxString}{GetType}{\void}
Returns the value type as a string. The built-in types are: bool, char, date, double, list, long, string, stringlist, time, void*.
If the variant is null, the value type returned is the string ``null" (not the empty string).
\membersection{wxVariant::GetVoidPtr}\label{wxvariantgetvoidptr}
\constfunc{void*}{GetVoidPtr}{\void}
Gets the void pointer value.
\membersection{wxVariant::GetWxObjectPtr}\label{wxvariantgetwxobjectptr}
\constfunc{wxObject*}{GetWxObjectPtr}{\void}
Gets the wxObject pointer value.
\membersection{wxVariant::Insert}\label{wxvariantinsert}
\func{void}{Insert}{\param{const wxVariant\&}{ value}}
Inserts a value at the front of the list.
\membersection{wxVariant::IsNull}\label{wxvariantisnull}
\constfunc{bool}{IsNull}{\void}
Returns true if there is no data associated with this variant, false if there is data.
\membersection{wxVariant::IsType}\label{wxvariantistype}
\constfunc{bool}{IsType}{\param{const wxString\&}{ type}}
Returns true if {\it type} matches the type of the variant, false otherwise.
\membersection{wxVariant::IsValueKindOf}\label{wxvariantisvaluekindof}
\constfunc{bool}{IsValueKindOf}{\param{const wxClassInfo* type}{ type}}
Returns true if the data is derived from the class described by {\it type}, false otherwise.
\membersection{wxVariant::MakeNull}\label{wxvariantmakenull}
\func{void}{MakeNull}{\void}
Makes the variant null by deleting the internal data.
\membersection{wxVariant::MakeString}\label{wxvariantmakestring}
\constfunc{wxString}{MakeString}{\void}
Makes a string representation of the variant value (for any type).
\membersection{wxVariant::Member}\label{wxvariantmember}
\constfunc{bool}{Member}{\param{const wxVariant\&}{ value}}
Returns true if {\it value} matches an element in the list.
\membersection{wxVariant::NullList}\label{wxvariantnulllist}
\func{void}{NullList}{\void}
Makes an empty list. This differs from a null variant which has no data; a null list
is of type list, but the number of elements in the list is zero.
\membersection{wxVariant::SetData}\label{wxvariantsetdata}
\func{void}{SetData}{\param{wxVariantData*}{ data}}
Sets the internal variant data, deleting the existing data if there is any.
\membersection{wxVariant::operator $=$}\label{wxvariantassignment}
\func{void}{operator $=$}{\param{const wxVariant\& }{value}}
\func{void}{operator $=$}{\param{wxVariantData* }{value}}
\func{void}{operator $=$}{\param{const wxString\& }{value}}
\func{void}{operator $=$}{\param{const wxChar* }{value}}
\func{void}{operator $=$}{\param{wxChar }{value}}
\func{void}{operator $=$}{\param{const long }{value}}
\func{void}{operator $=$}{\param{const bool }{value}}
\func{void}{operator $=$}{\param{const double }{value}}
\func{void}{operator $=$}{\param{void* }{value}}
\func{void}{operator $=$}{\param{wxObject* }{value}}
\func{void}{operator $=$}{\param{const wxList\& }{value}}
\func{void}{operator $=$}{\param{const wxDateTime\& }{value}}
\func{void}{operator $=$}{\param{const wxArrayString\& }{value}}
\func{void}{operator $=$}{\param{const DATE\_STRUCT* }{value}}
\func{void}{operator $=$}{\param{const TIME\_STRUCT* }{value}}
\func{void}{operator $=$}{\param{const TIMESTAMP\_STRUCT* }{value}}
Assignment operators, using \helpref{reference counting}{trefcount} when possible.
\membersection{wxVariant::operator $==$}\label{wxvarianteq}
\constfunc{bool}{operator $==$}{\param{const wxVariant\& }{value}}
\constfunc{bool}{operator $==$}{\param{const wxString\& }{value}}
\constfunc{bool}{operator $==$}{\param{const wxChar* }{value}}
\constfunc{bool}{operator $==$}{\param{wxChar }{value}}
\constfunc{bool}{operator $==$}{\param{const long }{value}}
\constfunc{bool}{operator $==$}{\param{const bool }{value}}
\constfunc{bool}{operator $==$}{\param{const double }{value}}
\constfunc{bool}{operator $==$}{\param{void* }{value}}
\constfunc{bool}{operator $==$}{\param{wxObject* }{value}}
\constfunc{bool}{operator $==$}{\param{const wxList\& }{value}}
\constfunc{bool}{operator $==$}{\param{const wxArrayString\& }{value}}
\constfunc{bool}{operator $==$}{\param{const wxDateTime\& }{value}}
Equality test operators.
\membersection{wxVariant::operator $!=$}\label{wxvariantneq}
\constfunc{bool}{operator $!=$}{\param{const wxVariant\& }{value}}
\constfunc{bool}{operator $!=$}{\param{const wxString\& }{value}}
\constfunc{bool}{operator $!=$}{\param{const wxChar* }{value}}
\constfunc{bool}{operator $!=$}{\param{wxChar }{value}}
\constfunc{bool}{operator $!=$}{\param{const long }{value}}
\constfunc{bool}{operator $!=$}{\param{const bool }{value}}
\constfunc{bool}{operator $!=$}{\param{const double }{value}}
\constfunc{bool}{operator $!=$}{\param{void* }{value}}
\constfunc{bool}{operator $!=$}{\param{wxObject* }{value}}
\constfunc{bool}{operator $!=$}{\param{const wxList\& }{value}}
\constfunc{bool}{operator $!=$}{\param{const wxArrayString\& }{value}}
\constfunc{bool}{operator $!=$}{\param{const wxDateTime\& }{value}}
Inequality test operators.
\membersection{wxVariant::operator $[]$}\label{wxvariantarray}
\constfunc{wxVariant}{operator $[]$}{\param{size\_t }{idx}}
Returns the value at {\it idx} (zero-based).
\func{wxVariant\&}{operator $[]$}{\param{size\_t }{idx}}
Returns a reference to the value at {\it idx} (zero-based). This can be used
to change the value at this index.
\membersection{wxVariant::operator wxChar}\label{wxvariantchar}
\constfunc{char}{operator wxChar}{\void}
Operator for implicit conversion to a wxChar, using \helpref{wxVariant::GetChar}{wxvariantgetchar}.
\membersection{wxVariant::operator double}\label{wxvariantdouble}
\constfunc{double}{operator double}{\void}
Operator for implicit conversion to a double, using \helpref{wxVariant::GetDouble}{wxvariantgetdouble}.
\constfunc{long}{operator long}{\void}
Operator for implicit conversion to a long, using \helpref{wxVariant::GetLong}{wxvariantgetlong}.
\membersection{wxVariant::operator wxString}\label{wxvariantwxstring}
\constfunc{wxString}{operator wxString}{\void}
Operator for implicit conversion to a string, using \helpref{wxVariant::MakeString}{wxvariantmakestring}.
\membersection{wxVariant::operator void*}\label{wxvariantvoid}
\constfunc{void*}{operator void*}{\void}
Operator for implicit conversion to a pointer to a void, using \helpref{wxVariant::GetVoidPtr}{wxvariantgetvoidptr}.
\membersection{wxVariant::operator wxDateTime}\label{wxvariantdatetime}
\constfunc{void*}{operator wxDateTime}{\void}
Operator for implicit conversion to a pointer to a \helpref{wxDateTime}{wxdatetime}, using \helpref{wxVariant::GetDateTime}{wxvariantgetdatetime}.
%% wxVariantData
\section{\class{wxVariantData}}\label{wxvariantdata}
The {\bf wxVariantData} class is used to implement a new type for \helpref{wxVariant}{wxvariant}.
Derive from wxVariantData, and override the pure virtual functions.
wxVariantData is \helpref{reference counted}{refcount}, but you don't normally have to care about this,
as wxVariant manages the count automatically. However, in case your application needs to take
ownership of wxVariantData, be aware that the object is created with reference count of 1,
and passing it to wxVariant will not increase this. In other words, \helpref{IncRef}{wxvariantdataincref}
needs to be called only if you both take ownership of wxVariantData and pass it to a wxVariant.
Also note that the destructor is protected, so you can never explicitly delete a wxVariantData
instance. Instead, \helpref{DecRef}{wxvariantdatadecref} will delete the object automatically
when the reference count reaches zero.
\wxheading{Derived from}
\helpref{wxObject}{wxobject}
\wxheading{Include files}
<wx/variant.h>
\wxheading{See also}
\helpref{wxVariant}{wxvariant}
\latexignore{\rtfignore{\wxheading{Members}}}
\membersection{wxVariantData::wxVariantData}\label{wxvariantdatactor}
\func{}{wxVariantData}{\void}
Default constructor.
\membersection{wxVariantData::DecRef}\label{wxvariantdatadecref}
\func{void}{DecRef}{\void}
Decreases reference count. If the count reaches zero, the object is
automatically deleted.
Note that destructor of wxVariantData is protected, so delete
cannot be used as normal. Instead, \helpref{DecRef}{wxvariantdatadecref} should be called.
\membersection{wxVariantData::Eq}\label{wxvariantdataeq}
\constfunc{bool}{Eq}{\param{wxVariantData\&}{ data}}
Returns true if this object is equal to {\it data}.
\membersection{wxVariantData::GetType}\label{wxvariantdatagettype}
\constfunc{wxString}{GetType}{\void}
Returns the string type of the data.
\membersection{wxVariantData::GetValueClassInfo}\label{wxvariantdatagetvalueclassinfo}
\constfunc{wxClassInfo*}{GetValueClassInfo}{\void}
If the data is a wxObject returns a pointer to the objects wxClassInfo structure, if
the data isn't a wxObject the method returns NULL.
\membersection{wxVariantData::IncRef}\label{wxvariantdataincref}
\func{void}{IncRef}{\void}
Increases reference count. Note that initially wxVariantData has reference count of 1.
\membersection{wxVariantData::Read}\label{wxvariantdataread}
\func{bool}{Read}{\param{ostream\&}{ stream}}
\func{bool}{Read}{\param{wxString\&}{ string}}
Reads the data from {\it stream} or {\it string}.
\membersection{wxVariantData::Write}\label{wxvariantdatawrite}
\constfunc{bool}{Write}{\param{ostream\&}{ stream}}
\constfunc{bool}{Write}{\param{wxString\&}{ string}}
Writes the data to {\it stream} or {\it string}.
\membersection{wxGetVariantCast}\label{wxgetvariantcast}
\func{classname *}{wxGetVariantCast}{wxVariant\&, classname}
This macro returns the data stored in {\it variant} cast to the type {\it classname *} if
the data is of this type (the check is done during the run-time) or
{\tt NULL} otherwise.
\wxheading{See also}
\helpref{RTTI overview}{runtimeclassoverview}\\
\helpref{wxDynamicCast}{wxdynamiccast}
|