2011-03-29 20:30:05 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-29 20:30:05 +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 "adblockicon.h"
|
|
|
|
#include "adblockmanager.h"
|
|
|
|
#include "qupzilla.h"
|
|
|
|
#include "webpage.h"
|
|
|
|
|
2011-10-15 18:08:52 +02:00
|
|
|
AdBlockIcon::AdBlockIcon(QupZilla* mainClass, QWidget* parent)
|
2011-11-06 17:01:23 +01:00
|
|
|
: ClickableLabel(parent)
|
|
|
|
, p_QupZilla(mainClass)
|
2011-03-29 20:30:05 +02:00
|
|
|
{
|
|
|
|
setMaximumHeight(16);
|
|
|
|
setCursor(Qt::PointingHandCursor);
|
2012-01-07 20:56:58 +01:00
|
|
|
setToolTip(tr("AdBlock lets you block unwanted content on web pages"));
|
2011-03-29 20:30:05 +02:00
|
|
|
|
|
|
|
connect(this, SIGNAL(clicked(QPoint)), this, SLOT(showMenu(QPoint)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void AdBlockIcon::showMenu(const QPoint &pos)
|
|
|
|
{
|
|
|
|
AdBlockManager* manager = AdBlockManager::instance();
|
|
|
|
|
|
|
|
QMenu menu;
|
2011-04-09 00:22:50 +02:00
|
|
|
menu.addAction(tr("Show AdBlock &Settings"), manager, SLOT(showDialog()));
|
2011-03-29 20:30:05 +02:00
|
|
|
menu.addSeparator();
|
|
|
|
QList<WebPage::AdBlockedEntry> entries = p_QupZilla->weView()->webPage()->adBlockedEntries();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (entries.isEmpty()) {
|
2011-03-29 20:30:05 +02:00
|
|
|
menu.addAction(tr("No content blocked"))->setEnabled(false);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-29 20:30:05 +02:00
|
|
|
else {
|
|
|
|
menu.addAction(tr("Blocked URL (AdBlock Rule) - click to edit rule"))->setEnabled(false);
|
2011-11-06 17:01:23 +01:00
|
|
|
foreach(WebPage::AdBlockedEntry entry, entries) {
|
2011-03-29 20:30:05 +02:00
|
|
|
QString address = entry.url.toString().right(55);
|
|
|
|
menu.addAction(tr("%1 with (%2)").arg(address, entry.rule), manager, SLOT(showRule()))->setData(entry.rule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
menu.addSeparator();
|
2011-04-09 00:22:50 +02:00
|
|
|
menu.addAction(tr("Learn About Writing &Rules"), this, SLOT(learnAboutRules()));
|
2011-03-29 20:30:05 +02:00
|
|
|
|
|
|
|
menu.exec(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AdBlockIcon::learnAboutRules()
|
|
|
|
{
|
2012-01-18 16:52:30 +01:00
|
|
|
p_QupZilla->tabWidget()->addView(QUrl("http://adblockplus.org/en/filters"), TabWidget::NewSelectedTab);
|
2011-03-29 20:30:05 +02:00
|
|
|
}
|
|
|
|
|
2011-10-15 16:37:32 +02:00
|
|
|
void AdBlockIcon::setEnabled(bool enabled)
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (enabled) {
|
2011-10-15 16:37:32 +02:00
|
|
|
setPixmap(QPixmap(":icons/other/adblock.png"));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-10-15 16:37:32 +02:00
|
|
|
setPixmap(QPixmap(":icons/other/adblock-disabled.png"));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-15 16:37:32 +02:00
|
|
|
}
|
|
|
|
|
2011-03-29 20:30:05 +02:00
|
|
|
AdBlockIcon::~AdBlockIcon()
|
|
|
|
{
|
|
|
|
}
|