summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebengineprofile_p.h
blob: 0ccc27037563ca51783ef137f70d78bcc06f5fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QWEBENGINEPROFILE_P_H
#define QWEBENGINEPROFILE_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include "profile_adapter_client.h"

#include <QMap>
#include <QPointer>
#include <QScopedPointer>
#include <QSharedPointer>

#include <functional>

namespace QtWebEngineCore {
class ProfileAdapter;
class WebEngineSettings;
}

QT_BEGIN_NAMESPACE

class QWebEngineClientHints;
class QWebEngineNotification;
class QWebEngineProfile;
class QWebEngineScriptCollection;
class QWebEngineSettings;

class Q_WEBENGINECORE_EXPORT QWebEngineProfilePrivate : public QtWebEngineCore::ProfileAdapterClient {
public:
    Q_DECLARE_PUBLIC(QWebEngineProfile)
    QWebEngineProfilePrivate(QtWebEngineCore::ProfileAdapter *profileAdapter);
    ~QWebEngineProfilePrivate();

    QtWebEngineCore::ProfileAdapter *profileAdapter() const;
    QWebEngineSettings *settings() const { return m_settings; }
    QtWebEngineCore::WebEngineSettings *coreSettings() const override;

    void downloadDestroyed(quint32 downloadId);

    void cleanDownloads();

    void downloadRequested(DownloadItemInfo &info) override;
    void downloadUpdated(const DownloadItemInfo &info) override;

    void showNotification(QSharedPointer<QtWebEngineCore::UserNotificationController> &) override;
    void clearHttpCacheCompleted() override;

    void addWebContentsAdapterClient(QtWebEngineCore::WebContentsAdapterClient *adapter) override;
    void removeWebContentsAdapterClient(QtWebEngineCore::WebContentsAdapterClient *adapter) override;

private:
    QWebEngineProfile *q_ptr;
    QWebEngineSettings *m_settings;
    QPointer<QtWebEngineCore::ProfileAdapter> m_profileAdapter;
    QScopedPointer<QWebEngineScriptCollection> m_scriptCollection;
    QScopedPointer<QWebEngineClientHints> m_clientHints;
    QMap<quint32, QPointer<QWebEngineDownloadRequest>> m_ongoingDownloads;
    std::function<void(std::unique_ptr<QWebEngineNotification>)> m_notificationPresenter;
};

QT_END_NAMESPACE

#endif // QWEBENGINEPROFILE_P_H