Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions

QVariant Class Reference

The QVariant class acts like a union for the most common Qt data types. More...

#include <QVariant>

Part of the QtCore module.

Public Types

Public Functions

Static Public Members

Related Non-Members


Detailed Description

The QVariant class acts like a union for the most common Qt data types.

Because C++ forbids unions from including types that have non-default constructors or destructors, most interesting Qt classes cannot be used in unions. Without QVariant, this would be a problem for QObject::property() and for database work, etc.

A QVariant object holds a single value of a single type() at a time. (Some type()s are multi-valued, for example a string list.) You can find out what type, T, the variant 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 canConvert().

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).

Note that two data types supported by QVariant are explicitly shared, namely QImage and QPolygon, 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.

Here is some example code to demonstrate the use of QVariant:

    QDataStream out(...);
    QVariant v(123);            // The variant now contains an int
    int x = v.toInt();              // x = 123
    out << v;                       // Writes a type tag and an int to out
    v = QVariant("hello");      // The variant now contains a QByteArray
    v = QVariant(tr("hello"));  // The variant now contains a QString
    int y = v.toInt();              // y = 0 since v cannot be converted to an int
    QString s = v.toString();       // s = tr("hello")  (see QObject::tr())
    out << v;                       // Writes a type tag and a QString to out
    ...
    QDataStream in(...);            // (opening the previously written stream)
    in >> v;                        // Reads an Int variant
    int z = v.toInt();              // z = 123
    qDebug("Type is %s",            // prints "Type is int"
            v.typeName());
    v = v.toInt() + 100;            // The variant now hold the value 223.
    v = QVariant(QStringList());

You can even store QVariantLists 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.

QVariant also supports the notion of NULL values, where you have a defined type with no value set.

    QVariant x, y(QString()), z(QString(""));
    x.convert(QVariant::Int);
    // x.isNull() == true,
    // y.isNull() == true, z.isNull() == false
    // y.isEmpty() == true, z.Empty() == true

Member Type Documentation

enum QVariant::Type

This enum type defines the types of variable that a QVariant can contain.

ConstantValueDescription
QVariant::Invalid0no type
QVariant::BitArray30a QBitArray
QVariant::ByteArray29a QByteArray
QVariant::Bitmap23a QBitmap
QVariant::Bool18a bool
QVariant::Brush7a QBrush
QVariant::Color10a QColor
QVariant::Cursor24a QCursor
QVariant::Date26a QDate
QVariant::DateTime28a QDateTime
QVariant::Double19a double
QVariant::Font5a QFont
QVariant::Icon13a QIcon
QVariant::Image15a QImage
QVariant::Int16an int
QVariant::KeySequence31a QKeySequence
QVariant::LineF40a QLineF
QVariant::Line43a QLine
QVariant::List2a QVariantList
QVariant::LongLong33a long long
QVariant::ULongLong34an unsigned long long
QVariant::Map1a QMap<QString,QVariant>
QVariant::Palette11a QPalette
QVariant::Pen32a QPen
QVariant::Pixmap6a QPixmap
QVariant::Point14a QPoint
QVariant::PointF42a QPointF
QVariant::Polygon21a QPolygon
QVariant::Rect8a QRect
QVariant::RectF41a QRectF
QVariant::Region22a QRegion
QVariant::Size9a QSize
QVariant::SizePolicy25a QSizePolicy
QVariant::String3a QString
QVariant::StringList4a QStringList
QVariant::Time27a QTime
QVariant::UInt17an unsigned int
QVariant::TextLength37a QTextLength
QVariant::TextFormat38a QTextFormat
QVariant::Char35a QChar
QVariant::Locale39a QLocale
QVariant::Url36a QUrl
QVariant::PointArrayPolygona QPointArray
QVariant::UserType127 

Note that Qt's definition of bool depends on the compiler. qglobal.h has the system-dependent definition of bool.


Member Function Documentation

QVariant::QVariant ()

Constructs an invalid variant.

QVariant::QVariant ( Type type )

Constructs a null variant of type type.

QVariant::QVariant ( int typeOrUserType, const void * copy )

Constructs variant of type typeOrUserType, and initializes with copy if copy is not 0.

QVariant::QVariant ( const QVariant & p )

Constructs a copy of the variant, p, 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.

QVariant::QVariant ( QDataStream & s )

Reads the variant from the data stream, s.

QVariant::QVariant ( int val )

Constructs a new variant with an integer value, val.

QVariant::QVariant ( uint val )

Constructs a new variant with an unsigned integer value, val.

QVariant::QVariant ( qlonglong val )

Constructs a new variant with a long long integer value, val.

QVariant::QVariant ( qulonglong val )

Constructs a new variant with an unsigned long long integer value, val.

QVariant::QVariant ( bool val )

Constructs a new variant with a boolean value, val. The integer argument is a dummy, necessary for compatibility with some compilers.

QVariant::QVariant ( double val )

Constructs a new variant with a floating point value, val.

QVariant::QVariant ( const char * val )

Constructs a new variant with a C-string value of val if val is non-null. The variant creates a deep copy of val.

If val is null, the resulting variant has type Invalid.

QVariant::QVariant ( const QByteArray & val )

Constructs a new variant with a bytearray value, val.

QVariant::QVariant ( const QBitArray & val )

Constructs a new variant with a bitarray value, val.

QVariant::QVariant ( const QString & val )

Constructs a new variant with a string value, val.

QVariant::QVariant ( const QLatin1String & val )

Constructs a new variant with a string value, val.

QVariant::QVariant ( const QStringList & val )

Constructs a new variant with a string list value, val.

QVariant::QVariant ( const QChar & c )

Constructs a new variant with a char value, c.

QVariant::QVariant ( const QDate & val )

Constructs a new variant with a date value, val.

QVariant::QVariant ( const QTime & val )

Constructs a new variant with a time value, val.

QVariant::QVariant ( const QDateTime & val )

Constructs a new variant with a date/time value, val.

QVariant::QVariant ( const QList<QVariant> & val )

Constructs a new variant with a list value, val.

QVariant::QVariant ( const QMap<QString, QVariant> & val )

Constructs a new variant with a map of QVariants, val.

QVariant::QVariant ( const QSize & val )

Constructs a new variant with a size value of val.

QVariant::QVariant ( const QSizeF & val )

Constructs a new variant with a size value of val.

QVariant::QVariant ( const QPoint & val )

Constructs a new variant with a point value of val.

QVariant::QVariant ( const QPointF & val )

Constructs a new variant with a point value of val.

QVariant::QVariant ( const QLine & val )

Constructs a new variant with a line value of val.

QVariant::QVariant ( const QLineF & val )

Constructs a new variant with a line value of val.

QVariant::QVariant ( const QRect & val )

Constructs a new variant with a rect value of val.

QVariant::QVariant ( const QRectF & val )

Constructs a new variant with a rect value of val.

QVariant::QVariant ( const QUrl & val )

Constructs a new variant with a url value of val.

QVariant::QVariant ( const QLocale & l )

Constructs a new variant with a locale value, l.

QVariant::~QVariant ()

Destroys the QVariant and the contained object.

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().

bool QVariant::canConvert ( Type t ) const

Returns true if the variant's type can be cast to the requested type, t. Such casting is done automatically when calling the toInt(), toBool(), ... methods.

The following casts are done automatically:

TypeAutomatically Cast To
BoolDouble, Int, UInt, LongLong, ULongLong
ColorString
DateString, DateTime
DateTimeString, Date, Time
DoubleString, Int, Bool, UInt
FontString
IntString, Double, Bool, UInt
ListStringList (if the list contains strings or something that can be cast to a string)
StringCString, Int, Uint, Bool, Double, Date, Time, DateTime, KeySequence, Font, Color
CStringString
StringListList
TimeString
UIntString, Double, Bool, Int
KeySequenceString, Int

bool QVariant::canConvert () const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns true if the variant can be converted to the template type T, otherwise false.

Example:

    QVariant v = 42;

    v.canConvert<int>(); // returns true
    v.canConvert<QString>(); // returns true

    MyCustomStruct s;
    v.setValue(s);

    v.canConvert<int>(); // returns false
    v.canConvert<MyCustomStruct>(); // returns true

See also convert().

void QVariant::clear ()

Convert this variant to type Invalid and free up any resources used.

bool QVariant::convert ( 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 t is QVariant::String, an empty point array if the requested type t is QVariant::Polygon, etc). Returns true if the current type of the variant was successfully cast; otherwise returns false.

See also canConvert().

QVariant QVariant::fromValue ( const T & value )   [static]

Returns a QVariant containing a copy of value. Behaves exactly like setValue() otherwise.

Example:

    MyCustomStruct s;
    return QVariant::fromValue(s);

See also setValue() and value().

bool QVariant::isNull () const

Returns true if this is a NULL variant, false otherwise.

bool QVariant::isValid () const

Returns true if the storage type of this variant is not QVariant::Invalid; otherwise returns false.

Type QVariant::nameToType ( const char * name )   [static]

Converts the string representation of the storage type given in name, to its enum representation.

If the string representation cannot be converted to any enum representation, the variant is set to Invalid.

void QVariant::setValue ( const T & value )

Stores a copy of value. If T is a type that QVariant doesn't support, QMetaType is used to store the value. A compile error will occur if QMetaType doesn't handle the type.

Example:

    QVariant v;

    v.setValue(5);
    int i = v.toInt(); // i is now 5
    QString s = v.toString() // s is now "5"

    MyCustomStruct c;
    v.setValue(c);

    ...

    MyCustomStruct c2 = v.value<MyCustomStruct>();

See also value(), fromValue(), and canConvert().

QBitArray QVariant::toBitArray () const

Returns the variant as a QBitArray if the variant has type() BitArray; otherwise returns an empty bitarray.

bool QVariant::toBool () const

Returns the variant as a bool if the variant has type() Bool.

Returns true if the variant has type Int, UInt or Double and its value is non-zero, or if the variant has type String and its lower-case content is not empty, "0" or "false"; otherwise returns false.

QByteArray QVariant::toByteArray () const

Returns the variant as a QByteArray if the variant has type() ByteArray; otherwise returns an empty bytearray.

QChar QVariant::toChar () const

Returns the variant as a QChar if the variant has type() Char, String or contains a numeric value; otherwise returns an invalid QChar.

QDate QVariant::toDate () const

Returns the variant as a QDate if the variant has type() Date, DateTime or String; otherwise returns an invalid date.

Note that if the type() is String an invalid date will be returned if the string cannot be parsed as a Qt::ISODate format date.

QDateTime QVariant::toDateTime () const

Returns the variant as a QDateTime if the variant has type() DateTime, Date or String; otherwise returns an invalid date/time.

Note that if the type() is String an invalid date/time will be returned if the string cannot be parsed as a Qt::ISODate format date/time.

double QVariant::toDouble ( bool * ok = 0 ) const

Returns the variant as a double if the variant has type() String, ByteArray, Double, Int, UInt, LongLong, ULongLong or Bool; otherwise returns 0.0.

If ok is non-null: *ok is set to true if the value could be converted to a double; otherwise *ok is set to false.

int QVariant::toInt ( bool * ok = 0 ) const

Returns the variant as an int if the variant has type() String, Int, UInt, Double, Bool or KeySequence; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an int; otherwise *ok is set to false.

See also canConvert().

QLine QVariant::toLine () const

Returns the variant as a QLine if the variant has type() Line; otherwise returns an invalid QLine.

QLineF QVariant::toLineF () const

Returns the variant as a QLineF if the variant has type() LineF; otherwise returns an invalid QLineF.

QList<QVariant> QVariant::toList () const

Returns the variant as a QVariantList if the variant has type() List or StringList; otherwise returns an empty list.

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

    QVariantList list = myVariant.toList();
    QVariantList::Iterator it = list.begin();
    while(it != list.end()) {
        myProcessing(*it);
        ++it;
    }

QLocale QVariant::toLocale () const

Returns the variant as a QLocale if the variant has type() Locale; otherwise returns an invalid QLocale.

qlonglong QVariant::toLongLong ( bool * ok = 0 ) const

Returns the variant as a long long int if the variant has type() LongLong, ULongLong, any type allowing a toInt() conversion; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an int; otherwise *ok is set to false.

See also canConvert().

QMap<QString, QVariant> QVariant::toMap () const

Returns the variant as a QMap<QString,QVariant> if the variant has type() Map; otherwise returns an empty map.

Note that if you want to iterate over the map, you should iterate over a copy, e.g.

    QVariantMap map = myVariant.toMap();
    QVariantMap::Iterator it = map.begin();
    while(it != map.end()) {
        myProcessing(*it);
        ++it;
    }

QPoint QVariant::toPoint () const

Returns the variant as a QPoint if the variant has type() Point; otherwise returns a null QPoint.

QPointF QVariant::toPointF () const

Returns the variant as a QPointF if the variant has type() Point or PointF; otherwise returns an invalid QPointF.

QRect QVariant::toRect () const

Returns the variant as a QRect if the variant has type() Rect; otherwise returns an invalid QRect.

QRectF QVariant::toRectF () const

Returns the variant as a QRectF if the variant has type() Rect or RectF; otherwise returns an invalid QRectF.

QSize QVariant::toSize () const

Returns the variant as a QSize if the variant has type() Size or SizeF; otherwise returns an invalid QSize.

QSizeF QVariant::toSizeF () const

Returns the variant as a QSizeF if the variant has type() SizeF or Size; otherwise returns an invalid QSizeF.

QString QVariant::toString () const

Returns the variant as a QString if the variant has type() String, ByteArray, Int, Uint, Bool, Double, Date, Time, DateTime, KeySequence, Font or Color; otherwise returns an empty string.

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; otherwise returns an empty list.

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

    QStringList list = myVariant.toStringList();
    QStringList::Iterator it = list.begin();
    while(it != list.end()) {
        myProcessing(*it);
        ++it;
    }

QTime QVariant::toTime () const

Returns the variant as a QTime if the variant has type() Time, DateTime or String; otherwise returns an invalid time.

Note that if the type() is String an invalid time will be returned if the string cannot be parsed as a Qt::ISODate format time.

uint QVariant::toUInt ( bool * ok = 0 ) const

Returns the variant as an unsigned int if the variant has type() String, ByteArray, UInt, Int, Double, or Bool; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an unsigned int; otherwise *ok is set to false.

qulonglong QVariant::toULongLong ( bool * ok = 0 ) const

Returns the variant as as an unsigned long long int if the variant has type() LongLong, ULongLong, any type allowing a toUInt() conversion; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an int; otherwise *ok is set to false.

See also canConvert().

QUrl QVariant::toUrl () const

Returns the variant as a QUrl if the variant has type() Url; otherwise returns an invalid QUrl.

Type QVariant::type () const

Returns the storage type of the value stored in the variant. Usually it's best to test with canConvert() whether the variant can deliver the data type you are interested in.

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 "QVariantList". An Invalid variant returns 0.

const char * QVariant::typeToName ( Type typ )   [static]

Converts the enum representation of the storage type, typ, to its string representation.

int QVariant::userType () const

Returns the storage type of the value stored in the variant. For non-user types, this is the same as type().

See also type().

T QVariant::value () const

Returns the stored value converted to the template type T. Call canConvert() to find out whether a type can be converted. If the value cannot be converted, default-constructed value will be returned.

If the type T is supported by QVariant, this function behaves exactly as toString(), toInt() etc.

Example:

    QVariant v;

    MyCustomStruct c;
    if (v.canConvert<MyCustomStruct>())
        c = v.value<MyCustomStruct>(v);

    v = 7;
    int i = v.value<int>(); // same as v.toInt()
    QString s = v.value<QString>(); // same as v.toString(), s is now "7"
    MyCustomStruct c2 = v.value<MyCustomStruct>(); // conversion failed, c2 is empty

See also setValue(), fromValue(), and canConvert().

bool QVariant::operator!= ( const QVariant & v ) const

Compares this QVariant with v and returns true if they are not equal; otherwise returns false.

QVariant & QVariant::operator= ( const QVariant & variant )

Assigns the value of the variant variant to this variant.

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.

bool QVariant::operator== ( const QVariant & v ) const

Compares this QVariant with v and returns true if they are equal; otherwise returns false.


Related Non-Members

bool qVariantCanConvert ( const QVariant & v )

Replacement function for QVariant::canConvert() for compilers that do not support template member methods.

See also QVariant::canConvert().

QVariant qVariantFromValue ( const T & value )

Replacement function for QVariant::fromValue() for compilers that do not support template member methods.

See also QVariant::fromValue().

void qVariantSetValue ( QVariant & v, const T & value )

Replacement function for QVariant::setValue() for compilers that do not support template member methods.

See also QVariant::setValue().

T qVariantValue ( const QVariant & v )

Replacement function for QVariant::value() for compilers that do not support template member methods.

See also QVariant::value().

bool operator!= ( const QVariant & v1, const QVariant & v2 )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns false if v1 and v2 are equal; otherwise returns true.

bool operator== ( const QVariant & v1, const QVariant & v2 )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns true if v1 and v2 are equal; otherwise returns false.


Copyright © 2005 Trolltech Trademarks
Qt 4.0.0-b2