##// 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_QPoint.h
40 lines | 1.3 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QPOINT_H
#define PYTHONQTWRAPPER_QPOINT_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_QPoint : public QObject
{ Q_OBJECT
public:
public slots:
QPoint* new_QPoint();
QPoint* new_QPoint(int xpos, int ypos);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QPoint* new_QPoint(const QPoint& other) {
QPoint* a = new QPoint();
*((QPoint*)a) = other;
return a; }
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void delete_QPoint(QPoint* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 bool operator_equal(QPoint* theWrappedObject, const QPoint& p2);
florianlink
upgraded wrappers to current generator version...
r28 void setY(QPoint* theWrappedObject, int y);
florianlink
recreated wrappers to match current python qt version...
r73 QPoint* operator_add_assign(QPoint* theWrappedObject, const QPoint& p);
QPoint* operator_multiply_assign(QPoint* theWrappedObject, qreal c);
florianlink
upgraded wrappers to current generator version...
r28 bool isNull(QPoint* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void writeTo(QPoint* theWrappedObject, QDataStream& arg__1);
int y(QPoint* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int manhattanLength(QPoint* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QPoint* operator_subtract_assign(QPoint* theWrappedObject, const QPoint& p);
void setX(QPoint* theWrappedObject, int x);
QPoint* operator_divide_assign(QPoint* theWrappedObject, qreal c);
int x(QPoint* theWrappedObject) const;
void readFrom(QPoint* theWrappedObject, QDataStream& arg__1);
QString toString(QPoint*);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QPOINT_H