2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Falkon - Qt web browser
|
2018-02-06 15:48:30 +01:00
|
|
|
* Copyright (C) 2010-2018 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01: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-02 16:57:41 +01:00
|
|
|
#ifndef PLUGINPROXY_H
|
|
|
|
#define PLUGINPROXY_H
|
|
|
|
|
|
|
|
#include "plugins.h"
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2015-05-24 23:16:01 +02:00
|
|
|
#include <QWebEnginePage>
|
|
|
|
|
2012-04-01 10:48:50 +02:00
|
|
|
class WebPage;
|
2015-05-24 23:16:01 +02:00
|
|
|
class BrowserWindow;
|
2012-03-16 13:53:49 +01:00
|
|
|
|
2017-08-25 17:11:29 +02:00
|
|
|
class FALKON_EXPORT PluginProxy : public Plugins
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2012-03-05 13:16:34 +01:00
|
|
|
Q_OBJECT
|
2011-03-02 16:57:41 +01:00
|
|
|
public:
|
2012-03-07 12:19:08 +01:00
|
|
|
enum EventHandlerType { MouseDoubleClickHandler, MousePressHandler, MouseReleaseHandler,
|
|
|
|
MouseMoveHandler, KeyPressHandler, KeyReleaseHandler,
|
2012-03-07 20:01:57 +01:00
|
|
|
WheelEventHandler
|
|
|
|
};
|
2012-02-22 18:33:44 +01:00
|
|
|
|
2018-02-07 11:20:42 +01:00
|
|
|
explicit PluginProxy(QObject *parent = nullptr);
|
2012-02-19 17:50:02 +01:00
|
|
|
|
2018-02-25 21:54:25 +01:00
|
|
|
void registerAppEventHandler(EventHandlerType type, PluginInterface* obj);
|
2012-02-22 18:33:44 +01:00
|
|
|
|
2015-09-29 23:15:46 +02:00
|
|
|
void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r);
|
2015-10-13 02:34:47 +02:00
|
|
|
void populateExtensionsMenu(QMenu *menu);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2018-02-25 21:54:25 +01:00
|
|
|
bool processMouseDoubleClick(Qz::ObjectName type, QObject* obj, QMouseEvent* event);
|
|
|
|
bool processMousePress(Qz::ObjectName type, QObject* obj, QMouseEvent* event);
|
|
|
|
bool processMouseRelease(Qz::ObjectName type, QObject* obj, QMouseEvent* event);
|
|
|
|
bool processMouseMove(Qz::ObjectName type, QObject* obj, QMouseEvent* event);
|
2011-12-02 23:25:27 +01:00
|
|
|
|
2018-02-25 21:54:25 +01:00
|
|
|
bool processWheelEvent(Qz::ObjectName type, QObject* obj, QWheelEvent* event);
|
2012-03-07 12:19:08 +01:00
|
|
|
|
2018-02-25 21:54:25 +01:00
|
|
|
bool processKeyPress(Qz::ObjectName type, QObject* obj, QKeyEvent* event);
|
|
|
|
bool processKeyRelease(Qz::ObjectName type, QObject* obj, QKeyEvent* event);
|
2011-12-02 23:25:27 +01:00
|
|
|
|
2015-05-24 21:41:09 +02:00
|
|
|
bool acceptNavigationRequest(WebPage *page, const QUrl &url, QWebEnginePage::NavigationType type, bool isMainFrame);
|
2012-07-08 00:15:03 +02:00
|
|
|
|
2012-04-01 10:48:50 +02:00
|
|
|
void emitWebPageCreated(WebPage* page);
|
|
|
|
void emitWebPageDeleted(WebPage* page);
|
2012-03-05 13:16:34 +01:00
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
void emitMainWindowCreated(BrowserWindow* window);
|
|
|
|
void emitMainWindowDeleted(BrowserWindow* window);
|
2012-03-05 13:16:34 +01:00
|
|
|
|
2018-02-25 13:33:07 +01:00
|
|
|
Q_SIGNALS:
|
2012-04-01 10:48:50 +02:00
|
|
|
void webPageCreated(WebPage* page);
|
|
|
|
void webPageDeleted(WebPage* page);
|
2012-03-05 13:16:34 +01:00
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
void mainWindowCreated(BrowserWindow* window);
|
|
|
|
void mainWindowDeleted(BrowserWindow* window);
|
2012-03-05 13:16:34 +01:00
|
|
|
|
2018-02-25 13:33:07 +01:00
|
|
|
private Q_SLOTS:
|
2012-04-04 21:12:52 +02:00
|
|
|
void pluginUnloaded(PluginInterface* plugin);
|
|
|
|
|
2011-12-02 23:25:27 +01:00
|
|
|
private:
|
2012-03-05 13:16:34 +01:00
|
|
|
QList<PluginInterface*> m_mouseDoubleClickHandlers;
|
2012-02-22 18:33:44 +01:00
|
|
|
QList<PluginInterface*> m_mousePressHandlers;
|
|
|
|
QList<PluginInterface*> m_mouseReleaseHandlers;
|
|
|
|
QList<PluginInterface*> m_mouseMoveHandlers;
|
|
|
|
|
2012-03-07 12:19:08 +01:00
|
|
|
QList<PluginInterface*> m_wheelEventHandlers;
|
|
|
|
|
2012-02-22 18:33:44 +01:00
|
|
|
QList<PluginInterface*> m_keyPressHandlers;
|
|
|
|
QList<PluginInterface*> m_keyReleaseHandlers;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PLUGINPROXY_H
|