##// 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_QBitArray.h
47 lines | 2.0 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QBITARRAY_H
#define PYTHONQTWRAPPER_QBITARRAY_H
#include <qbitarray.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 <qbitarray.h>
#include <qdatastream.h>
class PythonQtWrapper_QBitArray : public QObject
{ Q_OBJECT
public:
public slots:
QBitArray* new_QBitArray();
QBitArray* new_QBitArray(const QBitArray& other);
QBitArray* new_QBitArray(int size, bool val = false);
void delete_QBitArray(QBitArray* obj) { delete obj; }
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void resize(QBitArray* theWrappedObject, int size);
florianlink
recreated wrappers to match current python qt version...
r73 void clear(QBitArray* theWrappedObject);
florianlink
upgraded wrappers to current generator version...
r28 QBitArray operator_negate(QBitArray* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void clearBit(QBitArray* theWrappedObject, int i);
void writeTo(QBitArray* theWrappedObject, QDataStream& arg__1);
bool operator_equal(QBitArray* theWrappedObject, const QBitArray& a) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool at(QBitArray* theWrappedObject, int i) const;
florianlink
recreated wrappers to match current python qt version...
r73 QBitArray* operator_xor_assign(QBitArray* theWrappedObject, const QBitArray& arg__1);
void readFrom(QBitArray* theWrappedObject, QDataStream& arg__1);
void truncate(QBitArray* theWrappedObject, int pos);
bool toggleBit(QBitArray* theWrappedObject, int i);
QBitArray* operator_assign(QBitArray* theWrappedObject, const QBitArray& other);
QBitArray* operator_or_assign(QBitArray* theWrappedObject, const QBitArray& arg__1);
florianlink
upgraded wrappers to current generator version...
r28 int size(QBitArray* theWrappedObject) const;
bool fill(QBitArray* theWrappedObject, bool val, int size = -1);
florianlink
recreated wrappers to match current python qt version...
r73 int count(QBitArray* theWrappedObject, bool on) const;
florianlink
upgraded wrappers to current generator version...
r28 bool isEmpty(QBitArray* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int count(QBitArray* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QBitArray* operator_and_assign(QBitArray* theWrappedObject, const QBitArray& arg__1);
florianlink
upgraded wrappers to current generator version...
r28 bool isNull(QBitArray* theWrappedObject) const;
void setBit(QBitArray* theWrappedObject, int i, bool val);
void setBit(QBitArray* theWrappedObject, int i);
florianlink
recreated wrappers to match current python qt version...
r73 bool testBit(QBitArray* theWrappedObject, int i) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void fill(QBitArray* theWrappedObject, bool val, int first, int last);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QBITARRAY_H