Table Of Contents

Previous topic

QSystemSemaphore

Next topic

QMetaProperty

QMetaClassInfo

Synopsis

Functions

Detailed Description

The PySide.QtCore.QMetaClassInfo class provides additional information about a class.

Class information items are simple namevalue pairs that are specified using Q_CLASSINFO() in the source code. The information can be retrieved using PySide.QtCore.QMetaClassInfo.name() and PySide.QtCore.QMetaClassInfo.value() . For example:

class MyClass:
    Q_CLASSINFO("author", "Sabrina Schweinsteiger")
    Q_CLASSINFO("url", "http://doc.moosesoft.co.uk/1.0/")

This mechanism is free for you to use in your Qt applications. Qt doesn’t use it for any of its classes.

class PySide.QtCore.QMetaClassInfo
class PySide.QtCore.QMetaClassInfo(QMetaClassInfo)
Parameters:QMetaClassInfoPySide.QtCore.QMetaClassInfo
PySide.QtCore.QMetaClassInfo.name()
Return type:str

Returns the name of this item.

PySide.QtCore.QMetaClassInfo.value()
Return type:str

Returns the value of this item.