Falkon Develop
Cross-platform Qt-based web browser
html5permissionsnotification.h
Go to the documentation of this file.
1/* ============================================================
2* Falkon - Qt web browser
3* Copyright (C) 2013-2015 David Rosca <nowrep@gmail.com>
4* Copyright (C) 2013-2018 David Rosca <nowrep@gmail.com>
5*
6* This program is free software: you can redistribute it and/or modify
7* it under the terms of the GNU General Public License as published by
8* the Free Software Foundation, either version 3 of the License, or
9* (at your option) any later version.
10*
11* This program is distributed in the hope that it will be useful,
12* but WITHOUT ANY WARRANTY; without even the implied warranty of
13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14* GNU General Public License for more details.
15*
16* You should have received a copy of the GNU General Public License
17* along with this program. If not, see <http://www.gnu.org/licenses/>.
18* ============================================================ */
19#ifndef HTML5PERMISSIONSNOTIFICATION_H
20#define HTML5PERMISSIONSNOTIFICATION_H
21
22#include <QString>
23#include <QPointer>
24
25#include "animatedwidget.h"
26#include "webpage.h"
27
28namespace Ui
29{
31}
32
34{
35 Q_OBJECT
36
37public:
38 explicit HTML5PermissionsNotification(const QUrl &origin, QWebEnginePage* page, const QWebEnginePage::Feature &feature);
40
41private Q_SLOTS:
42 void grantPermissions();
43 void denyPermissions();
44
45private:
46 Ui::HTML5PermissionsNotification* ui;
47
48 QUrl m_origin;
49 QPointer<QWebEnginePage> m_page;
50 QWebEnginePage::Feature m_feature;
51};
52
53#endif // HTML5PERMISSIONSNOTIFICATION_H
HTML5PermissionsNotification(const QUrl &origin, QWebEnginePage *page, const QWebEnginePage::Feature &feature)