##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QSize.h
45 lines | 1.7 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QSIZE_H
#define PYTHONQTWRAPPER_QSIZE_H
#include <qsize.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 <qsize.h>
class PythonQtWrapper_QSize : public QObject
{ Q_OBJECT
public:
public slots:
QSize* new_QSize();
QSize* new_QSize(int w, int h);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QSize* new_QSize(const QSize& other) {
QSize* a = new QSize();
*((QSize*)a) = other;
return a; }
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void delete_QSize(QSize* obj) { delete obj; }
bool isEmpty(QSize* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 bool operator_equal(QSize* theWrappedObject, const QSize& s2);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void transpose(QSize* theWrappedObject);
int height(QSize* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool isNull(QSize* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void writeTo(QSize* 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 QSize& operator_subtract_assign(QSize* theWrappedObject, const QSize& arg__1);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool isValid(QSize* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void readFrom(QSize* theWrappedObject, QDataStream& arg__1);
QSize expandedTo(QSize* theWrappedObject, const QSize& arg__1) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QSize& operator_add_assign(QSize* theWrappedObject, const QSize& arg__1);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QSize& operator_multiply_assign(QSize* theWrappedObject, qreal c);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QSize& operator_divide_assign(QSize* theWrappedObject, qreal c);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QSize boundedTo(QSize* theWrappedObject, const QSize& arg__1) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setHeight(QSize* theWrappedObject, int h);
void setWidth(QSize* theWrappedObject, int w);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void scale(QSize* theWrappedObject, const QSize& s, Qt::AspectRatioMode mode);
void scale(QSize* theWrappedObject, int w, int h, Qt::AspectRatioMode mode);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 int width(QSize* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QSIZE_H