cookiejar.h
上传用户:huahtool
上传日期:2015-12-10
资源大小:1089k
文件大小:6k
源码类别:

浏览器

开发平台:

Visual C++

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the demonstration applications of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef COOKIEJAR_H
  38. #define COOKIEJAR_H
  39. #include <QtNetwork/QNetworkCookieJar>
  40. #include <QtCore/QAbstractItemModel>
  41. #include <QtCore/QStringList>
  42. #include <QtGui/QDialog>
  43. #include <QtGui/QTableView>
  44. QT_BEGIN_NAMESPACE
  45. class QSortFilterProxyModel;
  46. class QKeyEvent;
  47. QT_END_NAMESPACE
  48. class AutoSaver;
  49. class CookieJar : public QNetworkCookieJar
  50. {
  51.     friend class CookieModel;
  52.     Q_OBJECT
  53.     Q_PROPERTY(AcceptPolicy acceptPolicy READ acceptPolicy WRITE setAcceptPolicy)
  54.     Q_PROPERTY(KeepPolicy keepPolicy READ keepPolicy WRITE setKeepPolicy)
  55.     Q_PROPERTY(QStringList blockedCookies READ blockedCookies WRITE setBlockedCookies)
  56.     Q_PROPERTY(QStringList allowedCookies READ allowedCookies WRITE setAllowedCookies)
  57.     Q_PROPERTY(QStringList allowForSessionCookies READ allowForSessionCookies WRITE setAllowForSessionCookies)
  58.     Q_ENUMS(KeepPolicy)
  59.     Q_ENUMS(AcceptPolicy)
  60. signals:
  61.     void cookiesChanged();
  62. public:
  63.     enum AcceptPolicy {
  64.         AcceptAlways,
  65.         AcceptNever,
  66.         AcceptOnlyFromSitesNavigatedTo
  67.     };
  68.     enum KeepPolicy {
  69.         KeepUntilExpire,
  70.         KeepUntilExit,
  71.         KeepUntilTimeLimit
  72.     };
  73.     CookieJar(QObject *parent = 0);
  74.     ~CookieJar();
  75.     QList<QNetworkCookie> cookiesForUrl(const QUrl &url) const;
  76.     bool setCookiesFromUrl(const QList<QNetworkCookie> &cookieList, const QUrl &url);
  77.     AcceptPolicy acceptPolicy() const;
  78.     void setAcceptPolicy(AcceptPolicy policy);
  79.     KeepPolicy keepPolicy() const;
  80.     void setKeepPolicy(KeepPolicy policy);
  81.     QStringList blockedCookies() const;
  82.     QStringList allowedCookies() const;
  83.     QStringList allowForSessionCookies() const;
  84.     void setBlockedCookies(const QStringList &list);
  85.     void setAllowedCookies(const QStringList &list);
  86.     void setAllowForSessionCookies(const QStringList &list);
  87. public slots:
  88.     void clear();
  89.     void loadSettings();
  90. private slots:
  91.     void save();
  92. private:
  93.     void purgeOldCookies();
  94.     void load();
  95.     bool m_loaded;
  96.     AutoSaver *m_saveTimer;
  97.     AcceptPolicy m_acceptCookies;
  98.     KeepPolicy m_keepCookies;
  99.     QStringList m_exceptions_block;
  100.     QStringList m_exceptions_allow;
  101.     QStringList m_exceptions_allowForSession;
  102. };
  103. class CookieModel : public QAbstractTableModel
  104. {
  105.     Q_OBJECT
  106. public:
  107.     CookieModel(CookieJar *jar, QObject *parent = 0);
  108.     QVariant headerData(int section, Qt::Orientation orientation, int role) const;
  109.     QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
  110.     int columnCount(const QModelIndex &parent = QModelIndex()) const;
  111.     int rowCount(const QModelIndex &parent = QModelIndex()) const;
  112.     bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
  113. private slots:
  114.     void cookiesChanged();
  115. private:
  116.     CookieJar *m_cookieJar;
  117. };
  118. #include "ui_cookies.h"
  119. #include "ui_cookiesexceptions.h"
  120. class CookiesDialog : public QDialog, public Ui_CookiesDialog
  121. {
  122.     Q_OBJECT
  123. public:
  124.     CookiesDialog(CookieJar *cookieJar, QWidget *parent = 0);
  125. private:
  126.     QSortFilterProxyModel *m_proxyModel;
  127. };
  128. class CookieExceptionsModel : public QAbstractTableModel
  129. {
  130.     Q_OBJECT
  131.     friend class CookiesExceptionsDialog;
  132. public:
  133.     CookieExceptionsModel(CookieJar *cookieJar, QObject *parent = 0);
  134.     QVariant headerData(int section, Qt::Orientation orientation, int role) const;
  135.     QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
  136.     int columnCount(const QModelIndex &parent = QModelIndex()) const;
  137.     int rowCount(const QModelIndex &parent = QModelIndex()) const;
  138.     bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
  139. private:
  140.     CookieJar *m_cookieJar;
  141.     // Domains we allow, Domains we block, Domains we allow for this session
  142.     QStringList m_allowedCookies;
  143.     QStringList m_blockedCookies;
  144.     QStringList m_sessionCookies;
  145. };
  146. class CookiesExceptionsDialog : public QDialog, public Ui_CookiesExceptionsDialog
  147. {
  148.     Q_OBJECT
  149. public:
  150.     CookiesExceptionsDialog(CookieJar *cookieJar, QWidget *parent = 0);
  151. private slots:
  152.     void block();
  153.     void allow();
  154.     void allowForSession();
  155.     void textChanged(const QString &text);
  156. private:
  157.     CookieExceptionsModel *m_exceptionsModel;
  158.     QSortFilterProxyModel *m_proxyModel;
  159.     CookieJar *m_cookieJar;
  160. };
  161. #endif // COOKIEJAR_H