#include <PythonQtStdDecorators.h>
Public Slots | |
| bool | connect (QObject *sender, const QByteArray &signal, PyObject *callable) |
| bool | connect (QObject *sender, const QByteArray &signal, QObject *receiver, const QByteArray &slot, Qt::ConnectionType type=Qt::AutoConnection) |
| bool | connect (QObject *receiver, QObject *sender, const QByteArray &signal, const QByteArray &slot, Qt::ConnectionType type=Qt::AutoConnection) |
| bool | static_QObject_connect (QObject *sender, const QByteArray &signal, PyObject *callable) |
| bool | static_QObject_connect (QObject *sender, const QByteArray &signal, QObject *receiver, const QByteArray &slot, Qt::ConnectionType type=Qt::AutoConnection) |
| bool | disconnect (QObject *sender, const QByteArray &signal, PyObject *callable=NULL) |
| bool | disconnect (QObject *sender, const QByteArray &signal, QObject *receiver, const QByteArray &slot) |
| bool | static_QObject_disconnect (QObject *sender, const QByteArray &signal, PyObject *callable=NULL) |
| bool | static_QObject_disconnect (QObject *sender, const QByteArray &signal, QObject *receiver, const QByteArray &slot) |
| const QMetaObject * | metaObject (QObject *obj) |
| QObject * | parent (QObject *o) |
| void | setParent (QObject *o, QObject *parent) |
| const QObjectList * | children (QObject *o) |
| QObject * | findChild (QObject *parent, PyObject *type, const QString &name=QString()) |
| QList< QObject * > | findChildren (QObject *parent, PyObject *type, const QString &name=QString()) |
| QList< QObject * > | findChildren (QObject *parent, PyObject *type, const QRegExp ®Exp) |
| bool | setProperty (QObject *o, const char *name, const QVariant &value) |
| QVariant | property (QObject *o, const char *name) |
| double | static_Qt_qAbs (double a) |
| double | static_Qt_qBound (double a, double b, double c) |
| void | static_Qt_qDebug (const QByteArray &msg) |
| void | static_Qt_qWarning (const QByteArray &msg) |
| void | static_Qt_qCritical (const QByteArray &msg) |
| void | static_Qt_qFatal (const QByteArray &msg) |
| bool | static_Qt_qFuzzyCompare (double a, double b) |
| double | static_Qt_qMax (double a, double b) |
| double | static_Qt_qMin (double a, double b) |
| int | static_Qt_qRound (double a) |
| qint64 | static_Qt_qRound64 (double a) |
| const char * | static_Qt_qVersion () |
| int | static_Qt_qrand () |
| void | static_Qt_qsrand (uint a) |
| QString | tr (QObject *obj, const QByteArray &text, const QByteArray &ambig=QByteArray(), int n=-1) |
| QByteArray | static_Qt_SIGNAL (const QByteArray &s) |
| QByteArray | static_Qt_SLOT (const QByteArray &s) |
Definition at line 61 of file PythonQtStdDecorators.h.
| const QObjectList* PythonQtStdDecorators::children | ( | QObject * | o | ) | [slot] |
| bool PythonQtStdDecorators::connect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| QObject * | receiver, | ||
| const QByteArray & | slot, | ||
| Qt::ConnectionType | type = Qt::AutoConnection |
||
| ) | [slot] |
| bool PythonQtStdDecorators::connect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| PyObject * | callable | ||
| ) | [slot] |
| bool PythonQtStdDecorators::connect | ( | QObject * | receiver, |
| QObject * | sender, | ||
| const QByteArray & | signal, | ||
| const QByteArray & | slot, | ||
| Qt::ConnectionType | type = Qt::AutoConnection |
||
| ) | [inline, slot] |
Definition at line 68 of file PythonQtStdDecorators.h.
References connect().
Referenced by connect().
{ return connect(sender, signal, receiver, slot, type); }
| bool PythonQtStdDecorators::disconnect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| PyObject * | callable = NULL |
||
| ) | [slot] |
| bool PythonQtStdDecorators::disconnect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| QObject * | receiver, | ||
| const QByteArray & | slot | ||
| ) | [slot] |
| QObject* PythonQtStdDecorators::findChild | ( | QObject * | parent, |
| PyObject * | type, | ||
| const QString & | name = QString() |
||
| ) | [slot] |
| QList<QObject*> PythonQtStdDecorators::findChildren | ( | QObject * | parent, |
| PyObject * | type, | ||
| const QRegExp & | regExp | ||
| ) | [slot] |
| QList<QObject*> PythonQtStdDecorators::findChildren | ( | QObject * | parent, |
| PyObject * | type, | ||
| const QString & | name = QString() |
||
| ) | [slot] |
| const QMetaObject* PythonQtStdDecorators::metaObject | ( | QObject * | obj | ) | [slot] |
| QObject* PythonQtStdDecorators::parent | ( | QObject * | o | ) | [slot] |
| QVariant PythonQtStdDecorators::property | ( | QObject * | o, |
| const char * | name | ||
| ) | [slot] |
| void PythonQtStdDecorators::setParent | ( | QObject * | o, |
| QObject * | parent | ||
| ) | [slot] |
| bool PythonQtStdDecorators::setProperty | ( | QObject * | o, |
| const char * | name, | ||
| const QVariant & | value | ||
| ) | [slot] |
| bool PythonQtStdDecorators::static_QObject_connect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| PyObject * | callable | ||
| ) | [inline, slot] |
Definition at line 69 of file PythonQtStdDecorators.h.
{ return connect(sender, signal, callable); }
| bool PythonQtStdDecorators::static_QObject_connect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| QObject * | receiver, | ||
| const QByteArray & | slot, | ||
| Qt::ConnectionType | type = Qt::AutoConnection |
||
| ) | [inline, slot] |
Definition at line 70 of file PythonQtStdDecorators.h.
{ return connect(sender, signal, receiver, slot, type); }
| bool PythonQtStdDecorators::static_QObject_disconnect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| PyObject * | callable = NULL |
||
| ) | [inline, slot] |
Definition at line 73 of file PythonQtStdDecorators.h.
{ return disconnect(sender, signal, callable); }
| bool PythonQtStdDecorators::static_QObject_disconnect | ( | QObject * | sender, |
| const QByteArray & | signal, | ||
| QObject * | receiver, | ||
| const QByteArray & | slot | ||
| ) | [inline, slot] |
Definition at line 74 of file PythonQtStdDecorators.h.
{ return connect(sender, signal, receiver, slot); }
| double PythonQtStdDecorators::static_Qt_qAbs | ( | double | a | ) | [inline, slot] |
Definition at line 89 of file PythonQtStdDecorators.h.
{ return qAbs(a); }
| double PythonQtStdDecorators::static_Qt_qBound | ( | double | a, |
| double | b, | ||
| double | c | ||
| ) | [inline, slot] |
Definition at line 90 of file PythonQtStdDecorators.h.
{ return qBound(a,b,c); }
| void PythonQtStdDecorators::static_Qt_qCritical | ( | const QByteArray & | msg | ) | [inline, slot] |
Definition at line 95 of file PythonQtStdDecorators.h.
{ qCritical("%s", msg.constData()); }
| void PythonQtStdDecorators::static_Qt_qDebug | ( | const QByteArray & | msg | ) | [inline, slot] |
Definition at line 91 of file PythonQtStdDecorators.h.
{ qDebug("%s", msg.constData()); }
| void PythonQtStdDecorators::static_Qt_qFatal | ( | const QByteArray & | msg | ) | [inline, slot] |
Definition at line 97 of file PythonQtStdDecorators.h.
{ qFatal("%s", msg.constData()); }
| bool PythonQtStdDecorators::static_Qt_qFuzzyCompare | ( | double | a, |
| double | b | ||
| ) | [inline, slot] |
Definition at line 99 of file PythonQtStdDecorators.h.
{ return qFuzzyCompare(a, b); }
| double PythonQtStdDecorators::static_Qt_qMax | ( | double | a, |
| double | b | ||
| ) | [inline, slot] |
Definition at line 100 of file PythonQtStdDecorators.h.
{ return qMax(a, b); }
| double PythonQtStdDecorators::static_Qt_qMin | ( | double | a, |
| double | b | ||
| ) | [inline, slot] |
Definition at line 101 of file PythonQtStdDecorators.h.
{ return qMin(a, b); }
| int PythonQtStdDecorators::static_Qt_qrand | ( | ) | [inline, slot] |
Definition at line 105 of file PythonQtStdDecorators.h.
{ return qrand(); }
| int PythonQtStdDecorators::static_Qt_qRound | ( | double | a | ) | [inline, slot] |
Definition at line 102 of file PythonQtStdDecorators.h.
{ return qRound(a); }
| qint64 PythonQtStdDecorators::static_Qt_qRound64 | ( | double | a | ) | [inline, slot] |
Definition at line 103 of file PythonQtStdDecorators.h.
{ return qRound64(a); }
| void PythonQtStdDecorators::static_Qt_qsrand | ( | uint | a | ) | [inline, slot] |
Definition at line 106 of file PythonQtStdDecorators.h.
{ qsrand(a); }
| const char* PythonQtStdDecorators::static_Qt_qVersion | ( | ) | [inline, slot] |
Definition at line 104 of file PythonQtStdDecorators.h.
{ return qVersion(); }
| void PythonQtStdDecorators::static_Qt_qWarning | ( | const QByteArray & | msg | ) | [inline, slot] |
Definition at line 93 of file PythonQtStdDecorators.h.
{ qWarning("%s", msg.constData()); }
| QByteArray PythonQtStdDecorators::static_Qt_SIGNAL | ( | const QByteArray & | s | ) | [inline, slot] |
Definition at line 110 of file PythonQtStdDecorators.h.
{ return QByteArray("2") + s; }
| QByteArray PythonQtStdDecorators::static_Qt_SLOT | ( | const QByteArray & | s | ) | [inline, slot] |
Definition at line 111 of file PythonQtStdDecorators.h.
{ return QByteArray("1") + s; }
| QString PythonQtStdDecorators::tr | ( | QObject * | obj, |
| const QByteArray & | text, | ||
| const QByteArray & | ambig = QByteArray(), |
||
| int | n = -1 |
||
| ) | [slot] |
1.7.4