PythonQt
Public Slots | List of all members
PythonQtWrapper_QMetaObject Class Reference

#include <PythonQtStdDecorators.h>

Inheritance diagram for PythonQtWrapper_QMetaObject:

Public Slots

const char * getClassName (QMetaObject *obj) const
 
const QMetaObject * superClass (QMetaObject *obj) const
 
int methodOffset (QMetaObject *obj) const
 
int enumeratorOffset (QMetaObject *obj) const
 
int propertyOffset (QMetaObject *obj) const
 
int classInfoOffset (QMetaObject *obj) const
 
int constructorCount (QMetaObject *obj) const
 
int methodCount (QMetaObject *obj) const
 
int enumeratorCount (QMetaObject *obj) const
 
int propertyCount (QMetaObject *obj) const
 
int classInfoCount (QMetaObject *obj) const
 
int indexOfConstructor (QMetaObject *obj, const char *constructor) const
 
int indexOfMethod (QMetaObject *obj, const char *method) const
 
int indexOfSignal (QMetaObject *obj, const char *signal) const
 
int indexOfSlot (QMetaObject *obj, const char *slot) const
 
int indexOfEnumerator (QMetaObject *obj, const char *name) const
 
int indexOfProperty (QMetaObject *obj, const char *name) const
 
int indexOfClassInfo (QMetaObject *obj, const char *name) const
 
QMetaMethod constructor (QMetaObject *obj, int index) const
 
QMetaMethod method (QMetaObject *obj, int index) const
 
QMetaEnum enumerator (QMetaObject *obj, int index) const
 
QMetaProperty property (QMetaObject *obj, int index) const
 
QMetaClassInfo classInfo (QMetaObject *obj, int index) const
 
QMetaProperty userProperty (QMetaObject *obj) const
 
bool static_QMetaObject_checkConnectArgs (const char *signal, const char *method)
 
QByteArray static_QMetaObject_normalizedSignature (const char *method)
 
QByteArray static_QMetaObject_normalizedType (const char *type)
 

Detailed Description

Definition at line 155 of file PythonQtStdDecorators.h.

Member Function Documentation

◆ classInfo

QMetaClassInfo PythonQtWrapper_QMetaObject::classInfo ( QMetaObject *  obj,
int  index 
) const
inlineslot

Definition at line 187 of file PythonQtStdDecorators.h.

187 { return obj->classInfo(index); }

◆ classInfoCount

int PythonQtWrapper_QMetaObject::classInfoCount ( QMetaObject *  obj) const
inlineslot

Definition at line 173 of file PythonQtStdDecorators.h.

173 { return obj->classInfoCount(); }

◆ classInfoOffset

int PythonQtWrapper_QMetaObject::classInfoOffset ( QMetaObject *  obj) const
inlineslot

Definition at line 167 of file PythonQtStdDecorators.h.

167 { return obj->classInfoOffset(); }

◆ constructor

QMetaMethod PythonQtWrapper_QMetaObject::constructor ( QMetaObject *  obj,
int  index 
) const
inlineslot

Definition at line 183 of file PythonQtStdDecorators.h.

183 { return obj->constructor(index); }

Referenced by indexOfConstructor().

◆ constructorCount

int PythonQtWrapper_QMetaObject::constructorCount ( QMetaObject *  obj) const
inlineslot

Definition at line 169 of file PythonQtStdDecorators.h.

169 { return obj->constructorCount(); }

◆ enumerator

QMetaEnum PythonQtWrapper_QMetaObject::enumerator ( QMetaObject *  obj,
int  index 
) const
inlineslot

Definition at line 185 of file PythonQtStdDecorators.h.

185 { return obj->enumerator(index); }

◆ enumeratorCount

int PythonQtWrapper_QMetaObject::enumeratorCount ( QMetaObject *  obj) const
inlineslot

Definition at line 171 of file PythonQtStdDecorators.h.

171 { return obj->enumeratorCount(); }

◆ enumeratorOffset

int PythonQtWrapper_QMetaObject::enumeratorOffset ( QMetaObject *  obj) const
inlineslot

Definition at line 165 of file PythonQtStdDecorators.h.

165 { return obj->enumeratorOffset(); }

◆ getClassName

const char* PythonQtWrapper_QMetaObject::getClassName ( QMetaObject *  obj) const
inlineslot

Definition at line 161 of file PythonQtStdDecorators.h.

161 { return obj->className(); }

◆ indexOfClassInfo

int PythonQtWrapper_QMetaObject::indexOfClassInfo ( QMetaObject *  obj,
const char *  name 
) const
inlineslot

Definition at line 181 of file PythonQtStdDecorators.h.

181 { return obj->indexOfClassInfo(name); }

◆ indexOfConstructor

int PythonQtWrapper_QMetaObject::indexOfConstructor ( QMetaObject *  obj,
const char *  constructor 
) const
inlineslot

Definition at line 175 of file PythonQtStdDecorators.h.

175 { return obj->indexOfConstructor(constructor); }
QMetaMethod constructor(QMetaObject *obj, int index) const

References constructor().

◆ indexOfEnumerator

int PythonQtWrapper_QMetaObject::indexOfEnumerator ( QMetaObject *  obj,
const char *  name 
) const
inlineslot

Definition at line 179 of file PythonQtStdDecorators.h.

179 { return obj->indexOfEnumerator(name); }

◆ indexOfMethod

int PythonQtWrapper_QMetaObject::indexOfMethod ( QMetaObject *  obj,
const char *  method 
) const
inlineslot

Definition at line 176 of file PythonQtStdDecorators.h.

176 { return obj->indexOfMethod(method); }
QMetaMethod method(QMetaObject *obj, int index) const

References method().

◆ indexOfProperty

int PythonQtWrapper_QMetaObject::indexOfProperty ( QMetaObject *  obj,
const char *  name 
) const
inlineslot

Definition at line 180 of file PythonQtStdDecorators.h.

180 { return obj->indexOfProperty(name); }

◆ indexOfSignal

int PythonQtWrapper_QMetaObject::indexOfSignal ( QMetaObject *  obj,
const char *  signal 
) const
inlineslot

Definition at line 177 of file PythonQtStdDecorators.h.

177 { return obj->indexOfSignal(signal); }

◆ indexOfSlot

int PythonQtWrapper_QMetaObject::indexOfSlot ( QMetaObject *  obj,
const char *  slot 
) const
inlineslot

Definition at line 178 of file PythonQtStdDecorators.h.

178 { return obj->indexOfSlot(slot); }

◆ method

QMetaMethod PythonQtWrapper_QMetaObject::method ( QMetaObject *  obj,
int  index 
) const
inlineslot

Definition at line 184 of file PythonQtStdDecorators.h.

184 { return obj->method(index); }

Referenced by indexOfMethod(), static_QMetaObject_checkConnectArgs(), and static_QMetaObject_normalizedSignature().

◆ methodCount

int PythonQtWrapper_QMetaObject::methodCount ( QMetaObject *  obj) const
inlineslot

Definition at line 170 of file PythonQtStdDecorators.h.

170 { return obj->methodCount(); }

◆ methodOffset

int PythonQtWrapper_QMetaObject::methodOffset ( QMetaObject *  obj) const
inlineslot

Definition at line 164 of file PythonQtStdDecorators.h.

164 { return obj->methodOffset(); }

◆ property

QMetaProperty PythonQtWrapper_QMetaObject::property ( QMetaObject *  obj,
int  index 
) const
inlineslot

Definition at line 186 of file PythonQtStdDecorators.h.

186 { return obj->property(index); }

◆ propertyCount

int PythonQtWrapper_QMetaObject::propertyCount ( QMetaObject *  obj) const
inlineslot

Definition at line 172 of file PythonQtStdDecorators.h.

172 { return obj->propertyCount(); }

◆ propertyOffset

int PythonQtWrapper_QMetaObject::propertyOffset ( QMetaObject *  obj) const
inlineslot

Definition at line 166 of file PythonQtStdDecorators.h.

166 { return obj->propertyOffset(); }

◆ static_QMetaObject_checkConnectArgs

bool PythonQtWrapper_QMetaObject::static_QMetaObject_checkConnectArgs ( const char *  signal,
const char *  method 
)
inlineslot

Definition at line 190 of file PythonQtStdDecorators.h.

190 { return QMetaObject::checkConnectArgs(signal, method); }

References method().

◆ static_QMetaObject_normalizedSignature

QByteArray PythonQtWrapper_QMetaObject::static_QMetaObject_normalizedSignature ( const char *  method)
inlineslot

Definition at line 191 of file PythonQtStdDecorators.h.

191 { return QMetaObject::normalizedSignature(method); }

References method().

◆ static_QMetaObject_normalizedType

QByteArray PythonQtWrapper_QMetaObject::static_QMetaObject_normalizedType ( const char *  type)
inlineslot

Definition at line 192 of file PythonQtStdDecorators.h.

192 { return QMetaObject::normalizedType(type); }

◆ superClass

const QMetaObject* PythonQtWrapper_QMetaObject::superClass ( QMetaObject *  obj) const
inlineslot

Definition at line 162 of file PythonQtStdDecorators.h.

162 { return obj->superClass(); }

◆ userProperty

QMetaProperty PythonQtWrapper_QMetaObject::userProperty ( QMetaObject *  obj) const
inlineslot

Definition at line 188 of file PythonQtStdDecorators.h.

188 { return obj->userProperty(); }

The documentation for this class was generated from the following file: