1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/plugins/pluginproxy.cpp

226 lines
5.8 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2010-2014 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
#include "pluginproxy.h"
#include "plugininterface.h"
#include "mainapplication.h"
#include "settings.h"
2011-03-02 16:57:41 +01:00
#include <QMenu>
PluginProxy::PluginProxy()
: Plugins()
2011-03-02 16:57:41 +01:00
{
connect(this, SIGNAL(pluginUnloaded(PluginInterface*)), this, SLOT(pluginUnloaded(PluginInterface*)));
}
void PluginProxy::registerAppEventHandler(const PluginProxy::EventHandlerType &type, PluginInterface* obj)
{
switch (type) {
2012-03-05 13:16:34 +01:00
case MouseDoubleClickHandler:
if (!m_mouseDoubleClickHandlers.contains(obj)) {
m_mouseDoubleClickHandlers.append(obj);
}
break;
case MousePressHandler:
if (!m_mousePressHandlers.contains(obj)) {
m_mousePressHandlers.append(obj);
}
break;
case MouseReleaseHandler:
if (!m_mouseReleaseHandlers.contains(obj)) {
m_mouseReleaseHandlers.append(obj);
}
break;
case MouseMoveHandler:
if (!m_mouseMoveHandlers.contains(obj)) {
m_mouseMoveHandlers.append(obj);
}
break;
case KeyPressHandler:
if (!m_keyPressHandlers.contains(obj)) {
m_keyPressHandlers.append(obj);
}
break;
case KeyReleaseHandler:
if (!m_keyReleaseHandlers.contains(obj)) {
m_keyReleaseHandlers.append(obj);
}
break;
case WheelEventHandler:
if (!m_wheelEventHandlers.contains(obj)) {
m_wheelEventHandlers.append(obj);
}
break;
default:
qWarning("PluginProxy::registerAppEventHandler registering unknown event handler type");
break;
}
2011-03-02 16:57:41 +01:00
}
void PluginProxy::pluginUnloaded(PluginInterface* plugin)
{
m_mousePressHandlers.removeOne(plugin);
m_mouseReleaseHandlers.removeOne(plugin);
m_mouseMoveHandlers.removeOne(plugin);
m_keyPressHandlers.removeOne(plugin);
m_keyReleaseHandlers.removeOne(plugin);
}
void PluginProxy::populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &r)
2011-03-02 16:57:41 +01:00
{
if (!menu || !view) {
2011-03-02 16:57:41 +01:00
return;
}
2011-03-02 16:57:41 +01:00
foreach (PluginInterface* iPlugin, m_loadedPlugins) {
iPlugin->populateWebViewMenu(menu, view, r);
}
2011-03-02 16:57:41 +01:00
}
2012-03-05 13:16:34 +01:00
bool PluginProxy::processMouseDoubleClick(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_mouseDoubleClickHandlers) {
2012-03-05 13:16:34 +01:00
if (iPlugin->mouseDoubleClick(type, obj, event)) {
accepted = true;
}
}
return accepted;
}
bool PluginProxy::processMousePress(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
2011-03-02 16:57:41 +01:00
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_mousePressHandlers) {
if (iPlugin->mousePress(type, obj, event)) {
accepted = true;
}
}
return accepted;
2011-03-02 16:57:41 +01:00
}
bool PluginProxy::processMouseRelease(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
2011-03-02 16:57:41 +01:00
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_mouseReleaseHandlers) {
if (iPlugin->mouseRelease(type, obj, event)) {
accepted = true;
}
}
return accepted;
2011-03-02 16:57:41 +01:00
}
bool PluginProxy::processMouseMove(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_mouseMoveHandlers) {
if (iPlugin->mouseMove(type, obj, event)) {
accepted = true;
}
}
return accepted;
}
bool PluginProxy::processWheelEvent(const Qz::ObjectName &type, QObject* obj, QWheelEvent* event)
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_wheelEventHandlers) {
if (iPlugin->wheelEvent(type, obj, event)) {
accepted = true;
}
}
return accepted;
}
bool PluginProxy::processKeyPress(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event)
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_keyPressHandlers) {
if (iPlugin->keyPress(type, obj, event)) {
accepted = true;
}
}
return accepted;
}
bool PluginProxy::processKeyRelease(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event)
{
bool accepted = false;
foreach (PluginInterface* iPlugin, m_keyReleaseHandlers) {
if (iPlugin->keyRelease(type, obj, event)) {
accepted = true;
}
}
return accepted;
}
QNetworkReply* PluginProxy::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData)
{
foreach (PluginInterface* iPlugin, m_loadedPlugins) {
QNetworkReply* reply = iPlugin->createRequest(op, request, outgoingData);
if (reply) {
return reply;
}
}
return 0;
}
void PluginProxy::emitWebPageCreated(WebPage* page)
2012-03-05 13:16:34 +01:00
{
emit webPageCreated(page);
2012-03-05 13:16:34 +01:00
}
void PluginProxy::emitWebPageDeleted(WebPage* page)
2012-03-05 13:16:34 +01:00
{
emit webPageDeleted(page);
2012-03-05 13:16:34 +01:00
}
void PluginProxy::emitMainWindowCreated(BrowserWindow* window)
2012-03-05 13:16:34 +01:00
{
emit mainWindowCreated(window);
}
void PluginProxy::emitMainWindowDeleted(BrowserWindow* window)
2012-03-05 13:16:34 +01:00
{
emit mainWindowDeleted(window);
}