##// 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_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