- class QMetaType¶
The
QMetaType
class manages named types in the meta-object system. More…Synopsis¶
Methods¶
def
__init__()
def
alignOf()
def
construct()
def
create()
def
destroy()
def
destruct()
def
equals()
def
flags()
def
id()
def
isDestructible()
def
isOrdered()
def
isRegistered()
def
isValid()
def
load()
def
name()
def
__ne__()
def
__eq__()
def
registerType()
def
save()
def
sizeOf()
def
underlyingType()
Static functions¶
def
canConvert()
def
canView()
def
compare()
def
construct()
def
convert()
def
create()
def
destroy()
def
destruct()
def
equals()
def
fromName()
def
isRegistered()
def
load()
def
save()
def
sizeOf()
def
type()
def
typeFlags()
def
typeName()
def
view()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
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.Type names can be registered with
QMetaType
by using eitherqRegisterMetaType()
orregisterType()
. Registration is not required for most operations; it’s only required for operations that attempt to resolve a type name in string form back to aQMetaType
object or the type’s ID. Those include some old-style signal-slot connections usingconnect()
, reading user-types fromQDataStream
toQVariant
, or binding to other languages and IPC mechanisms, like QML, D-Bus, JavaScript, etc.The following code allocates and destructs an instance of
MyClass
by its name, which requires thatMyClass
have been previously registered:type = QMetaType.fromName("MyClass") if type.isValid(): myClassPtr = type.create() ... type.destroy(myClassPtr) myClassPtr = None
If we want the stream operators
operator<<()
andoperator>>()
to work onQVariant
objects that store custom types, the custom type must provideoperator<<()
andoperator>>()
operators.See also
Q_DECLARE_METATYPE()
setValue()
value()
fromValue()
- class Type¶
(inherits
enum.IntEnum
) These are the built-in types supported byQMetaType
:Constant
Description
QMetaType.Void
void
QMetaType.Bool
bool
QMetaType.Int
int
QMetaType.UInt
unsigned int
QMetaType.Double
double
QMetaType.QChar
QChar
QMetaType.QString
QString
QMetaType.QByteArray
QByteArray
QMetaType.Nullptr
std::nullptr_t
QMetaType.VoidStar
void *
QMetaType.Long
long
QMetaType.LongLong
LongLong
QMetaType.Short
short
QMetaType.Char
char
QMetaType.Char16
char16_t
QMetaType.Char32
char32_t
QMetaType.ULong
unsigned long
QMetaType.ULongLong
ULongLong
QMetaType.UShort
unsigned short
QMetaType.SChar
signed char
QMetaType.UChar
unsigned char
QMetaType.Float
float
QMetaType.Float16
qfloat16
QMetaType.QObjectStar
QObject
*QMetaType.QCursor
QCursor
QMetaType.QDate
QDate
QMetaType.QSize
QSize
QMetaType.QTime
QTime
QMetaType.QVariantList
QVariantList
QMetaType.QPolygon
QPolygon
QMetaType.QPolygonF
QPolygonF
QMetaType.QColor
QColor
QMetaType.QColorSpace
QColorSpace (introduced in Qt 5.15)
QMetaType.QSizeF
QSizeF
QMetaType.QRectF
QRectF
QMetaType.QLine
QLine
QMetaType.QTextLength
QTextLength
QMetaType.QStringList
QStringList
QMetaType.QVariantMap
QVariantMap
QMetaType.QVariantHash
QVariantHash
QMetaType.QVariantPair
QVariantPair
QMetaType.QIcon
QIcon
QMetaType.QPen
QPen
QMetaType.QLineF
QLineF
QMetaType.QTextFormat
QTextFormat
QMetaType.QRect
QRect
QMetaType.QPoint
QPoint
QMetaType.QUrl
QUrl
QMetaType.QRegularExpression
QRegularExpression
QMetaType.QDateTime
QDateTime
QMetaType.QPointF
QPointF
QMetaType.QPalette
QPalette
QMetaType.QFont
QFont
QMetaType.QBrush
QBrush
QMetaType.QRegion
QRegion
QMetaType.QBitArray
QBitArray
QMetaType.QImage
QImage
QMetaType.QKeySequence
QKeySequence
QMetaType.QSizePolicy
QSizePolicy
QMetaType.QPixmap
QPixmap
QMetaType.QLocale
QLocale
QMetaType.QBitmap
QBitmap
QMetaType.QTransform
QTransform
QMetaType.QMatrix4x4
QMatrix4x4
QMetaType.QVector2D
QVector2D
QMetaType.QVector3D
QVector3D
QMetaType.QVector4D
QVector4D
QMetaType.QQuaternion
QQuaternion
QMetaType.QEasingCurve
QEasingCurve
QMetaType.QJsonValue
QJsonValue
QMetaType.QJsonObject
QJsonObject
QMetaType.QJsonArray
QJsonArray
QMetaType.QJsonDocument
QJsonDocument
QMetaType.QCborValue
QCborValue
QMetaType.QCborArray
QCborArray
QMetaType.QCborMap
QCborMap
QMetaType.QCborSimpleType
QCborSimpleType
QMetaType.QModelIndex
QModelIndex
QMetaType.QPersistentModelIndex
QPersistentModelIndex (introduced in Qt 5.5)
QMetaType.QUuid
QUuid
QMetaType.QByteArrayList
QByteArrayList
QMetaType.QVariant
QVariant
QMetaType.User
Base value for user types
QMetaType.UnknownType
This is an invalid type id. It is returned from
QMetaType
for types that are not registeredAdditional types can be registered using
qRegisterMetaType()
or by callingregisterType()
.See also
- class TypeFlag¶
(inherits
enum.Flag
) The enum describes attributes of a type supported byQMetaType
.Constant
Description
QMetaType.NeedsConstruction
This type has a default constructor. If the flag is not set, instances can be safely initialized with memset to 0.
QMetaType.NeedsCopyConstruction
(since 6.5) This type has a non-trivial copy constructor. If the flag is not set, instances can be copied with memcpy.
QMetaType.NeedsMoveConstruction
(since 6.5) This type has a non-trivial move constructor. If the flag is not set, instances can be moved with memcpy.
QMetaType.NeedsDestruction
This type has a non-trivial destructor. If the flag is not set, calls to the destructor are not necessary before discarding objects.
QMetaType.RelocatableType
An instance of a type having this attribute can be safely moved to a different memory location using memcpy.
QMetaType.IsEnumeration
This type is an enumeration.
QMetaType.IsUnsignedEnumeration
If the type is an Enumeration, its underlying type is unsigned.
QMetaType.PointerToQObject
This type is a pointer to a class derived from
QObject
.QMetaType.IsPointer
This type is a pointer to another type.
QMetaType.IsConst
Indicates that values of this type are immutable; for instance, because they are pointers to const objects.
Note
Before Qt 6.5, both the NeedsConstruction and NeedsDestruction flags were incorrectly set if the either copy construtor or destructor were non-trivial (that is, if the type was not trivial).
Note that the Needs flags may be set but the meta type may not have a publicly-accessible constructor of the relevant type or a publicly-accessible destructor.
- __init__()¶
Constructs a default, invalid,
QMetaType
object.- __init__(arg__1)
- Parameters:
arg__1 –
PyTypeObject
- __init__(arg__1)
- Parameters:
arg__1 –
Type
- __init__(type)
- Parameters:
type – int
Constructs a
QMetaType
object that contains all information about typetypeId
.- alignOf()¶
- Return type:
int
Returns the alignment of the type in bytes (i.e. alignof(T), where T is the actual type for which this
QMetaType
instance was constructed for).This function is typically used together with
construct()
to perform low-level management of the memory used by a type.See also
- static canConvert(fromType, toType)¶
Returns
true
ifconvert
can convert fromfromType
totoType
.The following conversions are supported by Qt:
Type
Automatically Cast To
QChar
,Double
,Int
,LongLong
,QString
,UInt
,ULongLong
Double
,Int
,LongLong
,QString
,UInt
,ULongLong
,QUuid
Bool
,QChar
,Double
,LongLong
,QString
,UInt
,ULongLong
QStringList
(if the list’s items can be converted to QStrings)Bool
,QByteArray
,QChar
,Double
,Int
,QString
,UInt
,ULongLong
Bool
,QByteArray
,QChar
,QColor
,QDate
,QDateTime
,Double
,QFont
,Int
,QKeySequence
,LongLong
,QStringList
,QTime
,UInt
,ULongLong
,QUuid
QVariantList
,QString
(if the list contains exactly one item)Bool
,QChar
,Double
,Int
,LongLong
,QString
,ULongLong
Casting between primitive type (int, float, bool etc.) is supported.
Converting between pointers of types derived from
QObject
will also return true for this function if aqobject_cast
from the type described byfromType
to the type described bytoType
would succeed.A cast from a sequential container will also return true for this function if the
toType
isQVariantList
.Similarly, a cast from an associative container will also return true for this function the
toType
isQVariantHash
orQVariantMap
.See also
convert()
QSequentialIterable
Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE()
QAssociativeIterable
Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE()
- static canView(fromType, toType)¶
Returns
true
ifview
can create a mutable view of typetoType
on typefromType
.Converting between pointers of types derived from
QObject
will return true for this function if aqobject_cast
from the type described byfromType
to the type described bytoType
would succeed.You can create a mutable view of type
QSequentialIterable
on any container registered withQ_DECLARE_SEQUENTIAL_CONTAINER_METATYPE()
.Similarly you can create a mutable view of type
QAssociativeIterable
on any container registered withQ_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE()
.See also
convert()
QSequentialIterable
Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE()
QAssociativeIterable
Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE()
- static compare(lhs, rhs, typeId, result)¶
- Parameters:
lhs –
void
rhs –
void
typeId – int
result – int
- Return type:
bool
Note
This function is deprecated.
Use the non-static compare method instead
Compares the objects at
lhs
andrhs
. Both objects need to be of typetypeId
.result
is set to less than, equal to or greater than zero, iflhs
is less than, equal to or greater thanrhs
. Returnstrue
, if the comparison succeeded, otherwisefalse
.- construct(where[, copy=None])¶
- Parameters:
where –
void
copy –
void
- Return type:
void
Constructs a value of the type that this
QMetaType
instance was constructed for in the existing memory addressed bywhere
, that is a copy ofcopy
, and returnswhere
. Ifcopy
is zero, the value is default constructed.This is a low-level function for explicitly managing the memory used to store the type. Consider calling
create()
if you don’t need this level of control (that is, use “new” rather than “placement new”).You must ensure that
where
points to a location where the new value can be stored and thatwhere
is suitably aligned. The type’s size can be queried by callingsizeOf()
.The rule of thumb for alignment is that a type is aligned to its natural boundary, which is the smallest power of 2 that is bigger than the type, unless that alignment is larger than the maximum useful alignment for the platform. For practical purposes, alignment larger than 2 * sizeof(void*) is only necessary for special hardware instructions (e.g., aligned SSE loads and stores on x86).
- static construct(type, where, copy)
- Parameters:
type – int
where –
void
copy –
void
- Return type:
void
Note
This function is deprecated.
Constructs a value of the given
type
in the existing memory addressed bywhere
, that is a copy ofcopy
, and returnswhere
. Ifcopy
is zero, the value is default constructed.This is a low-level function for explicitly managing the memory used to store the type. Consider calling
create()
if you don’t need this level of control (that is, use “new” rather than “placement new”).You must ensure that
where
points to a location that can store a value of typetype
, and thatwhere
is suitably aligned. The type’s size can be queried by callingsizeOf()
.The rule of thumb for alignment is that a type is aligned to its natural boundary, which is the smallest power of 2 that is bigger than the type, unless that alignment is larger than the maximum useful alignment for the platform. For practical purposes, alignment larger than 2 * sizeof(void*) is only necessary for special hardware instructions (e.g., aligned SSE loads and stores on x86).
See also
- static convert(fromType, from, toType, to)¶
Converts the object at
from
fromfromType
to the preallocated space atto
typedtoType
. Returnstrue
, if the conversion succeeded, otherwise false.Both
from
andto
have to be valid pointers.- static convert(from, fromTypeId, to, toTypeId)
- Parameters:
from –
void
fromTypeId – int
to –
void
toTypeId – int
- Return type:
bool
Note
This function is deprecated.
Converts the object at
from
fromfromTypeId
to the preallocated space atto
typedtoTypeId
. Returnstrue
, if the conversion succeeded, otherwise false.Both
from
andto
have to be valid pointers.- create([copy=None])¶
- Parameters:
copy –
void
- Return type:
void
Returns a copy of
copy
, assuming it is of the type that thisQMetaType
instance was created for. Ifcopy
isNone
, creates a default constructed instance.See also
- static create(type[, copy=None])
- Parameters:
type – int
copy –
void
- Return type:
void
Note
This function is deprecated.
Returns a copy of
copy
, assuming it is of typetype
. Ifcopy
is zero, creates a default constructed instance.See also
- destroy(data)¶
- Parameters:
data –
void
Destroys the
data
, assuming it is of the type that thisQMetaType
instance was created for.See also
- static destroy(type, data)
- Parameters:
type – int
data –
void
Note
This function is deprecated.
Destroys the
data
, assuming it is of thetype
given.See also
- destruct(data)¶
- Parameters:
data –
void
Destructs the value, located at
data
, assuming that it is of the type for which thisQMetaType
instance was constructed for.Unlike
destroy()
, this function only invokes the type’s destructor, it doesn’t invoke the delete operator.See also
- static destruct(type, where)
- Parameters:
type – int
where –
void
Note
This function is deprecated.
Destructs the value of the given
type
, located atwhere
.Unlike
destroy()
, this function only invokes the type’s destructor, it doesn’t invoke the delete operator.See also
- equals(lhs, rhs)¶
- Parameters:
lhs –
void
rhs –
void
- Return type:
bool
Compares the objects at
lhs
andrhs
for equality.Both objects must be of the type described by this metatype. Can only compare the two objects if a less than or equality operator for the type was visible to the metatype declaration. Otherwise, the metatype never considers values equal. When an equality operator was visible to the metatype declaration, it is authoritative; otherwise, if less than is visible, when neither value is less than the other, the two are considered equal. If values are unordered (see
compare()
for details) they are not equal.Returns true if the two objects compare equal, otherwise false.
See also
- static equals(lhs, rhs, typeId, result)
- Parameters:
lhs –
void
rhs –
void
typeId – int
result – int
- Return type:
bool
Note
This function is deprecated.
Returns flags of the type for which this
QMetaType
instance was constructed. To inspect specific type traits, prefer using one of the “is-” functions rather than the flags directly.Returns a
QMetaType
matchingtypeName
. The returned object is not valid if the typeName is not known toQMetaType
- static hasRegisteredConverterFunction(fromType, toType)¶
Returns
true
, if the meta type system has a registered conversion from meta type idfromType
totoType
- hasRegisteredDataStreamOperators()¶
- Return type:
bool
Returns
true
, if the meta type system has registered data stream operators for this meta type.- hasRegisteredDebugStreamOperator()¶
- Return type:
bool
Returns
true
, if the meta type system has a registered debug stream operator for this meta type.- static hasRegisteredDebugStreamOperator(typeId)
- Parameters:
typeId – int
- Return type:
bool
Note
This function is deprecated.
Use
hasRegisteredDebugStreamOperator()
instead.Returns
true
, if the meta type system has a registered debug stream operator for type idtypeId
.- static hasRegisteredMutableViewFunction(fromType, toType)¶
Returns
true
, if the meta type system has a registered mutable view on meta type idfromType
of meta type idtoType
.- id([arg__1=0])¶
- Parameters:
arg__1 – int
- Return type:
int
- isCopyConstructible()¶
- Return type:
bool
Returns true if this type can be copy-constructed. If it can be, then
construct()
andcreate()
can be used with acopy
parameter that is not null.- isDefaultConstructible()¶
- Return type:
bool
Returns true if this type can be default-constructed. If it can be, then
construct()
andcreate()
can be used with acopy
parameter that is null.- isDestructible()¶
- Return type:
bool
Returns true if this type can be destroyed. If it can be, then
destroy()
anddestruct()
can be called.- isEqualityComparable()¶
- Return type:
bool
Returns
true
if a less than or equality operator for the type described by this metatype was visible to the metatype declaration, otherwisefalse
.See also
- isMoveConstructible()¶
- Return type:
bool
Returns true if this type can be move-constructed.
QMetaType
currently does not have an API to make use of this trait.- isOrdered()¶
- Return type:
bool
Returns
true
if a less than operator for the type described by this metatype was visible to the metatype declaration, otherwisefalse
.See also
- isRegistered()¶
- Return type:
bool
Returns
true
if thisQMetaType
object has been registered with the Qt global metatype registry. Registration allows the type to be found by its name (usingfromName()
) or by its ID (using the constructor).See also
qRegisterMetaType()
isValid()
- static isRegistered(type)
- Parameters:
type – int
- Return type:
bool
Returns
true
if the datatype with IDtype
is registered; otherwise returnsfalse
.See also
- isValid()¶
- Return type:
bool
Returns
true
if thisQMetaType
object contains valid information about a type, false otherwise.See also
- load(stream, data)¶
- Parameters:
stream –
QDataStream
data –
void
- Return type:
bool
Reads the object of this type from the given
stream
intodata
. Returnstrue
if the object is loaded successfully; otherwise returnsfalse
.Normally, you should not need to call this function directly. Instead, use
QVariant
‘soperator>>()
, which relies on load() to stream custom types.See also
- static load(stream, type, data)
- Parameters:
stream –
QDataStream
type – int
data –
void
- Return type:
bool
Note
This function is deprecated.
This is an overloaded function.
- static metaObjectForType(type)¶
- Parameters:
type – int
- Return type:
Note
This function is deprecated.
returns
metaObject
fortype
See also
metaObject()
- name()¶
- Return type:
str
Returns the type name associated with this
QMetaType
, or a null pointer if no matching type was found. The returned pointer must not be deleted.See also
This is an overloaded function.
Returns
true
if theQMetaType
lhs
represents a different type than theQMetaType
rhs
, otherwise returnsfalse
.This is an overloaded function.
Returns
true
if theQMetaType
lhs
represents the same type as theQMetaType
rhs
, otherwise returnsfalse
.- static registerNormalizedTypedef(normalizedTypeName, type)¶
- Parameters:
normalizedTypeName –
QByteArray
type –
QMetaType
- registerType()¶
Registers this
QMetaType
with the type registry so it can be found by name, usingfromName()
.See also
qRegisterMetaType()
- save(stream, data)¶
- Parameters:
stream –
QDataStream
data –
void
- Return type:
bool
Writes the object pointed to by
data
to the givenstream
. Returnstrue
if the object is saved successfully; otherwise returnsfalse
.Normally, you should not need to call this function directly. Instead, use
QVariant
‘soperator<<()
, which relies on save() to stream custom types.See also
- static save(stream, type, data)
- Parameters:
stream –
QDataStream
type – int
data –
void
- Return type:
bool
Note
This function is deprecated.
This is an overloaded function.
- sizeOf()¶
- Return type:
int
Returns the size of the type in bytes (i.e. sizeof(T), where T is the actual type for which this
QMetaType
instance was constructed for).This function is typically used together with
construct()
to perform low-level management of the memory used by a type.See also
- static sizeOf(type)
- Parameters:
type – int
- Return type:
int
Note
This function is deprecated.
Returns the size of the given
type
in bytes (i.e. sizeof(T), where T is the actual type identified by thetype
argument).This function is typically used together with
construct()
to perform low-level management of the memory used by a type.See also
- static type(typeName)¶
- Parameters:
typeName –
QByteArray
- Return type:
int
Note
This function is deprecated.
This is an overloaded function.
Returns a handle to the type called
typeName
, or 0 if there is no such type.See also
- static type(typeName)
- Parameters:
typeName – str
- Return type:
int
Note
This function is deprecated.
Returns a handle to the type called
typeName
, orUnknownType
if there is no such type.See also
- static typeFlags(type)¶
- Parameters:
type – int
- Return type:
Combination of
TypeFlag
Note
This function is deprecated.
Returns flags of the given
type
.See also
TypeFlags
- static typeName(type)¶
- Parameters:
type – int
- Return type:
str
Note
This function is deprecated.
Returns the type name associated with the given
typeId
, or a null pointer if no matching type was found. The returned pointer must not be deleted.See also
If this metatype represents an enumeration, this method returns a metatype of a numeric class of the same signedness and size as the enums underlying type. If it represents a
QFlags
type, it returnsInt
. In all other cases an invalidQMetaType
is returned.- static view(fromType, from, toType, to)¶
Creates a mutable view on the object at
from
offromType
in the preallocated space atto
typedtoType
. Returnstrue
if the conversion succeeded, otherwise false.