##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QRadialGradient.h
40 lines | 1.6 KiB | text/x-c | CLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QRadialGradient.h
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QRADIALGRADIENT_H
#define PYTHONQTWRAPPER_QRADIALGRADIENT_H
#include <qbrush.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qpair.h>
#include <qpoint.h>
#include <qvector.h>
class PythonQtWrapper_QRadialGradient : public QObject
{ Q_OBJECT
public:
public slots:
QRadialGradient* new_QRadialGradient();
QRadialGradient* new_QRadialGradient(const QPointF& center, qreal radius);
QRadialGradient* new_QRadialGradient(const QPointF& center, qreal radius, const QPointF& focalPoint);
QRadialGradient* new_QRadialGradient(qreal cx, qreal cy, qreal radius);
QRadialGradient* new_QRadialGradient(qreal cx, qreal cy, qreal radius, qreal fx, qreal fy);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QRadialGradient* new_QRadialGradient(const QRadialGradient& other) {
QRadialGradient* a = new QRadialGradient();
*((QRadialGradient*)a) = other;
return a; }
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void delete_QRadialGradient(QRadialGradient* obj) { delete obj; }
QPointF center(QRadialGradient* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QPointF focalPoint(QRadialGradient* theWrappedObject) const;
void setFocalPoint(QRadialGradient* theWrappedObject, qreal x, qreal y);
qreal radius(QRadialGradient* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setCenter(QRadialGradient* theWrappedObject, qreal x, qreal y);
florianlink
upgraded wrappers to current generator version...
r28 void setFocalPoint(QRadialGradient* theWrappedObject, const QPointF& focalPoint);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setRadius(QRadialGradient* theWrappedObject, qreal radius);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setCenter(QRadialGradient* theWrappedObject, const QPointF& center);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QRADIALGRADIENT_H