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 135 of file PythonQtStdDecorators.h.

Member Function Documentation

◆ classInfo

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

Definition at line 167 of file PythonQtStdDecorators.h.

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

◆ classInfoCount

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

Definition at line 153 of file PythonQtStdDecorators.h.

153 { return obj->classInfoCount(); }

◆ classInfoOffset

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

Definition at line 147 of file PythonQtStdDecorators.h.

147 { return obj->classInfoOffset(); }

◆ constructor

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

Definition at line 163 of file PythonQtStdDecorators.h.

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

Referenced by indexOfConstructor().

◆ constructorCount

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

Definition at line 149 of file PythonQtStdDecorators.h.

149 { return obj->constructorCount(); }

◆ enumerator

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

Definition at line 165 of file PythonQtStdDecorators.h.

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

◆ enumeratorCount

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

Definition at line 151 of file PythonQtStdDecorators.h.

151 { return obj->enumeratorCount(); }

◆ enumeratorOffset

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

Definition at line 145 of file PythonQtStdDecorators.h.

145 { return obj->enumeratorOffset(); }

◆ getClassName

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

Definition at line 141 of file PythonQtStdDecorators.h.

141 { return obj->className(); }

◆ indexOfClassInfo

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

Definition at line 161 of file PythonQtStdDecorators.h.

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

◆ indexOfConstructor

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

Definition at line 155 of file PythonQtStdDecorators.h.

155 { 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 159 of file PythonQtStdDecorators.h.

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

◆ indexOfMethod

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

Definition at line 156 of file PythonQtStdDecorators.h.

156 { 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 160 of file PythonQtStdDecorators.h.

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

◆ indexOfSignal

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

Definition at line 157 of file PythonQtStdDecorators.h.

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

◆ indexOfSlot

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

Definition at line 158 of file PythonQtStdDecorators.h.

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

◆ method

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

Definition at line 164 of file PythonQtStdDecorators.h.

164 { 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 150 of file PythonQtStdDecorators.h.

150 { return obj->methodCount(); }

◆ methodOffset

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

Definition at line 144 of file PythonQtStdDecorators.h.

144 { return obj->methodOffset(); }

◆ property

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

Definition at line 166 of file PythonQtStdDecorators.h.

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

◆ propertyCount

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

Definition at line 152 of file PythonQtStdDecorators.h.

152 { return obj->propertyCount(); }

◆ propertyOffset

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

Definition at line 146 of file PythonQtStdDecorators.h.

146 { return obj->propertyOffset(); }

◆ static_QMetaObject_checkConnectArgs

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

Definition at line 170 of file PythonQtStdDecorators.h.

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

References method().

◆ static_QMetaObject_normalizedSignature

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

Definition at line 171 of file PythonQtStdDecorators.h.

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

References method().

◆ static_QMetaObject_normalizedType

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

Definition at line 172 of file PythonQtStdDecorators.h.

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

◆ superClass

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

Definition at line 142 of file PythonQtStdDecorators.h.

142 { return obj->superClass(); }

◆ userProperty

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

Definition at line 168 of file PythonQtStdDecorators.h.

168 { return obj->userProperty(); }

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