##// 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_QSize.h
46 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; }
florianlink
recreated wrappers to match current python qt version...
r73 void scale(QSize* theWrappedObject, int w, int h, Qt::AspectRatioMode mode);
int width(QSize* theWrappedObject) const;
void readFrom(QSize* theWrappedObject, QDataStream& arg__1);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 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
recreated wrappers to match current python qt version...
r73 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 QSize expandedTo(QSize* theWrappedObject, const QSize& arg__1) const;
florianlink
recreated wrappers to match current python qt version...
r73 QSize* operator_add_assign(QSize* theWrappedObject, const QSize& arg__1);
void writeTo(QSize* theWrappedObject, QDataStream& arg__1);
QSize* operator_multiply_assign(QSize* theWrappedObject, qreal c);
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);
florianlink
recreated wrappers to match current python qt version...
r73 QString toString(QSize*);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QSIZE_H