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 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
|
'\" t
.TH QVariant 3qt "18 March 2002" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
.\"
.ad l
.nh
.SH NAME
QVariant \- Acts like a union for the most common Qt data types
.SH SYNOPSIS
\fC#include <qvariant.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "enum \fBType\fR { Invalid, Map, List, String, StringList, Font, Pixmap, Brush, Rect, Size, Color, Palette, ColorGroup, IconSet, Point, Image, Int, UInt, Bool, Double, CString, PointArray, Region, Bitmap, Cursor, SizePolicy, Date, Time, DateTime, ByteArray, BitArray, KeySequence }"
.br
.ti -1c
.BI "\fBQVariant\fR ()"
.br
.ti -1c
.BI "\fB~QVariant\fR ()"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QVariant & p )"
.br
.ti -1c
.BI "\fBQVariant\fR ( QDataStream & s )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QString & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QCString & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const char * val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QStringList & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QFont & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QPixmap & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QImage & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QBrush & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QPoint & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QRect & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QSize & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QColor & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QPalette & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QColorGroup & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QIconSet & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QPointArray & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QRegion & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QBitmap & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QCursor & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QDate & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QTime & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QDateTime & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QByteArray & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QBitArray & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QKeySequence & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QValueList<QVariant> & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const QMap<QString, QVariant> & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( int val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( uint val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( bool val, int )"
.br
.ti -1c
.BI "\fBQVariant\fR ( double val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( QSizePolicy val )"
.br
.ti -1c
.BI "QVariant & \fBoperator=\fR ( const QVariant & variant )"
.br
.ti -1c
.BI "bool \fBoperator==\fR ( const QVariant & v ) const"
.br
.ti -1c
.BI "bool \fBoperator!=\fR ( const QVariant & v ) const"
.br
.ti -1c
.BI "Type \fBtype\fR () const"
.br
.ti -1c
.BI "const char * \fBtypeName\fR () const"
.br
.ti -1c
.BI "bool \fBcanCast\fR ( Type t ) const"
.br
.ti -1c
.BI "bool \fBcast\fR ( Type t )"
.br
.ti -1c
.BI "bool \fBisValid\fR () const"
.br
.ti -1c
.BI "void \fBclear\fR ()"
.br
.ti -1c
.BI "const QString \fBtoString\fR () const"
.br
.ti -1c
.BI "const QCString \fBtoCString\fR () const"
.br
.ti -1c
.BI "const QStringList \fBtoStringList\fR () const"
.br
.ti -1c
.BI "const QFont \fBtoFont\fR () const"
.br
.ti -1c
.BI "const QPixmap \fBtoPixmap\fR () const"
.br
.ti -1c
.BI "const QImage \fBtoImage\fR () const"
.br
.ti -1c
.BI "const QBrush \fBtoBrush\fR () const"
.br
.ti -1c
.BI "const QPoint \fBtoPoint\fR () const"
.br
.ti -1c
.BI "const QRect \fBtoRect\fR () const"
.br
.ti -1c
.BI "const QSize \fBtoSize\fR () const"
.br
.ti -1c
.BI "const QColor \fBtoColor\fR () const"
.br
.ti -1c
.BI "const QPalette \fBtoPalette\fR () const"
.br
.ti -1c
.BI "const QColorGroup \fBtoColorGroup\fR () const"
.br
.ti -1c
.BI "const QIconSet \fBtoIconSet\fR () const"
.br
.ti -1c
.BI "const QPointArray \fBtoPointArray\fR () const"
.br
.ti -1c
.BI "const QBitmap \fBtoBitmap\fR () const"
.br
.ti -1c
.BI "const QRegion \fBtoRegion\fR () const"
.br
.ti -1c
.BI "const QCursor \fBtoCursor\fR () const"
.br
.ti -1c
.BI "const QDate \fBtoDate\fR () const"
.br
.ti -1c
.BI "const QTime \fBtoTime\fR () const"
.br
.ti -1c
.BI "const QDateTime \fBtoDateTime\fR () const"
.br
.ti -1c
.BI "const QByteArray \fBtoByteArray\fR () const"
.br
.ti -1c
.BI "const QBitArray \fBtoBitArray\fR () const"
.br
.ti -1c
.BI "const QKeySequence \fBtoKeySequence\fR () const"
.br
.ti -1c
.BI "int \fBtoInt\fR ( bool * ok = 0 ) const"
.br
.ti -1c
.BI "uint \fBtoUInt\fR ( bool * ok = 0 ) const"
.br
.ti -1c
.BI "bool \fBtoBool\fR () const"
.br
.ti -1c
.BI "double \fBtoDouble\fR ( bool * ok = 0 ) const"
.br
.ti -1c
.BI "const QValueList<QVariant> \fBtoList\fR () const"
.br
.ti -1c
.BI "const QMap<QString, QVariant> \fBtoMap\fR () const"
.br
.ti -1c
.BI "QSizePolicy \fBtoSizePolicy\fR () const"
.br
.ti -1c
.BI "QValueListConstIterator<QString> \fBstringListBegin\fR () const"
.br
.ti -1c
.BI "QValueListConstIterator<QString> \fBstringListEnd\fR () const"
.br
.ti -1c
.BI "QValueListConstIterator<QVariant> \fBlistBegin\fR () const"
.br
.ti -1c
.BI "QValueListConstIterator<QVariant> \fBlistEnd\fR () const"
.br
.ti -1c
.BI "QMapConstIterator<QString, QVariant> \fBmapBegin\fR () const"
.br
.ti -1c
.BI "QMapConstIterator<QString, QVariant> \fBmapEnd\fR () const"
.br
.ti -1c
.BI "QMapConstIterator<QString, QVariant> \fBmapFind\fR ( const QString & key ) const"
.br
.ti -1c
.BI "QString & \fBasString\fR ()"
.br
.ti -1c
.BI "QCString & \fBasCString\fR ()"
.br
.ti -1c
.BI "QStringList & \fBasStringList\fR ()"
.br
.ti -1c
.BI "QFont & \fBasFont\fR ()"
.br
.ti -1c
.BI "QPixmap & \fBasPixmap\fR ()"
.br
.ti -1c
.BI "QImage & \fBasImage\fR ()"
.br
.ti -1c
.BI "QBrush & \fBasBrush\fR ()"
.br
.ti -1c
.BI "QPoint & \fBasPoint\fR ()"
.br
.ti -1c
.BI "QRect & \fBasRect\fR ()"
.br
.ti -1c
.BI "QSize & \fBasSize\fR ()"
.br
.ti -1c
.BI "QColor & \fBasColor\fR ()"
.br
.ti -1c
.BI "QPalette & \fBasPalette\fR ()"
.br
.ti -1c
.BI "QColorGroup & \fBasColorGroup\fR ()"
.br
.ti -1c
.BI "QIconSet & \fBasIconSet\fR ()"
.br
.ti -1c
.BI "QPointArray & \fBasPointArray\fR ()"
.br
.ti -1c
.BI "QBitmap & \fBasBitmap\fR ()"
.br
.ti -1c
.BI "QRegion & \fBasRegion\fR ()"
.br
.ti -1c
.BI "QCursor & \fBasCursor\fR ()"
.br
.ti -1c
.BI "QDate & \fBasDate\fR ()"
.br
.ti -1c
.BI "QTime & \fBasTime\fR ()"
.br
.ti -1c
.BI "QDateTime & \fBasDateTime\fR ()"
.br
.ti -1c
.BI "QByteArray & \fBasByteArray\fR ()"
.br
.ti -1c
.BI "QBitArray & \fBasBitArray\fR ()"
.br
.ti -1c
.BI "QKeySequence & \fBasKeySequence\fR ()"
.br
.ti -1c
.BI "int & \fBasInt\fR ()"
.br
.ti -1c
.BI "uint & \fBasUInt\fR ()"
.br
.ti -1c
.BI "bool & \fBasBool\fR ()"
.br
.ti -1c
.BI "double & \fBasDouble\fR ()"
.br
.ti -1c
.BI "QValueList<QVariant> & \fBasList\fR ()"
.br
.ti -1c
.BI "QMap<QString, QVariant> & \fBasMap\fR ()"
.br
.ti -1c
.BI "QSizePolicy & \fBasSizePolicy\fR ()"
.br
.in -1c
.SS "Static Public Members"
.in +1c
.ti -1c
.BI "const char * \fBtypeToName\fR ( Type typ )"
.br
.ti -1c
.BI "Type \fBnameToType\fR ( const char * name )"
.br
.in -1c
.SH DESCRIPTION
The QVariant class acts like a union for the most common Qt data types.
.PP
Because C++ forbids unions from including types that have non-default constructors or destructors, most interesting Qt classes cannot be used in unions. This is a problem when using QObject::property(), among other things.
.PP
This class provides union functionality for property() and most other needs that might be solved by a union including e.g. QWidget.
.PP
A QVariant object can hold any one type() at a time. For example, you can find out what type, T, it holds, convert it to a different type using one of the asT() functions, e.g. asSize(), get its value using one of the toT() functions, e.g. toSize(), and check whether the type can be converted to a particular type using canCast().
.PP
The methods named toT() (for any supported T, see the Type documentation for a list) are const. If you ask for the stored type, they return a copy of the stored object. If you ask for a type that can be generated from the stored type, toT() copies and converts and leaves the object itself unchanged. If you ask for a type that cannot be generated from the stored type, the result depends on the type (see the function documentation for details).
.PP
Note that three data types supported by QVariant are explicitly shared, namely QImage, QPointArray, and QCString, and in these cases the toT() methods return a shallow copy. In almost all cases you must make a deep copy of the returned values before modifying them.
.PP
The asT() functions are not const. They do conversion like the toT() methods, set the variant to hold the converted value, and return a reference to the new contents of the variant.
.PP
Here is example code to demonstrate the use of QVariant:
.PP
.nf
.br
QDataStream out(...);
.br
QVariant v(123); // The variant now contains an int
.br
int x = v.toInt(); // x = 123
.br
out << v; // Writes a type tag and an int to out
.br
v = QVariant("hello"); // The variant now contains a QCString
.br
v = QVariant(tr("hello"));// The variant now contains a QString
.br
int y = v.toInt(); // y = 0 since v cannot be converted to an int
.br
QString s = v.toString(); // s = tr("hello") (see QObject::tr())
.br
out << v; // Writes a type tag and a QString to out
.br
...
.br
QDataStream in(...); // (opening the previously written stream)
.br
in >> v; // Reads an Int variant
.br
int z = v.toInt(); // z = 123
.br
qDebug("Type is %s", // prints "Type is int"
.br
v.typeName());
.br
v.asInt() += 100; // The variant now hold the value 223.
.br
v = QVariant( QStringList() );
.br
v.asStringList().append( "Hello" );
.br
.fi
.PP
You can even have store QValueList<QVariant>s and QMap<QString,QVariant>s in a variant, so you can easily construct arbitrarily complex data structures of arbitrary types. This is very powerful and versatile, but may prove less memory and speed efficient than storing specific types in standard data structures. (See the Collection Classes.)
.PP
See also Miscellaneous Classes and Object Model.
.SS "Member Type Documentation"
.SH "QVariant::Type"
This enum type defines the types of variable that a QVariant can contain. The supported enum values and the associated types are
.TP
\fCQVariant::Invalid\fR - no type
.TP
\fCQVariant::List\fR - a QValueList<QVariant>
.TP
\fCQVariant::Map\fR - a QMap<QString,QVariant>
.TP
\fCQVariant::String\fR - a QString
.TP
\fCQVariant::StringList\fR - a QStringList
.TP
\fCQVariant::Font\fR - a QFont
.TP
\fCQVariant::Pixmap\fR - a QPixmap
.TP
\fCQVariant::Brush\fR - a QBrush
.TP
\fCQVariant::Rect\fR - a QRect
.TP
\fCQVariant::Size\fR - a QSize
.TP
\fCQVariant::Color\fR - a QColor
.TP
\fCQVariant::Palette\fR - a QPalette
.TP
\fCQVariant::ColorGroup\fR - a QColorGroup
.TP
\fCQVariant::IconSet\fR - a QIconSet
.TP
\fCQVariant::Point\fR - a QPoint
.TP
\fCQVariant::Image\fR - a QImage
.TP
\fCQVariant::Int\fR - an int
.TP
\fCQVariant::UInt\fR - an unsigned int
.TP
\fCQVariant::Bool\fR - a bool
.TP
\fCQVariant::Double\fR - a double
.TP
\fCQVariant::CString\fR - a QCString
.TP
\fCQVariant::PointArray\fR - a QPointArray
.TP
\fCQVariant::Region\fR - a QRegion
.TP
\fCQVariant::Bitmap\fR - a QBitmap
.TP
\fCQVariant::Cursor\fR - a QCursor
.TP
\fCQVariant::Date\fR - a QDate
.TP
\fCQVariant::Time\fR - a QTime
.TP
\fCQVariant::DateTime\fR - a QDateTime
.TP
\fCQVariant::ByteArray\fR - a QByteArray
.TP
\fCQVariant::BitArray\fR - a QBitArray
.TP
\fCQVariant::SizePolicy\fR - a QSizePolicy
.TP
\fCQVariant::KeySequence\fR - a QKeySequence
.PP
Note that Qt's definition of bool depends on the compiler. qglobal.h has the system-dependent definition of bool.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QVariant::QVariant ()"
Constructs an invalid variant.
.SH "QVariant::QVariant ( const QVariant & p )"
Constructs a copy of the variant, \fIp\fR, passed as the argument to this constructor. Usually this is a deep copy, but a shallow copy is made if the stored data type is explicitly shared, as e.g. QImage is.
.SH "QVariant::QVariant ( QDataStream & s )"
Reads the variant from the data stream, \fIs\fR.
.SH "QVariant::QVariant ( const QString & val )"
Constructs a new variant with a string value, \fIval\fR.
.SH "QVariant::QVariant ( const QCString & val )"
Constructs a new variant with a C-string value, \fIval\fR.
.PP
If you want to modify the QCString after you've passed it to this constructor, we recommend passing a deep copy (see QCString::copy()).
.SH "QVariant::QVariant ( const char * val )"
Constructs a new variant with a C-string value of \fIval\fR if \fIval\fR is non-null. The variant creates a deep copy of \fIval\fR.
.PP
If \fIval\fR is null, the resulting variant has type Invalid.
.SH "QVariant::QVariant ( const QStringList & val )"
Constructs a new variant with a string list value, \fIval\fR.
.SH "QVariant::QVariant ( const QFont & val )"
Constructs a new variant with a font value, \fIval\fR.
.SH "QVariant::QVariant ( const QPixmap & val )"
Constructs a new variant with a pixmap value, \fIval\fR.
.SH "QVariant::QVariant ( const QImage & val )"
Constructs a new variant with an image value, \fIval\fR.
.PP
Because QImage is explicitly shared, you may need to pass a deep copy to the variant using QImage::copy(), e.g. if you intend changing the image you've passed later on.
.SH "QVariant::QVariant ( const QBrush & val )"
Constructs a new variant with a brush value, \fIval\fR.
.SH "QVariant::QVariant ( const QPoint & val )"
Constructs a new variant with a point value, \fIval\fR.
.SH "QVariant::QVariant ( const QRect & val )"
Constructs a new variant with a rect value, \fIval\fR.
.SH "QVariant::QVariant ( const QSize & val )"
Constructs a new variant with a size value, \fIval\fR.
.SH "QVariant::QVariant ( const QColor & val )"
Constructs a new variant with a color value, \fIval\fR.
.SH "QVariant::QVariant ( const QPalette & val )"
Constructs a new variant with a color palette value, \fIval\fR.
.SH "QVariant::QVariant ( const QColorGroup & val )"
Constructs a new variant with a color group value, \fIval\fR.
.SH "QVariant::QVariant ( const QIconSet & val )"
Constructs a new variant with an icon set value, \fIval\fR.
.SH "QVariant::QVariant ( const QPointArray & val )"
Constructs a new variant with a point array value, \fIval\fR.
.PP
Because QPointArray is explicitly shared, you may need to pass a deep copy to the variant using QPointArray::copy(), e.g. if you intend changing the point array you've passed later on.
.SH "QVariant::QVariant ( const QRegion & val )"
Constructs a new variant with a region value, \fIval\fR.
.SH "QVariant::QVariant ( const QBitmap & val )"
Constructs a new variant with a bitmap value, \fIval\fR.
.SH "QVariant::QVariant ( const QCursor & val )"
Constructs a new variant with a cursor value, \fIval\fR.
.SH "QVariant::QVariant ( const QDate & val )"
Constructs a new variant with a date value, \fIval\fR.
.SH "QVariant::QVariant ( const QTime & val )"
Constructs a new variant with a time value, \fIval\fR.
.SH "QVariant::QVariant ( const QDateTime & val )"
Constructs a new variant with a date/time value, \fIval\fR.
.SH "QVariant::QVariant ( const QByteArray & val )"
Constructs a new variant with a bytearray value, \fIval\fR.
.SH "QVariant::QVariant ( const QBitArray & val )"
Constructs a new variant with a bitarray value, \fIval\fR.
.SH "QVariant::QVariant ( const QKeySequence & val )"
Constructs a new variant with a key sequence value, \fIval\fR.
.SH "QVariant::QVariant ( const QValueList<QVariant> & val )"
Constructs a new variant with a list value, \fIval\fR.
.SH "QVariant::QVariant ( const QMap<QString, QVariant> & val )"
Constructs a new variant with a map of QVariants, \fIval\fR.
.SH "QVariant::QVariant ( int val )"
Constructs a new variant with an integer value, \fIval\fR.
.SH "QVariant::QVariant ( uint val )"
Constructs a new variant with an unsigned integer value, \fIval\fR.
.SH "QVariant::QVariant ( bool val, int )"
Constructs a new variant with a boolean value, \fIval\fR. The integer argument is a dummy, necessary for compatibility with some compilers.
.SH "QVariant::QVariant ( double val )"
Constructs a new variant with a floating point value, \fIval\fR.
.SH "QVariant::QVariant ( QSizePolicy val )"
Constructs a new variant with a size policy value, \fIval\fR.
.SH "QVariant::~QVariant ()"
Destroys the QVariant and the contained object.
.PP
Note that subclasses that reimplement clear() should reimplement the destructor to call clear(). This destructor calls clear(), but because it is the destructor, QVariant::clear() is called rather than a subclass's clear().
.SH "QBitArray & QVariant::asBitArray ()"
Tries to convert the variant to hold a QBitArray value. If that is not possible then the variant is set to an empty bitarray.
.PP
Returns a reference to the stored bitarray.
.PP
See also toBitArray().
.SH "QBitmap & QVariant::asBitmap ()"
Tries to convert the variant to hold a bitmap value. If that is not possible the variant is set to a null bitmap.
.PP
Returns a reference to the stored bitmap.
.PP
See also toBitmap().
.SH "bool & QVariant::asBool ()"
Returns the variant's value as bool reference.
.SH "QBrush & QVariant::asBrush ()"
Tries to convert the variant to hold a brush value. If that is not possible the variant is set to a default black brush.
.PP
Returns a reference to the stored brush.
.PP
See also toBrush().
.SH "QByteArray & QVariant::asByteArray ()"
Tries to convert the variant to hold a QByteArray value. If that is not possible then the variant is set to an empty bytearray.
.PP
Returns a reference to the stored bytearray.
.PP
See also toByteArray().
.SH "QCString & QVariant::asCString ()"
Tries to convert the variant to hold a string value. If that is not possible the variant is set to an empty string.
.PP
Returns a reference to the stored string.
.PP
See also toCString().
.SH "QColor & QVariant::asColor ()"
Tries to convert the variant to hold a QColor value. If that is not possible the variant is set to an invalid color.
.PP
Returns a reference to the stored color.
.PP
See also toColor() and QColor::isValid().
.SH "QColorGroup & QVariant::asColorGroup ()"
Tries to convert the variant to hold a QColorGroup value. If that is not possible the variant is set to a color group with all colors set to black.
.PP
Returns a reference to the stored color group.
.PP
See also toColorGroup().
.SH "QCursor & QVariant::asCursor ()"
Tries to convert the variant to hold a QCursor value. If that is not possible the variant is set to a default arrow cursor.
.PP
Returns a reference to the stored cursor.
.PP
See also toCursor().
.SH "QDate & QVariant::asDate ()"
Tries to convert the variant to hold a QDate value. If that is not possible then the variant is set to an invalid date.
.PP
Returns a reference to the stored date.
.PP
See also toDate().
.SH "QDateTime & QVariant::asDateTime ()"
Tries to convert the variant to hold a QDateTime value. If that is not possible then the variant is set to an invalid date/time.
.PP
Returns a reference to the stored date/time.
.PP
See also toDateTime().
.SH "double & QVariant::asDouble ()"
Returns the variant's value as double reference.
.SH "QFont & QVariant::asFont ()"
Tries to convert the variant to hold a QFont. If that is not possible the variant is set to a default font.
.PP
Returns a reference to the stored font.
.PP
See also toFont().
.SH "QIconSet & QVariant::asIconSet ()"
Tries to convert the variant to hold a QIconSet value. If that is not possible the variant is set to an empty iconset.
.PP
Returns a reference to the stored iconset.
.PP
See also toIconSet().
.SH "QImage & QVariant::asImage ()"
Tries to convert the variant to hold an image value. If that is not possible the variant is set to a null image.
.PP
Returns a reference to the stored image.
.PP
See also toImage().
.SH "int & QVariant::asInt ()"
Returns the variant's value as int reference.
.SH "QKeySequence & QVariant::asKeySequence ()"
Tries to convert the variant to hold a QKeySequence value. If that is not possible then the variant is set to an empty key sequence.
.PP
Returns a reference to the stored key sequence.
.PP
See also toKeySequence().
.SH "QValueList<QVariant> & QVariant::asList ()"
Returns the variant's value as variant list reference.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
QValueList<QVariant> list = myVariant.asList();
.br
QValueList<QVariant>::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
myProcessing( *it );
.br
++it;
.br
}
.br
.fi
.SH "QMap<QString, QVariant> & QVariant::asMap ()"
Returns the variant's value as variant map reference.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
QMap<QString, QVariant> list = myVariant.asMap();
.br
QMap<QString, QVariant>::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
myProcessing( *it );
.br
++it;
.br
}
.br
.fi
.SH "QPalette & QVariant::asPalette ()"
Tries to convert the variant to hold a QPalette value. If that is not possible the variant is set to a palette with black colors only.
.PP
Returns a reference to the stored palette.
.PP
See also toString().
.SH "QPixmap & QVariant::asPixmap ()"
Tries to convert the variant to hold a pixmap value. If that is not possible the variant is set to a null pixmap.
.PP
Returns a reference to the stored pixmap.
.PP
See also toPixmap().
.SH "QPoint & QVariant::asPoint ()"
Tries to convert the variant to hold a point value. If that is not possible the variant is set to a null point.
.PP
Returns a reference to the stored point.
.PP
See also toPoint().
.SH "QPointArray & QVariant::asPointArray ()"
Tries to convert the variant to hold a QPointArray value. If that is not possible the variant is set to an empty point array.
.PP
Returns a reference to the stored point array.
.PP
See also toPointArray().
.SH "QRect & QVariant::asRect ()"
Tries to convert the variant to hold a rectangle value. If that is not possible the variant is set to an empty rectangle.
.PP
Returns a reference to the stored rectangle.
.PP
See also toRect().
.SH "QRegion & QVariant::asRegion ()"
Tries to convert the variant to hold a QRegion value. If that is not possible the variant is set to a null region.
.PP
Returns a reference to the stored region.
.PP
See also toRegion().
.SH "QSize & QVariant::asSize ()"
Tries to convert the variant to hold a QSize value. If that is not possible the variant is set to an invalid size.
.PP
Returns a reference to the stored size.
.PP
See also toSize() and QSize::isValid().
.SH "QSizePolicy & QVariant::asSizePolicy ()"
Tries to convert the variant to hold a QSizePolicy value. If that fails, the variant is set to an arbitrary size policy.
.SH "QString & QVariant::asString ()"
Tries to convert the variant to hold a string value. If that is not possible the variant is set to an empty string.
.PP
Returns a reference to the stored string.
.PP
See also toString().
.SH "QStringList & QVariant::asStringList ()"
Tries to convert the variant to hold a QStringList value. If that is not possible the variant is set to an empty string list.
.PP
Returns a reference to the stored string list.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
QStringList list = myVariant.asStringList();
.br
QStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
myProcessing( *it );
.br
++it;
.br
}
.br
.fi
.PP
See also toStringList().
.SH "QTime & QVariant::asTime ()"
Tries to convert the variant to hold a QTime value. If that is not possible then the variant is set to an invalid time.
.PP
Returns a reference to the stored time.
.PP
See also toTime().
.SH "uint & QVariant::asUInt ()"
Returns the variant's value as unsigned int reference.
.SH "bool QVariant::canCast ( Type t ) const"
Returns TRUE if the variant's type can be cast to the requested type, \fIt\fR. Such casting is done automatically when calling the toInt(), toBool(), ... or asInt(), asBool(), ... methods.
.PP
The following casts are done automatically:
.TP
Bool => Double, Int, UInt
.TP
CString => String
.TP
Date => String
.TP
DateTime => String, Date, Time
.TP
Double => String, Int, Bool, UInt
.TP
Int => String, Double, Bool, UInt
.TP
List => StringList (if the list contains strings or something that can be cast to a string)
.TP
String => CString, Int, Uint, Double, Date, Time, DateTime
.TP
StringList => List
.TP
Time => String
.TP
UInt => String, Double, Bool, Int
.SH "bool QVariant::cast ( Type t )"
Casts the variant to the requested type. If the cast cannot be done, the variant is set to the default value of the requested type (e.g. an empty string if the requested type \fIt\fR is QVariant::String, an empty point array if the requested type \fIt\fR is QVariant::PointArray, etc). Returns TRUE if the current type of the variant was successfully casted; otherwise returns FALSE.
.PP
See also canCast().
.SH "void QVariant::clear ()"
Convert this variant to type Invalid and free up any resources used.
.SH "bool QVariant::isValid () const"
Returns TRUE if the storage type of this variant is not QVariant::Invalid; otherwise returns FALSE.
.SH "QValueListConstIterator<QVariant> QVariant::listBegin () const"
Returns an iterator to the first item in the list if the variant's type is appropriate, or else a null iterator.
.SH "QValueListConstIterator<QVariant> QVariant::listEnd () const"
Returns the end iterator for the list if the variant's type is appropriate, or else a null iterator.
.SH "QMapConstIterator<QString, QVariant> QVariant::mapBegin () const"
Returns an iterator to the first item in the map, if the variant's type is appropriate, or else a null iterator.
.SH "QMapConstIterator<QString, QVariant> QVariant::mapEnd () const"
Returns the end iterator for the map, if the variant's type is appropriate, or else a null iterator.
.SH "QMapConstIterator<QString, QVariant> QVariant::mapFind ( const QString & key ) const"
Returns an iterator to the item in the map with \fIkey\fR as key, if the variant's type is appropriate and \fIkey\fR is a valid key, or else a null iterator.
.SH "Type QVariant::nameToType ( const char * name )\fC [static]\fR"
Converts the string representation of the storage type gven in \fIname\fR, to its enum representation.
.PP
If the string representation cannot be converted to any enum representation, the variant is set to Invalid.
.SH "bool QVariant::operator!= ( const QVariant & v ) const"
Compares this QVariant with \fIv\fR and returns TRUE if they are not equal; otherwise returns FALSE.
.SH "QVariant & QVariant::operator= ( const QVariant & variant )"
Assigns the value of the variant \fIvariant\fR to this variant.
.PP
This is a deep copy of the variant, but note that if the variant holds an explicitly shared type such as QImage, a shallow copy is performed.
.SH "bool QVariant::operator== ( const QVariant & v ) const"
Compares this QVariant with \fIv\fR and returns TRUE if they are equal; otherwise returns FALSE.
.SH "QValueListConstIterator<QString> QVariant::stringListBegin () const"
Returns an iterator to the first string in the list if the variant's type is StringList, or else a null iterator.
.SH "QValueListConstIterator<QString> QVariant::stringListEnd () const"
Returns the end iterator for the list if the variant's type is StringList, or else a null iterator.
.SH "const QBitArray QVariant::toBitArray () const"
Returns the variant as a QBitArray if the variant has type() BitArray, or an empty bitarray otherwise.
.PP
See also asBitArray().
.SH "const QBitmap QVariant::toBitmap () const"
Returns the variant as a QBitmap if the variant has type() Bitmap, or a null QBitmap otherwise.
.PP
See also asBitmap().
.SH "bool QVariant::toBool () const"
Returns the variant as a bool if the variant has type() Bool.
.PP
Returns TRUE if the variant has type Int, UInt or Double and its value is non-zero; otherwise returns FALSE.
.PP
See also asBool().
.SH "const QBrush QVariant::toBrush () const"
Returns the variant as a QBrush if the variant has type() Brush, or a default brush (with all black colors) otherwise.
.PP
See also asBrush().
.SH "const QByteArray QVariant::toByteArray () const"
Returns the variant as a QByteArray if the variant has type() ByteArray, or an empty bytearray otherwise.
.PP
See also asByteArray().
.SH "const QCString QVariant::toCString () const"
Returns the variant as a QCString if the variant has type() CString or String, or a 0 otherwise.
.PP
See also asCString().
.SH "const QColor QVariant::toColor () const"
Returns the variant as a QColor if the variant has type() Color, or an invalid color otherwise.
.PP
See also asColor().
.SH "const QColorGroup QVariant::toColorGroup () const"
Returns the variant as a QColorGroup if the variant has type() ColorGroup, or a completely black color group otherwise.
.PP
See also asColorGroup().
.SH "const QCursor QVariant::toCursor () const"
Returns the variant as a QCursor if the variant has type() Cursor, or the default arrow cursor otherwise.
.PP
See also asCursor().
.SH "const QDate QVariant::toDate () const"
Returns the variant as a QDate if the variant has type() Date, DateTime or String, or an invalid date otherwise.
.PP
Note that if the type() is String an invalid date will be returned if the string cannot be parsed as an Qt::ISODate format date.
.PP
See also asDate().
.SH "const QDateTime QVariant::toDateTime () const"
Returns the variant as a QDateTime if the variant has type() DateTime or String, or an invalid date/time otherwise.
.PP
Note that if the type() is String an invalid date/time will be returned if the string cannot be parsed as an Qt::ISODate format date/time.
.PP
See also asDateTime().
.SH "double QVariant::toDouble ( bool * ok = 0 ) const"
Returns the variant as a double if the variant has type() String, CString, Double, Int, UInt, or Bool; or 0.0 otherwise.
.PP
If \fIok\fR is non-null, \fI*ok\fR is set to TRUE if the value could be converted to a double and FALSE otherwise.
.PP
See also asDouble().
.SH "const QFont QVariant::toFont () const"
Returns the variant as a QFont if the variant has type() Font, or the default font otherwise.
.PP
See also asFont().
.SH "const QIconSet QVariant::toIconSet () const"
Returns the variant as a QIconSet if the variant has type() IconSet, or an icon set of null pixmaps otherwise.
.PP
See also asIconSet().
.SH "const QImage QVariant::toImage () const"
Returns the variant as a QImage if the variant has type() Image, or a null image otherwise.
.PP
See also asImage().
.SH "int QVariant::toInt ( bool * ok = 0 ) const"
Returns the variant as an int if the variant has type() String, CString, Int, UInt, Double, Bool or KeySequence; or 0 otherwise.
.PP
If \fIok\fR is non-null, \fI*ok\fR is set to TRUE if the value could be converted to an int and FALSE otherwise.
.PP
See also asInt() and canCast().
.SH "const QKeySequence QVariant::toKeySequence () const"
Returns the variant as a QKeySequence if the variant has type() KeySequence, Int or String, or an empty key sequence otherwise.
.PP
Note that not all Ints and Strings are valid key sequences and in such cases an empty key sequence will be returned.
.PP
See also asKeySequence().
.SH "const QValueList<QVariant> QVariant::toList () const"
Returns the variant as a QValueList<QVariant> if the variant has type() List or StringList, or an empty list otherwise.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
QValueList<QVariant> list = myVariant.toList();
.br
QValueList<QVariant>::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
myProcessing( *it );
.br
++it;
.br
}
.br
.fi
.PP
See also asList().
.SH "const QMap<QString, QVariant> QVariant::toMap () const"
Returns the variant as a QMap<QString,QVariant> if the variant has type() Map, or an empty map otherwise.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
QMap<QString, QVariant> list = myVariant.toMap();
.br
QMap<QString, QVariant>::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
myProcessing( *it );
.br
++it;
.br
}
.br
.fi
.PP
See also asMap().
.SH "const QPalette QVariant::toPalette () const"
Returns the variant as a QPalette if the variant has type() Palette, or a completely black palette otherwise.
.PP
See also asPalette().
.SH "const QPixmap QVariant::toPixmap () const"
Returns the variant as a QPixmap if the variant has type() Pixmap, or a null pixmap otherwise.
.PP
See also asPixmap().
.SH "const QPoint QVariant::toPoint () const"
Returns the variant as a QPoint if the variant has type() Point, or a point (0, 0) otherwise.
.PP
See also asPoint().
.SH "const QPointArray QVariant::toPointArray () const"
Returns the variant as a QPointArray if the variant has type() PointArray, or an empty QPointArray otherwise.
.PP
See also asPointArray().
.SH "const QRect QVariant::toRect () const"
Returns the variant as a QRect if the variant has type() Rect, or an empty rectangle otherwise.
.PP
See also asRect().
.SH "const QRegion QVariant::toRegion () const"
Returns the variant as a QRegion if the variant has type() Region, or an empty QRegion otherwise.
.PP
See also asRegion().
.SH "const QSize QVariant::toSize () const"
Returns the variant as a QSize if the variant has type() Size, or an invalid size otherwise.
.PP
See also asSize().
.SH "QSizePolicy QVariant::toSizePolicy () const"
Returns the variant as a QSizePolicy if the variant has type() SizePolicy, or an undefined (but legal) size policy otherwise.
.SH "const QString QVariant::toString () const"
Returns the variant as a QString if the variant has type() String, CString, ByteArray, Int, Uint, Bool, Double, Date, Time, or DateTime, or QString::null otherwise.
.PP
See also asString().
.SH "const QStringList QVariant::toStringList () const"
Returns the variant as a QStringList if the variant has type() StringList or List of a type that can be converted to QString, or an empty list otherwise.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
QStringList list = myVariant.toStringList();
.br
QStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
myProcessing( *it );
.br
++it;
.br
}
.br
.fi
.PP
See also asStringList().
.SH "const QTime QVariant::toTime () const"
Returns the variant as a QTime if the variant has type() Time, DateTime or String, or an invalid time otherwise.
.PP
Note that if the type() is String an invalid time will be returned if the string cannot be parsed as an Qt::ISODate format time.
.PP
See also asTime().
.SH "uint QVariant::toUInt ( bool * ok = 0 ) const"
Returns the variant as an unsigned int if the variant has type() String, CString, UInt, Int, Double, or Bool; or 0 otherwise.
.PP
If \fIok\fR is non-null, \fI*ok\fR is set to TRUE if the value could be converted to a uint and FALSE otherwise.
.PP
See also asUInt().
.SH "Type QVariant::type () const"
Returns the storage type of the value stored in the variant. Usually it's best to test with canCast() whether the variant can deliver the data type you are interested in.
.SH "const char * QVariant::typeName () const"
Returns the name of the type stored in the variant. The returned strings describe the C++ datatype used to store the data: for example, "QFont", "QString", or "QValueList<QVariant>". An Invalid variant returns 0.
.SH "const char * QVariant::typeToName ( Type typ )\fC [static]\fR"
Converts the enum representation of the storage type, \fItyp\fR, to its
string representation.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qvariant.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in
.BR http://doc.trolltech.com/bughowto.html .
Good bug reports help us to help you. Thank you.
.P
The definitive Qt documentation is provided in HTML format; it is
located at $QTDIR/doc/html and can be read using Qt Assistant or with
a web browser. This man page is provided as a convenience for those
users who prefer man pages, although this format is not officially
supported by Trolltech.
.P
If you find errors in this manual page, please report them to
.BR qt-bugs@trolltech.com .
Please include the name of the manual page (qvariant.3qt) and the Qt
version (3.0.3).
|