1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 18:52:11 +02:00
falkonOfficial/src/lib/adblock/adblockdialog.cpp

145 lines
4.7 KiB
C++
Raw Normal View History

2011-03-27 21:59:40 +02:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
2011-03-27 21:59:40 +02:00
*
* 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/>.
* ============================================================ */
#include "adblockdialog.h"
#include "adblockmanager.h"
#include "adblocksubscription.h"
#include "adblocktreewidget.h"
#include "adblockaddsubscriptiondialog.h"
#include "mainapplication.h"
2011-03-27 21:59:40 +02:00
#include <QMenu>
#include <QMessageBox>
#include <QInputDialog>
AdBlockDialog::AdBlockDialog(QWidget* parent)
2011-03-27 21:59:40 +02:00
: QDialog(parent)
, m_manager(AdBlockManager::instance())
, m_currentTreeWidget(0)
, m_currentSubscription(0)
2011-03-27 21:59:40 +02:00
{
setAttribute(Qt::WA_DeleteOnClose);
2011-03-27 21:59:40 +02:00
setupUi(this);
adblockCheckBox->setChecked(m_manager->isEnabled());
QMenu* menu = new QMenu(buttonMenu);
m_actionAddRule = menu->addAction(tr("Add Rule"), this, SLOT(addRule()));
m_actionRemoveRule = menu->addAction(tr("Remove Rule"), this, SLOT(removeRule()));
menu->addSeparator();
m_actionAddSubscription = menu->addAction(tr("Add Subscription"), this, SLOT(addSubscription()));
m_actionRemoveSubscription = menu->addAction(tr("Remove Subscription"), this, SLOT(removeSubscription()));
menu->addAction(tr("Update Subscriptions"), m_manager, SLOT(updateAllSubscriptions()));
menu->addSeparator();
menu->addAction(tr("Learn about writing rules..."), this, SLOT(learnAboutRules()));
2011-03-27 21:59:40 +02:00
buttonMenu->setMenu(menu);
connect(menu, SIGNAL(aboutToShow()), this, SLOT(aboutToShowMenu()));
connect(adblockCheckBox, SIGNAL(toggled(bool)), m_manager, SLOT(setEnabled(bool)));
connect(search, SIGNAL(textChanged(QString)), this, SLOT(filterString(QString)));
connect(tabWidget, SIGNAL(currentChanged(int)), this, SLOT(currentChanged(int)));
foreach(AdBlockSubscription * subscription, m_manager->subscriptions()) {
AdBlockTreeWidget* tree = new AdBlockTreeWidget(subscription, tabWidget);
tabWidget->addTab(tree, subscription->title());
}
buttonBox->setFocus();
2011-03-27 21:59:40 +02:00
}
void AdBlockDialog::showRule(const AdBlockRule* rule) const
{
AdBlockSubscription* subscription = rule->subscription();
if (!subscription) {
return;
}
for (int i = 0; i < tabWidget->count(); ++i) {
AdBlockTreeWidget* treeWidget = qobject_cast<AdBlockTreeWidget*>(tabWidget->widget(i));
if (subscription == treeWidget->subscription()) {
treeWidget->showRule(rule);
tabWidget->setCurrentIndex(i);
break;
}
}
}
void AdBlockDialog::addRule()
2011-03-27 21:59:40 +02:00
{
m_currentTreeWidget->addRule();
2011-03-27 21:59:40 +02:00
}
void AdBlockDialog::removeRule()
2011-03-27 21:59:40 +02:00
{
m_currentTreeWidget->removeRule();
2011-03-27 21:59:40 +02:00
}
void AdBlockDialog::addSubscription()
2011-03-27 21:59:40 +02:00
{
AdBlockAddSubscriptionDialog dialog(this);
if (dialog.exec() != QDialog::Accepted) {
2011-03-27 21:59:40 +02:00
return;
}
2011-03-27 21:59:40 +02:00
QString title = dialog.title();
QString url = dialog.url();
2011-03-27 21:59:40 +02:00
if (AdBlockSubscription* subscription = m_manager->addSubscription(title, url)) {
AdBlockTreeWidget* tree = new AdBlockTreeWidget(subscription, tabWidget);
int index = tabWidget->insertTab(tabWidget->count() - 1, tree, subscription->title());
2011-03-27 21:59:40 +02:00
tabWidget->setCurrentIndex(index);
}
}
2011-03-27 21:59:40 +02:00
void AdBlockDialog::removeSubscription()
{
if (m_manager->removeSubscription(m_currentSubscription)) {
delete m_currentTreeWidget;
}
}
2011-03-27 21:59:40 +02:00
void AdBlockDialog::currentChanged(int index)
{
if (index != -1) {
m_currentTreeWidget = qobject_cast<AdBlockTreeWidget*>(tabWidget->widget(index));
m_currentSubscription = m_currentTreeWidget->subscription();
2011-03-27 21:59:40 +02:00
}
}
2011-03-27 21:59:40 +02:00
void AdBlockDialog::filterString(const QString &string)
{
m_currentTreeWidget->filterString(string);
2011-03-27 21:59:40 +02:00
}
void AdBlockDialog::aboutToShowMenu()
2011-03-27 21:59:40 +02:00
{
bool subscriptionEditable = m_currentSubscription->canEditRules();
bool subscriptionRemovable = m_currentSubscription->canBeRemoved();
2011-03-27 21:59:40 +02:00
m_actionAddRule->setEnabled(subscriptionEditable);
m_actionRemoveRule->setEnabled(subscriptionEditable);
m_actionRemoveSubscription->setEnabled(subscriptionRemovable);
2011-03-27 21:59:40 +02:00
}
void AdBlockDialog::learnAboutRules()
2011-03-27 21:59:40 +02:00
{
mApp->addNewTab(QUrl("http://adblockplus.org/en/filters"));
2011-03-27 21:59:40 +02:00
}