QGIS API Documentation  2.12.0-Lyon
Public Slots | Signals | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
QgsNetworkAccessManager Class Reference

#include <qgsnetworkaccessmanager.h>

Inheritance diagram for QgsNetworkAccessManager:
Inheritance graph
[legend]

Public Slots

void deleteReply (QNetworkReply *reply)
 Abort and delete reply. More...
 
void sendGet (const QNetworkRequest &request)
 Send GET request, calls get(). More...
 

Signals

void requestAboutToBeCreated (QNetworkAccessManager::Operation, const QNetworkRequest &, QIODevice *)
 
void requestCreated (QNetworkReply *)
 
void requestSent (QNetworkReply *reply, QObject *sender)
 Emitted when request was sent by request() More...
 
void requestTimedOut (QNetworkReply *)
 

Public Member Functions

 QgsNetworkAccessManager (QObject *parent=0)
 
 ~QgsNetworkAccessManager ()
 destructor More...
 
const QStringListexcludeList () const
 retrieve exclude list (urls shouldn't use the fallback proxy) More...
 
const QNetworkProxyfallbackProxy () const
 retrieve fall back proxy (for urls that no factory returned proxies for) More...
 
void insertProxyFactory (QNetworkProxyFactory *factory)
 insert a factory into the proxy factories list More...
 
const QList< QNetworkProxyFactory * > proxyFactories () const
 retrieve proxy factory list More...
 
void removeProxyFactory (QNetworkProxyFactory *factory)
 remove a factory from the proxy factories list More...
 
void setFallbackProxyAndExcludes (const QNetworkProxy &proxy, const QStringList &excludes)
 set fallback proxy and URL that shouldn't use it. More...
 
void setupDefaultProxyAndCache ()
 Setup the NAM according to the user's settings. More...
 
bool useSystemProxy ()
 
- Public Member Functions inherited from QNetworkAccessManager
 QNetworkAccessManager (QObject *parent)
 
 ~QNetworkAccessManager ()
 
QNetworkConfiguration activeConfiguration () const
 
void authenticationRequired (QNetworkReply *reply, QAuthenticator *authenticator)
 
QAbstractNetworkCachecache () const
 
QNetworkConfiguration configuration () const
 
QNetworkCookieJarcookieJar () const
 
QNetworkReplydeleteResource (const QNetworkRequest &request)
 
void finished (QNetworkReply *reply)
 
QNetworkReplyget (const QNetworkRequest &request)
 
QNetworkReplyhead (const QNetworkRequest &request)
 
NetworkAccessibility networkAccessible () const
 
void networkAccessibleChanged (QNetworkAccessManager::NetworkAccessibility accessible)
 
QNetworkReplypost (const QNetworkRequest &request, QHttpMultiPart *multiPart)
 
QNetworkReplypost (const QNetworkRequest &request, QIODevice *data)
 
QNetworkReplypost (const QNetworkRequest &request, const QByteArray &data)
 
QNetworkProxy proxy () const
 
void proxyAuthenticationRequired (const QNetworkProxy &proxy, QAuthenticator *authenticator)
 
QNetworkProxyFactoryproxyFactory () const
 
QNetworkReplyput (const QNetworkRequest &request, QIODevice *data)
 
QNetworkReplyput (const QNetworkRequest &request, const QByteArray &data)
 
QNetworkReplyput (const QNetworkRequest &request, QHttpMultiPart *multiPart)
 
QNetworkReplysendCustomRequest (const QNetworkRequest &request, const QByteArray &verb, QIODevice *data)
 
void setCache (QAbstractNetworkCache *cache)
 
void setConfiguration (const QNetworkConfiguration &config)
 
void setCookieJar (QNetworkCookieJar *cookieJar)
 
void setNetworkAccessible (NetworkAccessibility accessible)
 
void setProxy (const QNetworkProxy &proxy)
 
void setProxyFactory (QNetworkProxyFactory *factory)
 
void sslErrors (QNetworkReply *reply, const QList< QSslError > &errors)
 
- Public Member Functions inherited from QObject
 QObject (QObject *parent)
 
 QObject (QObject *parent, const char *name)
 
virtual  ~QObject ()
 
bool blockSignals (bool block)
 
QObjectchild (const char *objName, const char *inheritsClass, bool recursiveSearch) const
 
const QObjectList & children () const
 
const char * className () const
 
bool connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const
 
void deleteLater ()
 
void destroyed (QObject *obj)
 
bool disconnect (const QObject *receiver, const char *method)
 
bool disconnect (const char *signal, const QObject *receiver, const char *method)
 
void dumpObjectInfo ()
 
void dumpObjectTree ()
 
QList< QByteArraydynamicPropertyNames () const
 
virtual bool event (QEvent *e)
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 
findChild (const QString &name) const
 
QList< T > findChildren (const QRegExp &regExp) const
 
QList< T > findChildren (const QString &name) const
 
bool inherits (const char *className) const
 
void insertChild (QObject *object)
 
void installEventFilter (QObject *filterObj)
 
bool isA (const char *className) const
 
bool isWidgetType () const
 
void killTimer (int id)
 
virtual const QMetaObjectmetaObject () const
 
void moveToThread (QThread *targetThread)
 
const char * name () const
 
const char * name (const char *defaultName) const
 
QString objectName () const
 
QObjectparent () const
 
QVariant property (const char *name) const
 
void removeChild (QObject *object)
 
void removeEventFilter (QObject *obj)
 
void setName (const char *name)
 
void setObjectName (const QString &name)
 
void setParent (QObject *parent)
 
bool setProperty (const char *name, const QVariant &value)
 
bool signalsBlocked () const
 
int startTimer (int interval)
 
QThreadthread () const
 

Static Public Member Functions

static QNetworkRequest::CacheLoadControl cacheLoadControlFromName (const QString &theName)
 Get QNetworkRequest::CacheLoadControl from name. More...
 
static QString cacheLoadControlName (QNetworkRequest::CacheLoadControl theControl)
 Get name for QNetworkRequest::CacheLoadControl. More...
 
static QgsNetworkAccessManagerinstance ()
 returns a pointer to the single instance More...
 
- Static Public Member Functions inherited from QObject
bool connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
 
bool connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type)
 
bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method)
 
bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method)
 
QString tr (const char *sourceText, const char *disambiguation, int n)
 
QString trUtf8 (const char *sourceText, const char *disambiguation, int n)
 

Protected Member Functions

virtual QNetworkReplycreateRequest (QNetworkAccessManager::Operation op, const QNetworkRequest &req, QIODevice *outgoingData=0) override
 
- Protected Member Functions inherited from QNetworkAccessManager
virtual QNetworkReplycreateRequest (Operation op, const QNetworkRequest &req, QIODevice *outgoingData)
 
- Protected Member Functions inherited from QObject
bool checkConnectArgs (const char *signal, const QObject *object, const char *method)
 
virtual void childEvent (QChildEvent *event)
 
virtual void connectNotify (const char *signal)
 
virtual void customEvent (QEvent *event)
 
virtual void disconnectNotify (const char *signal)
 
int receivers (const char *signal) const
 
QObjectsender () const
 
int senderSignalIndex () const
 
virtual void timerEvent (QTimerEvent *event)
 

Additional Inherited Members

- Static Protected Member Functions inherited from QObject
QByteArray normalizeSignalSlot (const char *signalSlot)
 
- Properties inherited from QNetworkAccessManager
 networkAccessible
 
- Properties inherited from QObject
 objectName
 

Detailed Description

Definition at line 44 of file qgsnetworkaccessmanager.h.

Constructor & Destructor Documentation

QgsNetworkAccessManager::QgsNetworkAccessManager ( QObject parent = 0)

Definition at line 105 of file qgsnetworkaccessmanager.cpp.

QgsNetworkAccessManager::~QgsNetworkAccessManager ( )

destructor

Definition at line 112 of file qgsnetworkaccessmanager.cpp.

Member Function Documentation

QNetworkRequest::CacheLoadControl QgsNetworkAccessManager::cacheLoadControlFromName ( const QString theName)
static

Get QNetworkRequest::CacheLoadControl from name.

Definition at line 253 of file qgsnetworkaccessmanager.cpp.

QString QgsNetworkAccessManager::cacheLoadControlName ( QNetworkRequest::CacheLoadControl  theControl)
static

Get name for QNetworkRequest::CacheLoadControl.

Definition at line 231 of file qgsnetworkaccessmanager.cpp.

QNetworkReply * QgsNetworkAccessManager::createRequest ( QNetworkAccessManager::Operation  op,
const QNetworkRequest req,
QIODevice outgoingData = 0 
)
overrideprotectedvirtual

Definition at line 160 of file qgsnetworkaccessmanager.cpp.

void QgsNetworkAccessManager::deleteReply ( QNetworkReply reply)
slot

Abort and delete reply.

This slot may be used to abort reply created by instance of this class (and which was not moved to another thread) from a different thread. Such reply cannot be aborted directly from a different thread. The reply must be also deleted in this slot, otherwise it could happen that abort signal comes after the reply was deleted.

Parameters
replyreply to be aborted.

Definition at line 384 of file qgsnetworkaccessmanager.cpp.

const QStringList & QgsNetworkAccessManager::excludeList ( ) const

retrieve exclude list (urls shouldn't use the fallback proxy)

Definition at line 131 of file qgsnetworkaccessmanager.cpp.

const QNetworkProxy & QgsNetworkAccessManager::fallbackProxy ( ) const

retrieve fall back proxy (for urls that no factory returned proxies for)

Definition at line 136 of file qgsnetworkaccessmanager.cpp.

void QgsNetworkAccessManager::insertProxyFactory ( QNetworkProxyFactory factory)

insert a factory into the proxy factories list

Definition at line 116 of file qgsnetworkaccessmanager.cpp.

QgsNetworkAccessManager * QgsNetworkAccessManager::instance ( )
static

returns a pointer to the single instance

Definition at line 99 of file qgsnetworkaccessmanager.cpp.

const QList< QNetworkProxyFactory * > QgsNetworkAccessManager::proxyFactories ( ) const

retrieve proxy factory list

Definition at line 126 of file qgsnetworkaccessmanager.cpp.

void QgsNetworkAccessManager::removeProxyFactory ( QNetworkProxyFactory factory)

remove a factory from the proxy factories list

Definition at line 121 of file qgsnetworkaccessmanager.cpp.

void QgsNetworkAccessManager::requestAboutToBeCreated ( QNetworkAccessManager::Operation  ,
const QNetworkRequest ,
QIODevice  
)
signal
void QgsNetworkAccessManager::requestCreated ( QNetworkReply )
signal
void QgsNetworkAccessManager::requestSent ( QNetworkReply reply,
QObject sender 
)
signal

Emitted when request was sent by request()

Parameters
replyrequest reply
senderthe object which called request() slot.
void QgsNetworkAccessManager::requestTimedOut ( QNetworkReply )
signal
void QgsNetworkAccessManager::sendGet ( const QNetworkRequest request)
slot

Send GET request, calls get().

Emits requestSent().

Parameters
requestrequest to be sent

Definition at line 377 of file qgsnetworkaccessmanager.cpp.

void QgsNetworkAccessManager::setFallbackProxyAndExcludes ( const QNetworkProxy proxy,
const QStringList excludes 
)

set fallback proxy and URL that shouldn't use it.

Definition at line 141 of file qgsnetworkaccessmanager.cpp.

void QgsNetworkAccessManager::setupDefaultProxyAndCache ( )

Setup the NAM according to the user's settings.

Definition at line 274 of file qgsnetworkaccessmanager.cpp.

bool QgsNetworkAccessManager::useSystemProxy ( )
inline

Definition at line 85 of file qgsnetworkaccessmanager.h.


The documentation for this class was generated from the following files: