KIO
#include <accessmanager.h>
Public Member Functions | |
CookieJar (QObject *parent=0) | |
~CookieJar () | |
QList< QNetworkCookie > | cookiesForUrl (const QUrl &url) const |
bool | isCookieStorageDisabled () const |
void | reparseConfiguration () |
bool | setCookiesFromUrl (const QList< QNetworkCookie > &cookieList, const QUrl &url) |
void | setDisableCookieStorage (bool disable) |
void | setWindowId (WId id) |
WId | windowId () const |
Detailed Description
A KDE implementation of QNetworkCookieJar.
Use this class in place of QNetworkCookieJar if you want to integrate with KDE's cookiejar instead of the one that comes with Qt.
Here is a simple example that shows how to set the QtWebKit module to use KDE's cookiejar:
To access member functions in the cookiejar class at a later point in your code simply downcast the pointer returned by QNetworkAccessManager::cookieJar as follows:
IMPORTANTThis class is not a replacement for the standard KDE API. It should ONLY be used to to provide KDE integration in applications that cannot use the standard KDE API directly.
- See also
- QNetworkAccessManager::setCookieJar for details.
- Since
- 4.4
Definition at line 278 of file accessmanager.h.
Constructor & Destructor Documentation
|
explicit |
Constructs a KNetworkCookieJar with parent parent
.
Definition at line 495 of file accessmanager.cpp.
CookieJar::~CookieJar | ( | ) |
Destroys the KNetworkCookieJar.
Definition at line 501 of file accessmanager.cpp.
Member Function Documentation
Reimplemented for internal reasons, the API is not affected.
- See also
- QNetworkCookieJar::cookiesForUrl
Definition at line 516 of file accessmanager.cpp.
bool CookieJar::isCookieStorageDisabled | ( | ) | const |
Returns true if persistent caching of cookies is disabled.
- See also
- setDisableCookieStorage
- Since
- 4.6
Definition at line 511 of file accessmanager.cpp.
void CookieJar::reparseConfiguration | ( | ) |
Reparse the KDE cookiejar configuration file.
Definition at line 577 of file accessmanager.cpp.
Reimplemented for internal reasons, the API is not affected.
- See also
- QNetworkCookieJar::setCookiesFromUrl
Definition at line 544 of file accessmanager.cpp.
void CookieJar::setDisableCookieStorage | ( | bool | disable | ) |
Prevent persistent storage of cookies.
Call this function if you do not want cookies to be stored locally for later access without disabling the cookiejar. All cookies will be discarded once the sessions that are using the cookie are done.
- Since
- 4.6
Definition at line 567 of file accessmanager.cpp.
void CookieJar::setWindowId | ( | WId | id | ) |
Sets the window id of the application.
This value is used by KDE's cookiejar to manage session cookies, namely to delete them when the last application referring to such cookies is closed by the end user.
- See also
- QWidget::window()
- QWidget::winId()
- Parameters
-
id the value of QWidget::winId() from the window that contains your widget.
Definition at line 572 of file accessmanager.cpp.
WId CookieJar::windowId | ( | ) | const |
Returns the currently set window id.
The default value is -1.
Definition at line 506 of file accessmanager.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:50:05 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.