/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2014 David Rosca * * 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 . * ============================================================ */ #ifndef PLUGINPROXY_H #define PLUGINPROXY_H #include "plugins.h" #include "qz_namespace.h" class BrowserWindow; class WebPage; class QUPZILLA_EXPORT PluginProxy : public Plugins { Q_OBJECT public: enum EventHandlerType { MouseDoubleClickHandler, MousePressHandler, MouseReleaseHandler, MouseMoveHandler, KeyPressHandler, KeyReleaseHandler, WheelEventHandler }; explicit PluginProxy(); void registerAppEventHandler(const EventHandlerType &type, PluginInterface* obj); void populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &r); 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); QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData); void emitWebPageCreated(WebPage* page); void emitWebPageDeleted(WebPage* page); void emitMainWindowCreated(BrowserWindow* window); void emitMainWindowDeleted(BrowserWindow* window); signals: void webPageCreated(WebPage* page); void webPageDeleted(WebPage* page); void mainWindowCreated(BrowserWindow* window); void mainWindowDeleted(BrowserWindow* window); private slots: void pluginUnloaded(PluginInterface* plugin); private: QList m_mouseDoubleClickHandlers; QList m_mousePressHandlers; QList m_mouseReleaseHandlers; QList m_mouseMoveHandlers; QList m_wheelEventHandlers; QList m_keyPressHandlers; QList m_keyReleaseHandlers; }; #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); #endif // PLUGINPROXY_H