PythonQt
Public Slots | List of all members
PythonQtWrapper_QMetaObject Class Reference

#include <PythonQtStdDecorators.h>

Inheritance diagram for PythonQtWrapper_QMetaObject:

Public Slots

const chargetClassName (QMetaObject *obj) const
 
const QMetaObjectsuperClass (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 175 of file PythonQtStdDecorators.h.

Member Function Documentation

◆ classInfo

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

Definition at line 210 of file PythonQtStdDecorators.h.

210{ return obj->classInfo(index); }
PyObject * PythonQtConvertPairToPython(const void *inPair, int metaTypeId)

References PythonQtConvertPairToPython().

◆ classInfoCount

int PythonQtWrapper_QMetaObject::classInfoCount ( QMetaObject obj) const
inlineslot

Definition at line 193 of file PythonQtStdDecorators.h.

193{ return obj->classInfoCount(); }

References PythonQtConvertPairToPython().

◆ classInfoOffset

int PythonQtWrapper_QMetaObject::classInfoOffset ( QMetaObject obj) const
inlineslot

Definition at line 187 of file PythonQtStdDecorators.h.

187{ return obj->classInfoOffset(); }

References PythonQtConvertPairToPython().

◆ constructor

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

Definition at line 206 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

Referenced by indexOfConstructor().

◆ constructorCount

int PythonQtWrapper_QMetaObject::constructorCount ( QMetaObject obj) const
inlineslot

Definition at line 189 of file PythonQtStdDecorators.h.

189{ return obj->constructorCount(); }

References PythonQtConvertPairToPython().

◆ enumerator

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

Definition at line 208 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ enumeratorCount

int PythonQtWrapper_QMetaObject::enumeratorCount ( QMetaObject obj) const
inlineslot

Definition at line 191 of file PythonQtStdDecorators.h.

191{ return obj->enumeratorCount(); }

References PythonQtConvertPairToPython().

◆ enumeratorOffset

int PythonQtWrapper_QMetaObject::enumeratorOffset ( QMetaObject obj) const
inlineslot

Definition at line 185 of file PythonQtStdDecorators.h.

185{ return obj->enumeratorOffset(); }

References PythonQtConvertPairToPython().

◆ getClassName

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

Definition at line 181 of file PythonQtStdDecorators.h.

181{ return obj->className(); }

References PythonQtConvertPairToPython().

◆ indexOfClassInfo

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

Definition at line 204 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ indexOfConstructor

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

Definition at line 195 of file PythonQtStdDecorators.h.

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

References constructor(), and PythonQtConvertPairToPython().

◆ indexOfEnumerator

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

Definition at line 202 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ indexOfMethod

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

Definition at line 199 of file PythonQtStdDecorators.h.

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

References method(), and PythonQtConvertPairToPython().

◆ indexOfProperty

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

Definition at line 203 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ indexOfSignal

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

Definition at line 200 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ indexOfSlot

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

Definition at line 201 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ method

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

◆ methodCount

int PythonQtWrapper_QMetaObject::methodCount ( QMetaObject obj) const
inlineslot

Definition at line 190 of file PythonQtStdDecorators.h.

190{ return obj->methodCount(); }

References PythonQtConvertPairToPython().

◆ methodOffset

int PythonQtWrapper_QMetaObject::methodOffset ( QMetaObject obj) const
inlineslot

Definition at line 184 of file PythonQtStdDecorators.h.

184{ return obj->methodOffset(); }

References PythonQtConvertPairToPython().

◆ property

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

Definition at line 209 of file PythonQtStdDecorators.h.

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

References PythonQtConvertPairToPython().

◆ propertyCount

int PythonQtWrapper_QMetaObject::propertyCount ( QMetaObject obj) const
inlineslot

Definition at line 192 of file PythonQtStdDecorators.h.

192{ return obj->propertyCount(); }

References PythonQtConvertPairToPython().

◆ propertyOffset

int PythonQtWrapper_QMetaObject::propertyOffset ( QMetaObject obj) const
inlineslot

Definition at line 186 of file PythonQtStdDecorators.h.

186{ return obj->propertyOffset(); }

References PythonQtConvertPairToPython().

◆ static_QMetaObject_checkConnectArgs

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

Definition at line 213 of file PythonQtStdDecorators.h.

214 {
215 return QMetaObject::checkConnectArgs(signal, method);
216 }

References method(), and PythonQtConvertPairToPython().

◆ static_QMetaObject_normalizedSignature

QByteArray PythonQtWrapper_QMetaObject::static_QMetaObject_normalizedSignature ( const char method)
inlineslot

Definition at line 217 of file PythonQtStdDecorators.h.

218 {
219 return QMetaObject::normalizedSignature(method);
220 }

References method().

◆ static_QMetaObject_normalizedType

QByteArray PythonQtWrapper_QMetaObject::static_QMetaObject_normalizedType ( const char type)
inlineslot

Definition at line 221 of file PythonQtStdDecorators.h.

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

◆ superClass

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

Definition at line 182 of file PythonQtStdDecorators.h.

182{ return obj->superClass(); }

References PythonQtConvertPairToPython().

◆ userProperty

QMetaProperty PythonQtWrapper_QMetaObject::userProperty ( QMetaObject obj) const
inlineslot

Definition at line 211 of file PythonQtStdDecorators.h.

211{ return obj->userProperty(); }

References PythonQtConvertPairToPython().


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