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

104 lines
3.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
#ifndef PLUGINPROXY_H
#define PLUGINPROXY_H
#include "plugins.h"
#include "qzcommon.h"
2011-03-02 16:57:41 +01:00
#include <QWebEnginePage>
class WebPage;
class BrowserWindow;
class QUPZILLA_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:
enum EventHandlerType { MouseDoubleClickHandler, MousePressHandler, MouseReleaseHandler,
MouseMoveHandler, KeyPressHandler, KeyReleaseHandler,
WheelEventHandler
};
explicit PluginProxy();
void registerAppEventHandler(const EventHandlerType &type, PluginInterface* obj);
2015-09-29 23:15:46 +02:00
void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r);
void populateExtensionsMenu(QMenu *menu);
2011-03-02 16:57:41 +01:00
2012-03-05 13:16:34 +01:00
bool processMouseDoubleClick(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
bool processMousePress(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
bool processMouseRelease(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
bool processMouseMove(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
bool processWheelEvent(const Qz::ObjectName &type, QObject* obj, QWheelEvent* event);
bool processKeyPress(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event);
bool processKeyRelease(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event);
bool acceptNavigationRequest(WebPage *page, const QUrl &url, QWebEnginePage::NavigationType type, bool isMainFrame);
void emitWebPageCreated(WebPage* page);
void emitWebPageDeleted(WebPage* page);
2012-03-05 13:16:34 +01:00
void emitMainWindowCreated(BrowserWindow* window);
void emitMainWindowDeleted(BrowserWindow* window);
2012-03-05 13:16:34 +01:00
signals:
void webPageCreated(WebPage* page);
void webPageDeleted(WebPage* page);
2012-03-05 13:16:34 +01:00
void mainWindowCreated(BrowserWindow* window);
void mainWindowDeleted(BrowserWindow* window);
2012-03-05 13:16:34 +01:00
private slots:
void pluginUnloaded(PluginInterface* plugin);
private:
2012-03-05 13:16:34 +01:00
QList<PluginInterface*> m_mouseDoubleClickHandlers;
QList<PluginInterface*> m_mousePressHandlers;
QList<PluginInterface*> m_mouseReleaseHandlers;
QList<PluginInterface*> m_mouseMoveHandlers;
QList<PluginInterface*> m_wheelEventHandlers;
QList<PluginInterface*> m_keyPressHandlers;
QList<PluginInterface*> m_keyReleaseHandlers;
2011-03-02 16:57:41 +01:00
};
#include "mainapplication.h"
#include "networkmanager.h"
#include "autofill.h"
#include "passwordmanager.h"
#define QZ_REGISTER_EVENT_HANDLER(Type) \
mApp->plugins()->registerAppEventHandler(Type, this);
#define QZ_REGISTER_SCHEME_HANDLER(Scheme, Object) \
mApp->networkManager()->registerSchemeHandler(Scheme, Object);
#define QZ_UNREGISTER_SCHEME_HANDLER(Scheme, Object) \
mApp->networkManager()->unregisterSchemeHandler(Scheme, Object);
#define QZ_REGISTER_PASSWORD_BACKEND(Name, Object) \
mApp->autoFill()->passwordManager()->registerBackend(Name, Object);
#define QZ_UNREGISTER_PASSWORD_BACKEND(Object) \
mApp->autoFill()->passwordManager()->unregisterBackend(Object);
2011-03-02 16:57:41 +01:00
#endif // PLUGINPROXY_H