##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QNetworkCookie.h
44 lines | 2.0 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QNETWORKCOOKIE_H
#define PYTHONQTWRAPPER_QNETWORKCOOKIE_H
#include <qnetworkcookie.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 <QDateTime>
#include <QVariant>
#include <qbytearray.h>
#include <qdatetime.h>
#include <qlist.h>
#include <qnetworkcookie.h>
class PythonQtWrapper_QNetworkCookie : public QObject
{ Q_OBJECT
public:
Q_ENUMS(RawForm )
enum RawForm{
NameAndValueOnly = QNetworkCookie::NameAndValueOnly, Full = QNetworkCookie::Full};
public slots:
QNetworkCookie* new_QNetworkCookie(const QByteArray& name = QByteArray(), const QByteArray& value = QByteArray());
QNetworkCookie* new_QNetworkCookie(const QNetworkCookie& other);
void delete_QNetworkCookie(QNetworkCookie* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 QString domain(QNetworkCookie* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool operator_equal(QNetworkCookie* theWrappedObject, const QNetworkCookie& other) const;
florianlink
upgraded wrappers to current generator version...
r28 QString path(QNetworkCookie* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QByteArray name(QNetworkCookie* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QList<QNetworkCookie > static_QNetworkCookie_parseCookies(const QByteArray& cookieString);
void setSecure(QNetworkCookie* theWrappedObject, bool enable);
florianlink
upgraded wrappers to current generator version...
r28 void setValue(QNetworkCookie* theWrappedObject, const QByteArray& value);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setName(QNetworkCookie* theWrappedObject, const QByteArray& cookieName);
void setExpirationDate(QNetworkCookie* theWrappedObject, const QDateTime& date);
QDateTime expirationDate(QNetworkCookie* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QByteArray toRawForm(QNetworkCookie* theWrappedObject, QNetworkCookie::RawForm form = QNetworkCookie::Full) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isSecure(QNetworkCookie* theWrappedObject) const;
bool isSessionCookie(QNetworkCookie* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QByteArray value(QNetworkCookie* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setDomain(QNetworkCookie* theWrappedObject, const QString& domain);
void setPath(QNetworkCookie* theWrappedObject, const QString& path);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QNETWORKCOOKIE_H