##// END OF EJS Templates
- wrapped instances are now wrapped by class specific subtypes to facilitate future deriving from python...
- wrapped instances are now wrapped by class specific subtypes to facilitate future deriving from python - object creation has changed by using the python type system (calling the type object with PyObject_Call) git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@54 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r18:44e5ff2700cb
Show More
PythonQtWrapper_QSizeF.h
41 lines | 1.7 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QSIZEF_H
#define PYTHONQTWRAPPER_QSIZEF_H
#include <qsize.h>
#include <QObject>
#include <QVariant>
#include <qdatastream.h>
#include <qsize.h>
class PythonQtWrapper_QSizeF : public QObject
{ Q_OBJECT
public:
public slots:
QSizeF* new_QSizeF();
QSizeF* new_QSizeF(const QSize& sz);
QSizeF* new_QSizeF(qreal w, qreal h);
void delete_QSizeF(QSizeF* obj) { delete obj; }
QSizeF boundedTo(QSizeF* theWrappedObject, const QSizeF& arg__1) const;
QSizeF expandedTo(QSizeF* theWrappedObject, const QSizeF& arg__1) const;
qreal height(QSizeF* theWrappedObject) const;
bool isEmpty(QSizeF* theWrappedObject) const;
bool isNull(QSizeF* theWrappedObject) const;
bool isValid(QSizeF* theWrappedObject) const;
QSizeF& operator_multiply_assign(QSizeF* theWrappedObject, qreal c);
QSizeF& operator_add_assign(QSizeF* theWrappedObject, const QSizeF& arg__1);
QSizeF& operator_subtract_assign(QSizeF* theWrappedObject, const QSizeF& arg__1);
QSizeF& operator_divide_assign(QSizeF* theWrappedObject, qreal c);
void writeTo(QSizeF* theWrappedObject, QDataStream& arg__1);
bool operator_equal(QSizeF* theWrappedObject, const QSizeF& s2);
void readFrom(QSizeF* theWrappedObject, QDataStream& arg__1);
void scale(QSizeF* theWrappedObject, const QSizeF& s, Qt::AspectRatioMode mode);
void scale(QSizeF* theWrappedObject, qreal w, qreal h, Qt::AspectRatioMode mode);
void setHeight(QSizeF* theWrappedObject, qreal h);
void setWidth(QSizeF* theWrappedObject, qreal w);
QSize toSize(QSizeF* theWrappedObject) const;
void transpose(QSizeF* theWrappedObject);
qreal width(QSizeF* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QSIZEF_H