##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QPointF.h
41 lines | 1.4 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QPOINTF_H
#define PYTHONQTWRAPPER_QPOINTF_H
#include <qpoint.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 <qdatastream.h>
#include <qpoint.h>
class PythonQtWrapper_QPointF : public QObject
{ Q_OBJECT
public:
public slots:
QPointF* new_QPointF();
QPointF* new_QPointF(const QPoint& p);
QPointF* new_QPointF(qreal xpos, qreal ypos);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QPointF* new_QPointF(const QPointF& other) {
QPointF* a = new QPointF();
*((QPointF*)a) = other;
return a; }
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void delete_QPointF(QPointF* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 QPointF* operator_subtract_assign(QPointF* theWrappedObject, const QPointF& p);
QPointF* operator_divide_assign(QPointF* theWrappedObject, qreal c);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 qreal x(QPointF* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QPointF* operator_multiply_assign(QPointF* theWrappedObject, qreal c);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setX(QPointF* theWrappedObject, qreal x);
florianlink
recreated wrappers to match current python qt version...
r73 void writeTo(QPointF* theWrappedObject, QDataStream& arg__1);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isNull(QPointF* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QPoint toPoint(QPointF* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QPointF* operator_add_assign(QPointF* theWrappedObject, const QPointF& p);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 qreal y(QPointF* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setY(QPointF* theWrappedObject, qreal y);
bool operator_equal(QPointF* theWrappedObject, const QPointF& p2);
florianlink
recreated wrappers to match current python qt version...
r73 void readFrom(QPointF* theWrappedObject, QDataStream& arg__1);
QString toString(QPointF*);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QPOINTF_H