SourceForge.net Logo
Public Slots

PythonQtStdDecorators Class Reference

#include <PythonQtStdDecorators.h>

List of all members.

Public Slots

bool connect (QObject *sender, const QByteArray &signal, PyObject *callable)
bool connect (QObject *sender, const QByteArray &signal, QObject *receiver, const QByteArray &slot)
bool disconnect (QObject *sender, const QByteArray &signal, PyObject *callable)
bool disconnect (QObject *sender, const QByteArray &signal, QObject *receiver, const QByteArray &slot)
void emit (QObject *sender, const QByteArray &signal, PyObject *arg1=NULL, PyObject *arg2=NULL, PyObject *arg3=NULL, PyObject *arg4=NULL, PyObject *arg5=NULL, PyObject *arg6=NULL, PyObject *arg7=NULL)
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 &regExp)
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)

Detailed Description

Definition at line 55 of file PythonQtStdDecorators.h.


Member Function Documentation

const QObjectList* PythonQtStdDecorators::children ( QObject *  o  )  [slot]
bool PythonQtStdDecorators::connect ( QObject *  sender,
const QByteArray &  signal,
PyObject callable 
) [slot]
bool PythonQtStdDecorators::connect ( QObject *  sender,
const QByteArray &  signal,
QObject *  receiver,
const QByteArray &  slot 
) [slot]
bool PythonQtStdDecorators::disconnect ( QObject *  sender,
const QByteArray &  signal,
QObject *  receiver,
const QByteArray &  slot 
) [slot]
bool PythonQtStdDecorators::disconnect ( QObject *  sender,
const QByteArray &  signal,
PyObject callable 
) [slot]
void PythonQtStdDecorators::emit ( QObject *  sender,
const QByteArray &  signal,
PyObject arg1 = NULL,
PyObject arg2 = NULL,
PyObject arg3 = NULL,
PyObject arg4 = NULL,
PyObject arg5 = NULL,
PyObject arg6 = NULL,
PyObject arg7 = NULL 
) [slot]
QObject* PythonQtStdDecorators::findChild ( QObject *  parent,
PyObject type,
const QString &  name = QString() 
) [slot]
QList<QObject*> PythonQtStdDecorators::findChildren ( QObject *  parent,
PyObject type,
const QString &  name = QString() 
) [slot]
QList<QObject*> PythonQtStdDecorators::findChildren ( QObject *  parent,
PyObject type,
const QRegExp &  regExp 
) [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]
double PythonQtStdDecorators::static_Qt_qAbs ( double  a  )  [inline, slot]

Definition at line 81 of file PythonQtStdDecorators.h.

{ return qAbs(a); }

double PythonQtStdDecorators::static_Qt_qBound ( double  a,
double  b,
double  c 
) [inline, slot]

Definition at line 82 of file PythonQtStdDecorators.h.

{ return qBound(a,b,c); }

void PythonQtStdDecorators::static_Qt_qCritical ( const QByteArray &  msg  )  [inline, slot]

Definition at line 87 of file PythonQtStdDecorators.h.

{ qCritical(msg.constData()); }

void PythonQtStdDecorators::static_Qt_qDebug ( const QByteArray &  msg  )  [inline, slot]

Definition at line 83 of file PythonQtStdDecorators.h.

{ qDebug(msg.constData()); }

void PythonQtStdDecorators::static_Qt_qFatal ( const QByteArray &  msg  )  [inline, slot]

Definition at line 89 of file PythonQtStdDecorators.h.

{ qFatal(msg.constData()); }

bool PythonQtStdDecorators::static_Qt_qFuzzyCompare ( double  a,
double  b 
) [inline, slot]

Definition at line 91 of file PythonQtStdDecorators.h.

{ return qFuzzyCompare(a, b); }

double PythonQtStdDecorators::static_Qt_qMax ( double  a,
double  b 
) [inline, slot]

Definition at line 92 of file PythonQtStdDecorators.h.

{ return qMax(a, b); }

double PythonQtStdDecorators::static_Qt_qMin ( double  a,
double  b 
) [inline, slot]

Definition at line 93 of file PythonQtStdDecorators.h.

{ return qMin(a, b); }

int PythonQtStdDecorators::static_Qt_qrand (  )  [inline, slot]

Definition at line 97 of file PythonQtStdDecorators.h.

{ return qrand(); }

int PythonQtStdDecorators::static_Qt_qRound ( double  a  )  [inline, slot]

Definition at line 94 of file PythonQtStdDecorators.h.

{ return qRound(a); }

qint64 PythonQtStdDecorators::static_Qt_qRound64 ( double  a  )  [inline, slot]

Definition at line 95 of file PythonQtStdDecorators.h.

{ return qRound64(a); }

void PythonQtStdDecorators::static_Qt_qsrand ( uint  a  )  [inline, slot]

Definition at line 98 of file PythonQtStdDecorators.h.

{ qsrand(a); }

const char* PythonQtStdDecorators::static_Qt_qVersion (  )  [inline, slot]

Definition at line 96 of file PythonQtStdDecorators.h.

{ return qVersion(); }

void PythonQtStdDecorators::static_Qt_qWarning ( const QByteArray &  msg  )  [inline, slot]

Definition at line 85 of file PythonQtStdDecorators.h.

{ qWarning(msg.constData()); }

QByteArray PythonQtStdDecorators::static_Qt_SIGNAL ( const QByteArray &  s  )  [inline, slot]

Definition at line 102 of file PythonQtStdDecorators.h.

{ return QByteArray("2") + s; }

QByteArray PythonQtStdDecorators::static_Qt_SLOT ( const QByteArray &  s  )  [inline, slot]

Definition at line 103 of file PythonQtStdDecorators.h.

{ return QByteArray("1") + s; }

QString PythonQtStdDecorators::tr ( QObject *  obj,
const QByteArray &  text,
const QByteArray &  ambig = QByteArray(),
int  n = -1 
) [slot]

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