##// 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_QHostInfo.h
41 lines | 1.6 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QHOSTINFO_H
#define PYTHONQTWRAPPER_QHOSTINFO_H
#include <qhostinfo.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 <qhostaddress.h>
#include <qhostinfo.h>
#include <qlist.h>
#include <qobject.h>
class PythonQtWrapper_QHostInfo : public QObject
{ Q_OBJECT
public:
Q_ENUMS(HostInfoError )
enum HostInfoError{
NoError = QHostInfo::NoError, HostNotFound = QHostInfo::HostNotFound, UnknownError = QHostInfo::UnknownError};
public slots:
QHostInfo* new_QHostInfo(const QHostInfo& d);
QHostInfo* new_QHostInfo(int lookupId = -1);
void delete_QHostInfo(QHostInfo* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 int static_QHostInfo_lookupHost(const QString& name, QObject* receiver, const char* member);
florianlink
upgraded wrappers to current generator version...
r28 QString errorString(QHostInfo* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QString hostName(QHostInfo* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setAddresses(QHostInfo* theWrappedObject, const QList<QHostAddress >& addresses);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setLookupId(QHostInfo* theWrappedObject, int id);
QList<QHostAddress > addresses(QHostInfo* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QString static_QHostInfo_localHostName();
florianlink
recreated wrappers to match current python qt version...
r73 void setErrorString(QHostInfo* theWrappedObject, const QString& errorString);
QHostInfo static_QHostInfo_fromName(const QString& name);
int lookupId(QHostInfo* theWrappedObject) const;
QHostInfo::HostInfoError error(QHostInfo* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setError(QHostInfo* theWrappedObject, QHostInfo::HostInfoError error);
void setHostName(QHostInfo* theWrappedObject, const QString& name);
florianlink
upgraded wrappers to current generator version...
r28 void static_QHostInfo_abortHostLookup(int lookupId);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QHOSTINFO_H