QMetaType Class
The QMetaType class manages named types in the meta-object system. More...
| Header: | #include <QMetaType> |
| qmake: | QT += core |
Note: All functions in this class are thread-safe.
Public Types
| enum | Type { Void, Bool, Int, UInt, Double, …, UnknownType } |
| enum | TypeFlag { NeedsConstruction, NeedsDestruction, MovableType, IsEnumeration, PointerToQObject } |
Macros
| Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE(Container) | |
| Q_DECLARE_METATYPE(Type) | |
| Q_DECLARE_OPAQUE_POINTER(PointerType) | |
| Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE(Container) | |
| Q_DECLARE_SMART_POINTER_METATYPE(SmartPointer) |
Detailed Description
The class is used as a helper to marshall types in QVariant and in queued signals and slots connections. It associates a type name to a type so that it can be created and destructed dynamically at run-time. Declare new types with Q_DECLARE_METATYPE() to make them available to QVariant and other template-based functions. Call qRegisterMetaType() to make types available to non-template based functions, such as the queued signal and slot connections.
Any class or struct that has a public default constructor, a public copy constructor, and a public destructor can be registered.
The following code allocates and destructs an instance of MyClass:
int id = QMetaType::type("MyClass"); if (id != QMetaType::UnknownType) { void *myClassPtr = QMetaType::create(id); ... QMetaType::destroy(id, myClassPtr); myClassPtr = 0; }
If we want the stream operators operator<<() and operator>>() to work on QVariant objects that store custom types, the custom type must provide operator<<() and operator>>() operators.
See also Q_DECLARE_METATYPE(), QVariant::setValue(), QVariant::value(), and QVariant::fromValue().
Member Type Documentation
enum QMetaType::Type
These are the built-in types supported by QMetaType:
| Constant | Value | Description |
|---|---|---|
QMetaType::Void | 43 | void |
QMetaType::Bool | 1 | bool |
QMetaType::Int | 2 | int |
QMetaType::UInt | 3 | unsigned int |
QMetaType::Double | 6 | double |
QMetaType::QChar | 7 | QChar |
QMetaType::QString | 10 | QString |
QMetaType::QByteArray | 12 | QByteArray |
QMetaType::Nullptr | 51 | std::nullptr_t |
QMetaType::VoidStar | 31 | void * |
QMetaType::Long | 32 | long |
QMetaType::LongLong | 4 | LongLong |
QMetaType::Short | 33 | short |
QMetaType::Char | 34 | char |
QMetaType::ULong | 35 | unsigned long |
QMetaType::ULongLong | 5 | ULongLong |
QMetaType::UShort | 36 | unsigned short |
QMetaType::SChar | 40 | signed char |
QMetaType::UChar | 37 | unsigned char |
QMetaType::Float | 38 | float |
QMetaType::QObjectStar | 39 | QObject * |
QMetaType::QVariant | 41 | QVariant |
QMetaType::QCursor | 74 | QCursor |
QMetaType::QDate | 14 | QDate |
QMetaType::QSize | 21 | QSize |
QMetaType::QTime | 15 | QTime |
QMetaType::QVariantList | 9 | QVariantList |
QMetaType::QPolygon | 71 | QPolygon |
QMetaType::QPolygonF | 86 | QPolygonF |
QMetaType::QColor | 67 | QColor |
QMetaType::QColorSpace | 87 | QColorSpace (introduced in Qt 5.15) |
QMetaType::QSizeF | 22 | QSizeF |
QMetaType::QRectF | 20 | QRectF |
QMetaType::QLine | 23 | QLine |
QMetaType::QTextLength | 77 | QTextLength |
QMetaType::QStringList | 11 | QStringList |
QMetaType::QVariantMap | 8 | QVariantMap |
QMetaType::QVariantHash | 28 | QVariantHash |
QMetaType::QIcon | 69 | QIcon |
QMetaType::QPen | 76 | QPen |
QMetaType::QLineF | 24 | QLineF |
QMetaType::QTextFormat | 78 | QTextFormat |
QMetaType::QRect | 19 | QRect |
QMetaType::QPoint | 25 | QPoint |
QMetaType::QUrl | 17 | QUrl |
QMetaType::QRegExp | 27 | QRegExp |
QMetaType::QRegularExpression | 44 | QRegularExpression |
QMetaType::QDateTime | 16 | QDateTime |
QMetaType::QPointF | 26 | QPointF |
QMetaType::QPalette | 68 | QPalette |
QMetaType::QFont | 64 | QFont |
QMetaType::QBrush | 66 | QBrush |
QMetaType::QRegion | 72 | QRegion |
QMetaType::QBitArray | 13 | QBitArray |
QMetaType::QImage | 70 | QImage |
QMetaType::QKeySequence | 75 | QKeySequence |
QMetaType::QSizePolicy | 121 | QSizePolicy |
QMetaType::QPixmap | 65 | QPixmap |
QMetaType::QLocale | 18 | QLocale |
QMetaType::QBitmap | 73 | QBitmap |
QMetaType::QMatrix | 79 | QMatrix |
QMetaType::QTransform | 80 | QTransform |
QMetaType::QMatrix4x4 | 81 | QMatrix4x4 |
QMetaType::QVector2D | 82 | QVector2D |
QMetaType::QVector3D | 83 | QVector3D |
QMetaType::QVector4D | 84 | QVector4D |
QMetaType::QQuaternion | 85 | QQuaternion |
QMetaType::QEasingCurve | 29 | QEasingCurve |
QMetaType::QJsonValue | 45 | QJsonValue |
QMetaType::QJsonObject | 46 | QJsonObject |
QMetaType::QJsonArray | 47 | QJsonArray |
QMetaType::QJsonDocument | 48 | QJsonDocument |
QMetaType::QCborValue | 53 | QCborValue |
QMetaType::QCborArray | 54 | QCborArray |
QMetaType::QCborMap | 55 | QCborMap |
QMetaType::QCborSimpleType | 52 | QCborSimpleType |
QMetaType::QModelIndex | 42 | QModelIndex |
QMetaType::QPersistentModelIndex | 50 | QPersistentModelIndex (introduced in Qt 5.5) |
QMetaType::QUuid | 30 | QUuid |
QMetaType::QByteArrayList | 49 | QByteArrayList |
QMetaType::User | 1024 | Base value for user types |
QMetaType::UnknownType | 0 | This is an invalid type id. It is returned from QMetaType for types that are not registered |
Additional types can be registered using Q_DECLARE_METATYPE().
See also type() and typeName().
enum QMetaType::TypeFlag
The enum describes attributes of a type supported by QMetaType.
| Constant | Value | Description |
|---|---|---|
QMetaType::NeedsConstruction | 0x1 | This type has non-trivial constructors. If the flag is not set instances can be safely initialized with memset to 0. |
QMetaType::NeedsDestruction | 0x2 | This type has a non-trivial destructor. If the flag is not set calls to the destructor are not necessary before discarding objects. |
QMetaType::MovableType | 0x4 | An instance of a type having this attribute can be safely moved by memcpy. |
QMetaType::IsEnumeration | 0x10 | This type is an enumeration |
QMetaType::PointerToQObject | 0x8 | This type is a pointer to a derived of QObject |
Macro Documentation
Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE(Container)
This macro makes the container Container known to QMetaType as an associative container. This makes it possible to put an instance of Container<T, U> into a QVariant, if T and U are themselves known to QMetaType.
Note that all of the Qt associative containers already have built-in support, and it is not necessary to use this macro with them. The std::map container also has built-in support.
This example shows a typical use of Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE():
#include <unordered_list> Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE(std::unordered_map) void someFunc() { std::unordered_map<int, bool> container; QVariant var = QVariant::fromValue(container); // ... }
Q_DECLARE_METATYPE(Type)
This macro makes the type Type known to QMetaType as long as it provides a public default constructor, a public copy constructor and a public destructor. It is needed to use the type Type as a custom type in QVariant.
This macro requires that Type is a fully defined type at the point where it is used. For pointer types, it also requires that the pointed to type is fully defined. Use in conjunction with Q_DECLARE_OPAQUE_POINTER() to register pointers to forward declared types.
Ideally, this macro should be placed below the declaration of the class or struct. If that is not possible, it can be put in a private header file which has to be included every time that type is used in a QVariant.
Adding a Q_DECLARE_METATYPE() makes the type known to all template based functions, including QVariant. Note that if you intend to use the type in queued signal and slot connections or in QObject's property system, you also have to call qRegisterMetaType() since the names are resolved at runtime.
This example shows a typical use case of Q_DECLARE_METATYPE():
struct MyStruct { int i; ... }; Q_DECLARE_METATYPE(MyStruct)
If MyStruct is in a namespace, the Q_DECLARE_METATYPE() macro has to be outside the namespace:
namespace MyNamespace { ... } Q_DECLARE_METATYPE(MyNamespace::MyStruct)
Since MyStruct is now known to QMetaType, it can be used in QVariant:
MyStruct s; QVariant var; var.setValue(s); // copy s into the variant ... // retrieve the value MyStruct s2 = var.value<MyStruct>();
Some types are registered automatically and do not need this macro:
- Pointers to classes derived from QObject
- QList<T>, QVector<T>, QQueue<T>, QStack<T>, QSet<T> or QLinkedList<T> where T is a registered meta type
- QHash<T1, T2>, QMap<T1, T2> or QPair<T1, T2> where T1 and T2 are registered meta types
- QPointer<T>, QSharedPointer<T>, QWeakPointer<T>, where T is a class that derives from QObject
- Enumerations registered with Q_ENUM or Q_FLAG
- Classes that have a Q_GADGET macro
See also qRegisterMetaType().
Q_DECLARE_OPAQUE_POINTER(PointerType)
This macro enables pointers to forward-declared types (PointerType) to be registered with QMetaType using either Q_DECLARE_METATYPE() or qRegisterMetaType().
This function was introduced in Qt 5.0.
See also Q_DECLARE_METATYPE() and qRegisterMetaType().
Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE(Container)
This macro makes the container Container known to QMetaType as a sequential container. This makes it possible to put an instance of Container<T> into a QVariant, if T itself is known to QMetaType.
Note that all of the Qt sequential containers already have built-in support, and it is not necessary to use this macro with them. The std::vector and std::list containers also have built-in support.
This example shows a typical use of Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE():
#include <deque> Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE(std::deque) void someFunc() { std::deque<QFile*> container; QVariant var = QVariant::fromValue(container); // ... }
Q_DECLARE_SMART_POINTER_METATYPE(SmartPointer)
This macro makes the smart pointer SmartPointer known to QMetaType as a smart pointer. This makes it possible to put an instance of SmartPointer<T> into a QVariant, if T is a type which inherits QObject.
Note that the QWeakPointer, QSharedPointer and QPointer already have built-in support, and it is not necessary to use this macro with them.
This example shows a typical use of Q_DECLARE_SMART_POINTER_METATYPE():
#include <memory> Q_DECLARE_SMART_POINTER_METATYPE(std::shared_ptr) void someFunc() { auto smart_ptr = std::make_shared<QFile>(); QVariant var = QVariant::fromValue(smart_ptr); // ... if (var.canConvert<QObject*>()) { QObject *sp = var.value<QObject*>(); qDebug() << sp->metaObject()->className(); // Prints 'QFile'. } }