##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
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; }
florianlink
recreated wrappers to match current python qt version...
r73 void setCenter(QRadialGradient* theWrappedObject, const QPointF& center);
florianlink
upgraded wrappers to current generator version...
r28 qreal radius(QRadialGradient* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setFocalPoint(QRadialGradient* theWrappedObject, qreal x, qreal y);
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
recreated wrappers to match current python qt version...
r73 QPointF center(QRadialGradient* theWrappedObject) const;
QPointF focalPoint(QRadialGradient* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QRADIALGRADIENT_H