You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
4.3 KiB
87 lines
4.3 KiB
/* ============================================================ |
|
* QupZilla - WebKit based browser |
|
* Copyright (C) 2010-2013 David Rosca <nowrep@gmail.com> |
|
* |
|
* 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 "adblockaddsubscriptiondialog.h" |
|
#include "ui_adblockaddsubscriptiondialog.h" |
|
|
|
AdBlockAddSubscriptionDialog::AdBlockAddSubscriptionDialog(QWidget* parent) |
|
: QDialog(parent) |
|
, ui(new Ui::AdBlockAddSubscriptionDialog) |
|
{ |
|
ui->setupUi(this); |
|
|
|
m_knownSubscriptions << Subscription("EasyList (English)", "https://easylist-downloads.adblockplus.org/easylist.txt") |
|
<< Subscription("Fanboy's List (English)", "http://www.fanboy.co.nz/adblock/fanboy-adblock.txt") |
|
<< Subscription("Adversity (English)", "http://adversity.googlecode.com/hg/Adversity.txt") |
|
<< Subscription("BSI Lista Polska (Polish)", "http://www.bsi.info.pl/filtrABP.txt") |
|
<< Subscription("Czech List (Czech)", "http://adblock.dajbych.net/adblock.txt") |
|
<< Subscription("dutchblock (Dutch)", "http://groenewoudt.net/dutchblock/list.txt") |
|
<< Subscription("Filtros Nauscopicos (Spanish)", "http://abp.mozilla-hispano.org/nauscopio/filtros.txt") |
|
<< Subscription("hufilter (Hungarian)", "http://www.hufilter.hu/hufilter.txt") |
|
<< Subscription("IsraelList (Hebrew)", "http://secure.fanboy.co.nz/israelilist/IsraelList.txt") |
|
<< Subscription("Lista Basa (Polish)", "http://plok.studentlive.pl/abp.txt") |
|
<< Subscription("NLBlock (Dutch)", "http://www.verzijlbergh.com/adblock/nlblock.txt") |
|
<< Subscription("Peter Lowe's list (English)", "http://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&mimetype=plaintext") |
|
<< Subscription("PLgeneral (Polish)", "http://www.niecko.pl/adblock/adblock.txt") |
|
<< Subscription("Schacks Adblock Plus liste (Danish)", "http://adblock.schack.dk/block.txt") |
|
<< Subscription("Xfiles (Italian)", "http://mozilla.gfsolone.com/filtri.txt") |
|
<< Subscription("EasyPrivacy (English)", "http://easylist-downloads.adblockplus.org/easyprivacy.txt") |
|
<< Subscription("Antisocial (English)", "http://adversity.googlecode.com/hg/Antisocial.txt") |
|
<< Subscription("RU Adlist (Russian)", "https://ruadlist.googlecode.com/hg/advblock.txt") |
|
<< Subscription("ABPindo (Indonesian)", "https://indonesianadblockrules.googlecode.com/hg/subscriptions/abpindo.txt") |
|
<< Subscription("ChinaList (Chinese)", "http://adblock-chinalist.googlecode.com/svn/trunk/adblock.txt"); |
|
|
|
foreach (const Subscription &subscription, m_knownSubscriptions) { |
|
ui->comboBox->addItem(subscription.title); |
|
} |
|
|
|
connect(ui->comboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(indexChanged(int))); |
|
indexChanged(0); |
|
} |
|
|
|
QString AdBlockAddSubscriptionDialog::title() const |
|
{ |
|
return ui->title->text(); |
|
} |
|
|
|
QString AdBlockAddSubscriptionDialog::url() const |
|
{ |
|
return ui->url->text(); |
|
} |
|
|
|
void AdBlockAddSubscriptionDialog::indexChanged(int index) |
|
{ |
|
const Subscription subscription = m_knownSubscriptions.at(index); |
|
|
|
int pos = subscription.title.indexOf(QLatin1Char('(')); |
|
QString title = subscription.title; |
|
|
|
if (pos > 0) { |
|
title = title.left(pos).trimmed(); |
|
} |
|
|
|
ui->title->setText(title); |
|
ui->title->setCursorPosition(0); |
|
|
|
ui->url->setText(subscription.url); |
|
ui->url->setCursorPosition(0); |
|
} |
|
|
|
AdBlockAddSubscriptionDialog::~AdBlockAddSubscriptionDialog() |
|
{ |
|
delete ui; |
|
}
|
|
|