2011-03-29 20:30:05 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2013-02-26 12:56:11 +01:00
|
|
|
* Copyright (C) 2010-2013 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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#ifndef ADBLOCKICON_H
|
|
|
|
#define ADBLOCKICON_H
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include "qz_namespace.h"
|
2011-03-29 20:30:05 +02:00
|
|
|
#include "clickablelabel.h"
|
2012-07-01 18:13:49 +02:00
|
|
|
#include "adblockrule.h"
|
2011-03-29 20:30:05 +02:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QMenu;
|
|
|
|
class QUrl;
|
|
|
|
|
2011-03-29 20:30:05 +02:00
|
|
|
class QupZilla;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT AdBlockIcon : public ClickableLabel
|
2011-03-29 20:30:05 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit AdBlockIcon(QupZilla* mainClass, QWidget* parent = 0);
|
|
|
|
~AdBlockIcon();
|
|
|
|
|
2012-07-01 18:13:49 +02:00
|
|
|
void popupBlocked(const QString &ruleString, const QUrl &url);
|
2012-02-04 18:45:59 +01:00
|
|
|
QAction* menuAction();
|
|
|
|
|
2011-03-29 20:30:05 +02:00
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
2011-10-15 16:37:32 +02:00
|
|
|
void setEnabled(bool enabled);
|
2012-02-04 18:45:59 +01:00
|
|
|
void createMenu(QMenu* menu = 0);
|
2011-03-29 20:30:05 +02:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void showMenu(const QPoint &pos);
|
2012-08-09 19:02:25 +02:00
|
|
|
void toggleCustomFilter();
|
2011-03-29 20:30:05 +02:00
|
|
|
|
2012-02-04 18:45:59 +01:00
|
|
|
void animateIcon();
|
|
|
|
void stopAnimation();
|
|
|
|
|
2011-03-29 20:30:05 +02:00
|
|
|
private:
|
|
|
|
QupZilla* p_QupZilla;
|
2012-02-04 18:45:59 +01:00
|
|
|
QAction* m_menuAction;
|
2011-03-29 20:30:05 +02:00
|
|
|
|
2013-02-26 12:56:11 +01:00
|
|
|
QVector<QPair<AdBlockRule, QUrl> > m_blockedPopups;
|
2012-02-04 18:45:59 +01:00
|
|
|
QTimer* m_flashTimer;
|
2012-07-01 18:13:49 +02:00
|
|
|
|
2012-02-04 18:45:59 +01:00
|
|
|
int m_timerTicks;
|
|
|
|
bool m_enabled;
|
2011-03-29 20:30:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ADBLOCKICON_H
|