##// 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_QPointF.h
40 lines | 1.4 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QPOINTF_H
#define PYTHONQTWRAPPER_QPOINTF_H
#include <qpoint.h>
#include <QObject>
#include <PythonQt.h>
#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);
QPointF* new_QPointF(const QPointF& other) {
QPointF* a = new QPointF();
*((QPointF*)a) = other;
return a; }
void delete_QPointF(QPointF* obj) { delete obj; }
QPointF& operator_divide_assign(QPointF* theWrappedObject, qreal c);
qreal x(QPointF* theWrappedObject) const;
QPointF& operator_multiply_assign(QPointF* theWrappedObject, qreal c);
void setX(QPointF* theWrappedObject, qreal x);
bool isNull(QPointF* theWrappedObject) const;
void readFrom(QPointF* theWrappedObject, QDataStream& arg__1);
QPoint toPoint(QPointF* theWrappedObject) const;
QPointF& operator_add_assign(QPointF* theWrappedObject, const QPointF& p);
void writeTo(QPointF* theWrappedObject, QDataStream& arg__1);
qreal y(QPointF* theWrappedObject) const;
void setY(QPointF* theWrappedObject, qreal y);
bool operator_equal(QPointF* theWrappedObject, const QPointF& p2);
QPointF& operator_subtract_assign(QPointF* theWrappedObject, const QPointF& p);
};
#endif // PYTHONQTWRAPPER_QPOINTF_H