aboutsummaryrefslogtreecommitdiff
path: root/src/forms/profiledialog.cpp
blob: 286d85c578de2ae61392bff310ce08818f98efe6 (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
#include "profiledialog.h"
#include "ui_profiledialog.h"

#include <QLineEdit>
#include <QPlainTextEdit>
#include <QComboBox>
#include <QPushButton>

ProfileDialog::ProfileDialog(QWebEngineProfile *profile, QWidget *parent) :
    QDialog(parent),
    ui(new Ui::ProfileDialog)
{
    _profile = profile;

    ui->setupUi(this);

    // http
    ui->userAgent->setPlainText(_profile->httpUserAgent());
    ui->acceptLanguage->setPlainText(_profile->httpAcceptLanguage());
    ui->cacheType->setCurrentIndex(_profile->httpCacheType());
    ui->cacheSize->setText(QString::number(_profile->httpCacheMaximumSize()));

    // path
    ui->storagePath_lineEdit->setText(_profile->persistentStoragePath());
    ui->cachePath_lineEdit->setText(_profile->cachePath());

    // policy
    ui->cookiePolicy->setCurrentIndex(_profile->persistentCookiesPolicy());

    // actions
    connect(ui->clearCache_pushButton, &QPushButton::clicked, [this]() {
        this->_profile->clearHttpCache();
    });
    connect(ui->clearHistory_pushButton, &QPushButton::clicked, [this]() {
        this->_profile->clearAllVisitedLinks();
    });

    connect(this, SIGNAL(accepted()), this, SLOT(updateProfile()));
}

ProfileDialog::~ProfileDialog()
{
    delete ui;
}

void ProfileDialog::updateProfile()
{
    qDebug("Updating profile...");

    // http
    _profile->setHttpUserAgent(ui->userAgent->toPlainText());
    _profile->setHttpAcceptLanguage(ui->acceptLanguage->toPlainText());
    switch (ui->cacheType->currentIndex()) {
    case 0:
        _profile->setHttpCacheType(QWebEngineProfile::MemoryHttpCache);
        break;
    case 1:
        _profile->setHttpCacheType(QWebEngineProfile::DiskHttpCache);
        break;
    case 2:
        _profile->setHttpCacheType(QWebEngineProfile::NoCache);
        break;
    default:
        break;
    }
    _profile->setHttpCacheMaximumSize(ui->cacheSize->text().toInt());

    // policy
    switch (ui->cookiePolicy->currentIndex()) {
    case 0:
        _profile->setPersistentCookiesPolicy(QWebEngineProfile::NoPersistentCookies);
        break;
    case 1:
        _profile->setPersistentCookiesPolicy(QWebEngineProfile::AllowPersistentCookies);
        break;
    case 2:
        _profile->setPersistentCookiesPolicy(QWebEngineProfile::ForcePersistentCookies);
        break;
    default:
        break;
    }
}