##// 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_QHttpHeader.h
62 lines | 2.5 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QHTTPHEADER_H
#define PYTHONQTWRAPPER_QHTTPHEADER_H
#include <qhttp.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 <qlist.h>
#include <qpair.h>
#include <qstringlist.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QHttpHeader : public QHttpHeader
{
public:
PythonQtShell_QHttpHeader():QHttpHeader(),_wrapper(NULL) {};
PythonQtShell_QHttpHeader(const QString& str):QHttpHeader(str),_wrapper(NULL) {};
virtual int majorVersion() const;
virtual int minorVersion() const;
virtual bool parseLine(const QString& line, int number);
virtual QString toString() const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QHttpHeader : public QHttpHeader
{ public:
florianlink
upgraded wrappers to current generator version...
r28 inline QString promoted_toString() const { return QHttpHeader::toString(); }
florianlink
recreated wrappers to match current python qt version...
r73 inline bool promoted_parseLine(const QString& line, int number) { return QHttpHeader::parseLine(line, number); }
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 };
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QHttpHeader : public QObject
{ Q_OBJECT
public:
public slots:
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QHttpHeader* new_QHttpHeader();
QHttpHeader* new_QHttpHeader(const QString& str);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void delete_QHttpHeader(QHttpHeader* 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 removeAllValues(QHttpHeader* theWrappedObject, const QString& key);
florianlink
recreated wrappers to match current python qt version...
r73 void setValue(QHttpHeader* theWrappedObject, const QString& key, const QString& value);
bool isValid(QHttpHeader* theWrappedObject) const;
void removeValue(QHttpHeader* theWrappedObject, const QString& key);
QString toString(QHttpHeader* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setContentType(QHttpHeader* theWrappedObject, const QString& type);
florianlink
recreated wrappers to match current python qt version...
r73 QString contentType(QHttpHeader* theWrappedObject) const;
bool hasContentLength(QHttpHeader* theWrappedObject) const;
bool hasContentType(QHttpHeader* theWrappedObject) const;
void setContentLength(QHttpHeader* theWrappedObject, int len);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void addValue(QHttpHeader* theWrappedObject, const QString& key, const QString& value);
florianlink
upgraded wrappers to current generator version...
r28 QList<QPair<QString , QString > > values(QHttpHeader* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 uint contentLength(QHttpHeader* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool hasKey(QHttpHeader* theWrappedObject, const QString& key) const;
florianlink
recreated wrappers to match current python qt version...
r73 QString value(QHttpHeader* theWrappedObject, const QString& key) const;
florianlink
upgraded wrappers to current generator version...
r28 QStringList allValues(QHttpHeader* theWrappedObject, const QString& key) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setValues(QHttpHeader* theWrappedObject, const QList<QPair<QString , QString > >& values);
QStringList keys(QHttpHeader* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool parseLine(QHttpHeader* theWrappedObject, const QString& line, int number);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QHTTPHEADER_H