1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

PluginProxy: Don't pass enum as constref

This commit is contained in:
David Rosca 2018-02-25 21:54:25 +01:00
parent 532af04848
commit 5e1635bffa
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
2 changed files with 16 additions and 17 deletions

View File

@ -28,7 +28,7 @@ PluginProxy::PluginProxy(QObject *parent)
connect(this, SIGNAL(pluginUnloaded(PluginInterface*)), this, SLOT(pluginUnloaded(PluginInterface*)));
}
void PluginProxy::registerAppEventHandler(const PluginProxy::EventHandlerType &type, PluginInterface* obj)
void PluginProxy::registerAppEventHandler(PluginProxy::EventHandlerType type, PluginInterface* obj)
{
switch (type) {
case MouseDoubleClickHandler:
@ -112,7 +112,7 @@ void PluginProxy::populateExtensionsMenu(QMenu *menu)
}
}
bool PluginProxy::processMouseDoubleClick(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
bool PluginProxy::processMouseDoubleClick(Qz::ObjectName type, QObject* obj, QMouseEvent* event)
{
bool accepted = false;
@ -125,7 +125,7 @@ bool PluginProxy::processMouseDoubleClick(const Qz::ObjectName &type, QObject* o
return accepted;
}
bool PluginProxy::processMousePress(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
bool PluginProxy::processMousePress(Qz::ObjectName type, QObject* obj, QMouseEvent* event)
{
bool accepted = false;
@ -138,7 +138,7 @@ bool PluginProxy::processMousePress(const Qz::ObjectName &type, QObject* obj, QM
return accepted;
}
bool PluginProxy::processMouseRelease(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
bool PluginProxy::processMouseRelease(Qz::ObjectName type, QObject* obj, QMouseEvent* event)
{
bool accepted = false;
@ -151,7 +151,7 @@ bool PluginProxy::processMouseRelease(const Qz::ObjectName &type, QObject* obj,
return accepted;
}
bool PluginProxy::processMouseMove(const Qz::ObjectName &type, QObject* obj, QMouseEvent* event)
bool PluginProxy::processMouseMove(Qz::ObjectName type, QObject* obj, QMouseEvent* event)
{
bool accepted = false;
@ -164,7 +164,7 @@ bool PluginProxy::processMouseMove(const Qz::ObjectName &type, QObject* obj, QMo
return accepted;
}
bool PluginProxy::processWheelEvent(const Qz::ObjectName &type, QObject* obj, QWheelEvent* event)
bool PluginProxy::processWheelEvent(Qz::ObjectName type, QObject* obj, QWheelEvent* event)
{
bool accepted = false;
@ -177,7 +177,7 @@ bool PluginProxy::processWheelEvent(const Qz::ObjectName &type, QObject* obj, QW
return accepted;
}
bool PluginProxy::processKeyPress(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event)
bool PluginProxy::processKeyPress(Qz::ObjectName type, QObject* obj, QKeyEvent* event)
{
bool accepted = false;
@ -190,7 +190,7 @@ bool PluginProxy::processKeyPress(const Qz::ObjectName &type, QObject* obj, QKey
return accepted;
}
bool PluginProxy::processKeyRelease(const Qz::ObjectName &type, QObject* obj, QKeyEvent* event)
bool PluginProxy::processKeyRelease(Qz::ObjectName type, QObject* obj, QKeyEvent* event)
{
bool accepted = false;
@ -235,4 +235,3 @@ void PluginProxy::emitMainWindowDeleted(BrowserWindow* window)
{
emit mainWindowDeleted(window);
}

View File

@ -37,20 +37,20 @@ public:
explicit PluginProxy(QObject *parent = nullptr);
void registerAppEventHandler(const EventHandlerType &type, PluginInterface* obj);
void registerAppEventHandler(EventHandlerType type, PluginInterface* obj);
void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r);
void populateExtensionsMenu(QMenu *menu);
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 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);
bool processWheelEvent(const Qz::ObjectName &type, QObject* obj, QWheelEvent* event);
bool processWheelEvent(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 processKeyPress(Qz::ObjectName type, QObject* obj, QKeyEvent* event);
bool processKeyRelease(Qz::ObjectName type, QObject* obj, QKeyEvent* event);
bool acceptNavigationRequest(WebPage *page, const QUrl &url, QWebEnginePage::NavigationType type, bool isMainFrame);