/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2012 David Rosca * * 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 . * ============================================================ */ #ifndef ADBLOCKDIALOG_H #define ADBLOCKDIALOG_H #include #include "qz_namespace.h" #include "ui_adblockdialog.h" class AdBlockSubscription; class AdBlockTreeWidget; class AdBlockManager; class AdBlockRule; class QT_QUPZILLA_EXPORT AdBlockDialog : public QDialog, public Ui_AdBlockDialog { Q_OBJECT public: explicit AdBlockDialog(QWidget* parent = 0); void showRule(const AdBlockRule* rule) const; private slots: void addRule(); void removeRule(); void addSubscription(); void removeSubscription(); void currentChanged(int index); void filterString(const QString &string); void enableAdBlock(bool state); void aboutToShowMenu(); void learnAboutRules(); private: void load(); AdBlockManager* m_manager; AdBlockTreeWidget* m_currentTreeWidget; AdBlockSubscription* m_currentSubscription; QAction* m_actionAddRule; QAction* m_actionRemoveRule; QAction* m_actionAddSubscription; QAction* m_actionRemoveSubscription; bool m_loaded; }; #endif // ADBLOCKDIALOG_H