QVariant

PyQt5.QtCore.QVariant

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 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 convert(), 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() (e.g., toInt(), toString()) 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.

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 QList<QVariant> and QMap<QString, QVariant> values 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 can have a defined type with no value set. However, note that QVariant types can only be cast when they have had a value set.

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

QVariant can be extended to support other types than those mentioned in the Type enum. See Creating Custom Qt Types for details.

A Note on GUI Types

Because QVariant is part of the Qt Core module, it cannot provide conversion functions to data types defined in Qt GUI, such as QColor, QImage, and QPixmap. In other words, there is no toColor() function. Instead, you can use the value() or the qvariant_cast() template function. For example:

# QVariant variant;
# ...
# QColor color = variant.value<QColor>();

The inverse conversion (e.g., from QColor to QVariant) is automatic for all data types supported by QVariant, including GUI-related types:

# QColor color = palette().background().color();
# QVariant variant = color;

Using canConvert() and convert() Consecutively

When using canConvert() and convert() consecutively, it is possible for canConvert() to return true, but convert() to return false. This is typically because canConvert() only reports the general ability of QVariant to convert between types given suitable data; it is still possible to supply data which cannot actually be converted.

For example, canConvert()(Int) would return true when called on a variant containing a string because, in principle, QVariant is able to convert strings of numbers to integers. However, if the string contains non-numeric characters, it cannot be converted to an integer, and any attempt to convert it will fail. Hence, it is important to have both functions return true for a successful conversion.

See also

QMetaType.

Enums

Type

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

Member

Value

Description

BitArray

13

a QBitArray

Bitmap

73

a QBitmap

Bool

1

a bool

Brush

66

a QBrush

ByteArray

12

a QByteArray

Char

7

a QChar

Color

67

a QColor

Cursor

74

a QCursor

Date

14

a QDate

DateTime

16

a QDateTime

Double

6

a double

EasingCurve

29

a QEasingCurve

Font

64

a QFont

Hash

28

a QVariantHash

Icon

69

a QIcon

Image

70

a QImage

Int

2

an int

Invalid

0

no type

KeySequence

76

a QKeySequence

Line

23

a QLine

LineF

24

a QLineF

List

9

a QVariantList

Locale

18

a QLocale

LongLong

4

a qlonglong

Map

8

a QVariantMap

Matrix

80

a QMatrix

Matrix4x4

82

a QMatrix4x4

ModelIndex

TODO

a QModelIndex

Palette

68

a QPalette

Pen

77

a QPen

PersistentModelIndex

TODO

a QPersistentModelIndex (since 5.5)

Pixmap

65

a QPixmap

Point

25

a QPoint

PointF

26

a QPointF

Polygon

71

a QPolygon

PolygonF

TODO

a QPolygonF

Quaternion

86

a QQuaternion

Rect

19

a QRect

RectF

20

a QRectF

RegExp

27

a QRegExp

Region

72

a QRegion

RegularExpression

TODO

a QRegularExpression

Size

21

a QSize

SizeF

22

a QSizeF

SizePolicy

75

a QSizePolicy

String

10

a QString

StringList

11

a QStringList

TextFormat

79

a QTextFormat

TextLength

78

a QTextLength

Time

15

a QTime

Transform

81

a QTransform

UInt

3

a uint

ULongLong

5

a qulonglong

Url

17

a QUrl

UserType

127

Base value for user-defined types.

Uuid

TODO

a QUuid

Vector2D

83

a QVector2D

Vector3D

84

a QVector3D

Vector4D

85

a QVector4D

Methods

__init__()

TODO


__init__(Type)

TODO


__init__(object)

TODO


__init__(QVariant)

TODO


canConvert(int) → bool

TODO


clear()

Convert this variant to type QMetaType::UnknownType and free up any resources used.


convert(int) → bool

TODO


__eq__(Any) → bool

TODO


__ge__(Any) → bool

TODO


__gt__(Any) → bool

TODO


isNull() → bool

Returns true if this is a null variant, false otherwise. A variant is considered null if it contains no initialized value, or the contained value is a null pointer or is an instance of a built-in type that has an method, in which case the result would be the same as calling on the wrapped object.

Warning: Null variants is not a single state and two null variants may easily return false on the == operator if they do not contain similar null values.

See also

convert(int).


isValid() → bool

TODO


__le__(Any) → bool

TODO


load(QDataStream)

Internal function for loading a variant from stream s. Use the stream operators instead.


__lt__(Any) → bool

TODO


@staticmethod
nameToType(str) → Type

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.


__ne__(Any) → bool

TODO


save(QDataStream)

Internal function for saving a variant to the stream s. Use the stream operators instead.


swap(QVariant)

TODO


type() → Type

Returns the storage type of the value stored in the variant. Although this function is declared as returning Type, the return value should be interpreted as Type. In particular, UserType is returned here only if the value is equal or greater than User.

Note that return values in the ranges Char through RegExp and Font through Transform correspond to the values in the ranges QChar through QRegExp and QFont through QQuaternion.

Pay particular attention when working with char and QChar variants. Note that there is no QVariant constructor specifically for type char, but there is one for QChar. For a variant of type QChar, this function returns Char, which is the same as QChar, but for a variant of type char, this function returns Char, which is not the same as Char.

Also note that the types void\*, long, short, unsigned long, unsigned short, unsigned char, float, QObject\*, and QWidget\* are represented in Type but not in Type, and they can be returned by this function. However, they are considered to be user defined types when tested against Type.

To test whether an instance of QVariant contains a data type that is compatible with the data type you are interested in, use canConvert().


typeName() → str

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鈥, 鈥淨String鈥, or 鈥淨VariantList鈥. An Invalid variant returns 0.


@staticmethod
typeToName(int) → str

TODO


userType() → int

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

See also

type().


value() → object

See also

setValue().