##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QIntValidator.h
30 lines | 1012 B | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QINTVALIDATOR_H
#define PYTHONQTWRAPPER_QINTVALIDATOR_H
#include <qvalidator.h>
#include <QObject>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qlocale.h>
#include <qobject.h>
#include <qvalidator.h>
class PythonQtWrapper_QIntValidator : public QObject
{ Q_OBJECT
public:
public slots:
QIntValidator* new_QIntValidator(QObject* parent);
QIntValidator* new_QIntValidator(int bottom, int top, QObject* parent);
void delete_QIntValidator(QIntValidator* obj) { delete obj; }
int bottom(QIntValidator* theWrappedObject) const;
void setBottom(QIntValidator* theWrappedObject, int arg__1);
void setRange(QIntValidator* theWrappedObject, int bottom, int top);
void setTop(QIntValidator* theWrappedObject, int arg__1);
int top(QIntValidator* theWrappedObject) const;
QValidator::State validate(QIntValidator* theWrappedObject, QString& arg__1, int& arg__2) const;
};
#endif // PYTHONQTWRAPPER_QINTVALIDATOR_H