2012-07-11 18:30:00 +02:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Personal Information Manager plugin for Falkon
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2012-2014 David Rosca <nowrep@gmail.com>
|
|
|
|
* Copyright (C) 2012-2014 Mladen Pejaković <pejakm@autistici.org>
|
2012-07-11 18:30:00 +02: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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#include "PIM_plugin.h"
|
|
|
|
#include "PIM_handler.h"
|
|
|
|
#include "PIM_settings.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "pluginproxy.h"
|
2014-02-19 22:07:21 +01:00
|
|
|
#include "browserwindow.h"
|
2012-07-11 18:30:00 +02:00
|
|
|
#include "webview.h"
|
2018-01-24 14:25:38 +01:00
|
|
|
#include "../config.h"
|
2012-07-11 18:30:00 +02:00
|
|
|
|
|
|
|
PIM_Plugin::PIM_Plugin()
|
|
|
|
: QObject()
|
|
|
|
, m_handler(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-24 11:03:16 +02:00
|
|
|
void PIM_Plugin::init(InitState state, const QString &settingsPath)
|
2012-07-11 18:30:00 +02:00
|
|
|
{
|
2013-05-24 11:03:16 +02:00
|
|
|
Q_UNUSED(state)
|
|
|
|
|
|
|
|
m_handler = new PIM_Handler(settingsPath, this);
|
2012-07-11 18:30:00 +02:00
|
|
|
|
2018-02-06 15:48:30 +01:00
|
|
|
mApp->plugins()->registerAppEventHandler(PluginProxy::KeyPressHandler, this);
|
2012-07-11 18:30:00 +02:00
|
|
|
|
|
|
|
connect(mApp->plugins(), SIGNAL(webPageCreated(WebPage*)), m_handler, SLOT(webPageCreated(WebPage*)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PIM_Plugin::unload()
|
|
|
|
{
|
2012-09-11 11:31:28 +02:00
|
|
|
m_handler->unloadPlugin();
|
2012-07-11 18:30:00 +02:00
|
|
|
m_handler->deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PIM_Plugin::testPlugin()
|
|
|
|
{
|
2014-04-17 15:20:54 +02:00
|
|
|
// Require the version that the plugin was built with
|
2017-08-25 17:11:29 +02:00
|
|
|
return (Qz::VERSION == QLatin1String(FALKON_VERSION));
|
2012-07-11 18:30:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void PIM_Plugin::showSettings(QWidget* parent)
|
|
|
|
{
|
|
|
|
m_handler->showSettings(parent);
|
|
|
|
}
|
|
|
|
|
2015-10-02 14:13:21 +02:00
|
|
|
void PIM_Plugin::populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r)
|
2012-07-11 18:30:00 +02:00
|
|
|
{
|
|
|
|
m_handler->populateWebViewMenu(menu, view, r);
|
|
|
|
}
|
|
|
|
|
2018-02-25 20:39:40 +01:00
|
|
|
bool PIM_Plugin::keyPress(Qz::ObjectName type, QObject* obj, QKeyEvent* event)
|
2012-07-11 18:30:00 +02:00
|
|
|
{
|
|
|
|
if (type == Qz::ON_WebView) {
|
|
|
|
WebView* view = qobject_cast<WebView*>(obj);
|
|
|
|
return m_handler->keyPress(view, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|