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"
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
class BrowserWindow;
|
2012-04-01 10:48:50 +02:00
|
|
|
class WebPage;
|
2012-03-16 13:53:49 +01:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
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:
|
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
|
|
|
|
2012-02-19 17:50:02 +01:00
|
|
|
explicit PluginProxy();
|
|
|
|
|
2012-02-22 18:33:44 +01:00
|
|
|
void registerAppEventHandler(const EventHandlerType &type, PluginInterface* obj);
|
|
|
|
|
2012-02-19 17:50:02 +01:00
|
|
|
void populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &r);
|
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);
|
2012-02-22 18:33:44 +01:00
|
|
|
bool processMousePress(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
|
2012-03-07 12:19:08 +01:00
|
|
|
bool processMouseRelease(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
|
|
|
|
bool processMouseMove(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event);
|
2011-12-02 23:25:27 +01:00
|
|
|
|
2012-03-07 12:19:08 +01:00
|
|
|
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);
|
2011-12-02 23:25:27 +01:00
|
|
|
|
2012-07-08 00:15:03 +02:00
|
|
|
QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData);
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2012-04-04 21:12:52 +02:00
|
|
|
private slots:
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2013-05-15 20:05:45 +02: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);
|
2012-02-22 18:33:44 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
#endif // PLUGINPROXY_H
|