qquickwebengineprofile.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtWebEngine module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QQUICKWEBENGINEPROFILE_H
  40. #define QQUICKWEBENGINEPROFILE_H
  41. #include <QtWebEngine/qtwebengineglobal.h>
  42. #include <QtCore/QObject>
  43. #include <QtCore/QScopedPointer>
  44. #include <QtCore/QString>
  45. namespace QtWebEngineCore {
  46. class BrowserContextAdapter;
  47. }
  48. QT_BEGIN_NAMESPACE
  49. class QQuickWebEngineDownloadItem;
  50. class QQuickWebEngineProfilePrivate;
  51. class QQuickWebEngineSettings;
  52. class QWebEngineCookieStore;
  53. class QWebEngineUrlRequestInterceptor;
  54. class QWebEngineUrlSchemeHandler;
  55. class Q_WEBENGINE_EXPORT QQuickWebEngineProfile : public QObject {
  56. Q_OBJECT
  57. Q_PROPERTY(QString storageName READ storageName WRITE setStorageName NOTIFY storageNameChanged FINAL)
  58. Q_PROPERTY(bool offTheRecord READ isOffTheRecord WRITE setOffTheRecord NOTIFY offTheRecordChanged FINAL)
  59. Q_PROPERTY(QString persistentStoragePath READ persistentStoragePath WRITE setPersistentStoragePath NOTIFY persistentStoragePathChanged FINAL)
  60. Q_PROPERTY(QString cachePath READ cachePath WRITE setCachePath NOTIFY cachePathChanged FINAL)
  61. Q_PROPERTY(QString httpUserAgent READ httpUserAgent WRITE setHttpUserAgent NOTIFY httpUserAgentChanged FINAL)
  62. Q_PROPERTY(HttpCacheType httpCacheType READ httpCacheType WRITE setHttpCacheType NOTIFY httpCacheTypeChanged FINAL)
  63. Q_PROPERTY(QString httpAcceptLanguage READ httpAcceptLanguage WRITE setHttpAcceptLanguage NOTIFY httpAcceptLanguageChanged FINAL REVISION 1)
  64. Q_PROPERTY(PersistentCookiesPolicy persistentCookiesPolicy READ persistentCookiesPolicy WRITE setPersistentCookiesPolicy NOTIFY persistentCookiesPolicyChanged FINAL)
  65. Q_PROPERTY(int httpCacheMaximumSize READ httpCacheMaximumSize WRITE setHttpCacheMaximumSize NOTIFY httpCacheMaximumSizeChanged FINAL)
  66. public:
  67. QQuickWebEngineProfile(QObject *parent = Q_NULLPTR);
  68. ~QQuickWebEngineProfile();
  69. enum HttpCacheType {
  70. MemoryHttpCache,
  71. DiskHttpCache,
  72. NoCache
  73. };
  74. Q_ENUM(HttpCacheType)
  75. enum PersistentCookiesPolicy {
  76. NoPersistentCookies,
  77. AllowPersistentCookies,
  78. ForcePersistentCookies
  79. };
  80. Q_ENUM(PersistentCookiesPolicy)
  81. QString storageName() const;
  82. void setStorageName(const QString &name);
  83. bool isOffTheRecord() const;
  84. void setOffTheRecord(bool offTheRecord);
  85. QString persistentStoragePath() const;
  86. void setPersistentStoragePath(const QString &path);
  87. QString cachePath() const;
  88. void setCachePath(const QString &path);
  89. QString httpUserAgent() const;
  90. void setHttpUserAgent(const QString &userAgent);
  91. HttpCacheType httpCacheType() const;
  92. void setHttpCacheType(QQuickWebEngineProfile::HttpCacheType);
  93. PersistentCookiesPolicy persistentCookiesPolicy() const;
  94. void setPersistentCookiesPolicy(QQuickWebEngineProfile::PersistentCookiesPolicy);
  95. int httpCacheMaximumSize() const;
  96. void setHttpCacheMaximumSize(int maxSize);
  97. QString httpAcceptLanguage() const;
  98. void setHttpAcceptLanguage(const QString &httpAcceptLanguage);
  99. QWebEngineCookieStore *cookieStore() const;
  100. void setRequestInterceptor(QWebEngineUrlRequestInterceptor *interceptor);
  101. const QWebEngineUrlSchemeHandler *urlSchemeHandler(const QByteArray &) const;
  102. void installUrlSchemeHandler(const QByteArray &scheme, QWebEngineUrlSchemeHandler *);
  103. void removeUrlScheme(const QByteArray &scheme);
  104. void removeUrlSchemeHandler(QWebEngineUrlSchemeHandler *);
  105. void removeAllUrlSchemeHandlers();
  106. Q_REVISION(2) Q_INVOKABLE void clearHttpCache();
  107. static QQuickWebEngineProfile *defaultProfile();
  108. Q_SIGNALS:
  109. void storageNameChanged();
  110. void offTheRecordChanged();
  111. void persistentStoragePathChanged();
  112. void cachePathChanged();
  113. void httpUserAgentChanged();
  114. void httpCacheTypeChanged();
  115. void persistentCookiesPolicyChanged();
  116. void httpCacheMaximumSizeChanged();
  117. Q_REVISION(1) void httpAcceptLanguageChanged();
  118. void downloadRequested(QQuickWebEngineDownloadItem *download);
  119. void downloadFinished(QQuickWebEngineDownloadItem *download);
  120. private Q_SLOTS:
  121. void destroyedUrlSchemeHandler(QWebEngineUrlSchemeHandler *obj);
  122. private:
  123. Q_DECLARE_PRIVATE(QQuickWebEngineProfile)
  124. QQuickWebEngineProfile(QQuickWebEngineProfilePrivate *, QObject *parent = Q_NULLPTR);
  125. QQuickWebEngineSettings *settings() const;
  126. friend class QQuickWebEngineSettings;
  127. friend class QQuickWebEngineSingleton;
  128. friend class QQuickWebEngineViewPrivate;
  129. friend class QQuickWebEngineDownloadItem;
  130. friend class QQuickWebEngineDownloadItemPrivate;
  131. QScopedPointer<QQuickWebEngineProfilePrivate> d_ptr;
  132. };
  133. QT_END_NAMESPACE
  134. #endif // QQUICKWEBENGINEPROFILE_H