1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 10:12:10 +02:00
falkonOfficial/src/other/clearprivatedata.cpp

88 lines
2.9 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2011 nowrep
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#include "clearprivatedata.h"
#include "qupzilla.h"
#include "cookiejar.h"
#include "mainapplication.h"
#include "networkmanager.h"
#include "clickablelabel.h"
#include "ui_clearprivatedata.h"
2011-03-02 16:57:41 +01:00
2011-03-17 17:03:04 +01:00
ClearPrivateData::ClearPrivateData(QupZilla* mainClass, QWidget* parent) :
2011-03-02 16:57:41 +01:00
QDialog(parent)
,p_QupZilla(mainClass)
,ui(new Ui::ClearPrivateData)
2011-03-02 16:57:41 +01:00
{
ui->setupUi(this);
ui->buttonBox->setFocus();
connect(ui->clearAdobeCookies, SIGNAL(clicked(QPoint)), this, SLOT(clearFlash()));
connect(ui->history, SIGNAL(clicked(bool)), this, SLOT(historyClicked(bool)));
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(dialogAccepted()));
}
2011-03-02 16:57:41 +01:00
void ClearPrivateData::historyClicked(bool state)
{
ui->historyLength->setEnabled(state);
2011-03-02 16:57:41 +01:00
}
void ClearPrivateData::clearFlash()
{
p_QupZilla->tabWidget()->addView(QUrl("http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html"));
2011-03-02 16:57:41 +01:00
}
void ClearPrivateData::dialogAccepted()
{
if (ui->history->isChecked()) {
QDateTime dateTime = QDateTime::currentDateTime();
qint64 nowMS = QDateTime::currentMSecsSinceEpoch();
qint64 date = 0;
switch (ui->historyLength->currentIndex()) {
case 0: //Later Today
dateTime.setTime(QTime(0,0));
date = dateTime.toMSecsSinceEpoch();
break;
case 1: //Week
date = nowMS - 60u * 60u * 24u * 7u * 1000u;
break;
case 2: //Month
date = nowMS - 60u * 60u * 24u * 30u * 1000u;
break;
case 3: //All
date = 0;
break;
}
2011-03-02 16:57:41 +01:00
QSqlQuery query;
query.exec("DELETE FROM history WHERE date > "+QString::number(date));
2011-03-02 16:57:41 +01:00
query.exec("VACUUM");
}
if (ui->cookies->isChecked()) {
2011-03-02 16:57:41 +01:00
QList<QNetworkCookie> cookies;
2011-03-04 13:59:07 +01:00
mApp->cookieJar()->setAllCookies(cookies);
2011-03-02 16:57:41 +01:00
}
if (ui->cache->isChecked()) {
2011-03-04 13:59:07 +01:00
mApp->webSettings()->clearMemoryCaches();
mApp->networkManager()->cache()->clear();
2011-03-02 16:57:41 +01:00
}
if (ui->icons->isChecked()) {
2011-03-04 13:59:07 +01:00
mApp->webSettings()->clearIconDatabase();
2011-03-02 16:57:41 +01:00
}
close();
}