aboutsummaryrefslogtreecommitdiff
path: root/src/forms/blockerdialog.h
blob: 0c8e8ba800050c965d625b4db7bed644ed748f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef URLINTERCEPTORDIALOG_H
#define URLINTERCEPTORDIALOG_H

#include <QDialog>
#include "webengine/blockersubscription.h"

namespace Ui {
class UrlInterceptorDialog;
}

class BlockerDialog : public QDialog
{
    Q_OBJECT

public:
    explicit BlockerDialog(QWidget *parent = 0);
    ~BlockerDialog();

private:
    Ui::UrlInterceptorDialog *ui;
    BlockerSubscription *subscription;
};

#endif // URLINTERCEPTORDIALOG_H