blob: a3b5b12bcffa6ad8ed42b011c76c995d72e0529b (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
* This file is part of smolbote. It's copyrighted by the contributors recorded
* in the version control history of the file, available from its original
* location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
*
* SPDX-License-Identifier: GPL-3.0
*/
#ifndef SMOLBOTE_WEBENGINEPROFILE_H
#define SMOLBOTE_WEBENGINEPROFILE_H
#include <QHash>
#include <QUrl>
#include <QString>
#include <QWebEngineProfile>
#include <QVector>
#include <QNetworkCookie>
#include <QMap>
#include <QWebEngineSettings>
#include <profileinterface.h>
class WebProfile : public Profile
{
Q_OBJECT
public:
// off-the-record constructor
explicit WebProfile(const QString &name, QObject *parent = nullptr);
// default constructor
explicit WebProfile(const QString &storageName, const QString &name, QObject *parent = nullptr);
~WebProfile() = default;
static void setDefaultProfile(WebProfile *profile)
{
Q_CHECK_PTR(profile);
WebProfile::profile = profile;
}
static WebProfile *defaultProfile()
{
Q_CHECK_PTR(WebProfile::profile);
return WebProfile::profile;
}
const QString name() const;
void setName(const QString &name);
const QVector<QNetworkCookie> cookies() const
{
return qAsConst(m_cookies);
}
const QMap<QByteArray, QByteArray> headers() const
{
return qAsConst(m_headers);
}
// search url
QString search() const;
void setSearch(const QString &url);
// homepage url
QUrl homepage() const;
void setHomepage(const QUrl &url);
// new tab url
QUrl newtab() const;
void setNewtab(const QUrl &url);
void setCachePath(const QString &path);
void setPersistentStoragePath(const QString &path);
void setPersistentCookiesPolicy(int policy);
void setHttpAcceptLanguage(const QString &httpAcceptLanguage);
void setHttpCacheMaximumSize(int maxSize);
void setHttpCacheType(int type);
void setHttpUserAgent(const QString &userAgent);
void setHttpHeader(const QString &name, const QString &value);
void removeHttpHeader(const QString &name);
void setSpellCheckEnabled(bool enable);
private:
static WebProfile *profile;
QString m_name;
QString m_search = QString("about:blank");
QUrl m_homepage = QUrl("about:blank");
QUrl m_newtab = QUrl("about:blank");
QVector<QNetworkCookie> m_cookies;
QMap<QByteArray, QByteArray> m_headers;
};
#endif // SMOLBOTE_WEBENGINEPROFILE_H
|