##// END OF EJS Templates
- added hasOwner method to manage ownership more nicely...
- added hasOwner method to manage ownership more nicely - added force flag to make delete() work - added check for hasOwner git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@51 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r15:ae998290bf19
Show More
PythonQtWrapper_QRadialGradient.h
34 lines | 1.4 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QRADIALGRADIENT_H
#define PYTHONQTWRAPPER_QRADIALGRADIENT_H
#include <qbrush.h>
#include <QObject>
#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);
void delete_QRadialGradient(QRadialGradient* obj) { delete obj; }
QPointF center(QRadialGradient* theWrappedObject) const;
QPointF focalPoint(QRadialGradient* theWrappedObject) const;
qreal radius(QRadialGradient* theWrappedObject) const;
void setCenter(QRadialGradient* theWrappedObject, const QPointF& center);
void setCenter(QRadialGradient* theWrappedObject, qreal x, qreal y);
void setFocalPoint(QRadialGradient* theWrappedObject, const QPointF& focalPoint);
void setFocalPoint(QRadialGradient* theWrappedObject, qreal x, qreal y);
void setRadius(QRadialGradient* theWrappedObject, qreal radius);
};
#endif // PYTHONQTWRAPPER_QRADIALGRADIENT_H