1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/adblock/adblockdialog.h

75 lines
2.0 KiB
C
Raw Normal View History

2011-03-27 22:02:21 +02:00
/* ============================================================
* QupZilla - WebKit based browser
2013-07-11 16:21:57 +02:00
* Copyright (C) 2010-2013 David Rosca <nowrep@gmail.com>
2011-03-27 22:02:21 +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/>.
* ============================================================ */
2011-03-27 21:59:40 +02:00
#ifndef ADBLOCKDIALOG_H
#define ADBLOCKDIALOG_H
#include <QDialog>
#include "qz_namespace.h"
2011-03-27 21:59:40 +02:00
#include "ui_adblockdialog.h"
class AdBlockSubscription;
class AdBlockTreeWidget;
class AdBlockManager;
class AdBlockRule;
class QT_QUPZILLA_EXPORT AdBlockDialog : public QDialog, public Ui_AdBlockDialog
2011-03-27 21:59:40 +02:00
{
Q_OBJECT
public:
explicit AdBlockDialog(QWidget* parent = 0);
void showRule(const AdBlockRule* rule) const;
2011-03-27 21:59:40 +02:00
private slots:
void addRule();
void removeRule();
void addSubscription();
void removeSubscription();
2011-03-27 21:59:40 +02:00
void currentChanged(int index);
void filterString(const QString &string);
void enableAdBlock(bool state);
2011-03-27 21:59:40 +02:00
void aboutToShowMenu();
void learnAboutRules();
2012-07-11 18:30:00 +02:00
void loadSubscriptions();
void load();
2012-07-11 18:30:00 +02:00
private:
void closeEvent(QCloseEvent* ev);
AdBlockManager* m_manager;
AdBlockTreeWidget* m_currentTreeWidget;
AdBlockSubscription* m_currentSubscription;
2011-03-27 21:59:40 +02:00
QAction* m_actionAddRule;
QAction* m_actionRemoveRule;
QAction* m_actionAddSubscription;
QAction* m_actionRemoveSubscription;
bool m_loaded;
bool m_useLimitedEasyList;
2011-03-27 21:59:40 +02:00
};
#endif // ADBLOCKDIALOG_H