1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-15 11:32:11 +01:00
falkonOfficial/src/plugins/TestPlugin/testplugin.cpp

164 lines
5.2 KiB
C++
Raw Normal View History

/* ============================================================
2017-08-25 17:11:29 +02:00
* Falkon - Qt web browser
* Copyright (C) 2010-2018 David Rosca <nowrep@gmail.com>
*
* 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
#include "testplugin.h"
#include "testplugin_sidebar.h"
#include "browserwindow.h"
#include "webview.h"
#include "pluginproxy.h"
#include "mainapplication.h"
#include "sidebar.h"
2015-09-29 23:15:46 +02:00
#include "webhittestresult.h"
#include "../config.h"
#include "desktopfile.h"
2011-03-02 16:57:41 +01:00
2015-09-29 23:15:46 +02:00
#include <QMenu>
#include <QPushButton>
TestPlugin::TestPlugin()
: QObject()
, m_view(0)
{
// Don't do anything expensive in constructor!
2015-10-21 15:24:04 +02:00
// It will be called even if user doesn't have the plugin allowed
}
DesktopFile TestPlugin::metaData() const
2011-03-02 16:57:41 +01:00
{
return DesktopFile(QSL(":testplugin/metadata.desktop"));
}
void TestPlugin::init(InitState state, const QString &settingsPath)
{
qDebug() << __FUNCTION__ << "called";
// This function is called right after plugin is loaded
// it will be called even if we return false from testPlugin()
2017-08-25 17:11:29 +02:00
// so it is recommended not to call any Falkon function here
// Settings path is PROFILE/extensions (without trailign slash),
// in this directory you can use global .ini file for QSettings
// named "extensions.ini" or create new folder for your plugin
// and save in it anything you want
m_settingsPath = settingsPath;
// State can be either StartupInitState or LateInitState, and it
// indicates when the plugin have been loaded.
// Currently, it can be from preferences, or automatically at startup.
// Plugins are loaded before first BrowserWindow is created.
Q_UNUSED(state)
// Registering this plugin as a MousePressHandler.
// Otherwise mousePress() function will never be called
mApp->plugins()->registerAppEventHandler(PluginProxy::MousePressHandler, this);
// Adding new sidebar into application
m_sideBar = new TestPlugin_Sidebar(this);
SideBarManager::addSidebar("testplugin-sidebar", m_sideBar);
}
void TestPlugin::unload()
{
2011-03-02 16:57:41 +01:00
qDebug() << __FUNCTION__ << "called";
// This function will be called when unloading plugin
// it will be also called if we return false from testPlugin()
// Removing sidebar from application
SideBarManager::removeSidebar(m_sideBar);
delete m_sideBar;
// Deleting settings dialog if opened
delete m_settings.data();
2011-03-02 16:57:41 +01:00
}
bool TestPlugin::testPlugin()
{
// This function is called right after init()
// There should be some testing if plugin is loaded correctly
// If this function returns false, plugin is automatically unloaded
2011-03-02 16:57:41 +01:00
2017-08-25 17:11:29 +02:00
return (Qz::VERSION == QLatin1String(FALKON_VERSION));
2011-03-02 16:57:41 +01:00
}
void TestPlugin::showSettings(QWidget* parent)
2011-03-02 16:57:41 +01:00
{
// This function will be called from Preferences after clicking on Settings button.
// Settings button will be enabled if PluginSpec.hasSettings == true
if (!m_settings) {
m_settings = new QDialog(parent);
QPushButton* b = new QPushButton("Example Plugin v0.0.1");
QPushButton* closeButton = new QPushButton(tr("Close"));
QLabel* label = new QLabel();
label->setPixmap(QPixmap(":icons/other/about.svg"));
QVBoxLayout* l = new QVBoxLayout(m_settings.data());
l->addWidget(label);
l->addWidget(b);
l->addWidget(closeButton);
m_settings.data()->setLayout(l);
m_settings.data()->setAttribute(Qt::WA_DeleteOnClose);
m_settings.data()->setWindowTitle(tr("Example Plugin Settings"));
2018-02-23 12:57:42 +01:00
m_settings.data()->setWindowIcon(QIcon(":icons/falkon.svg"));
connect(closeButton, SIGNAL(clicked()), m_settings.data(), SLOT(close()));
}
m_settings.data()->show();
m_settings.data()->raise();
2011-03-02 16:57:41 +01:00
}
2015-09-29 23:15:46 +02:00
void TestPlugin::populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r)
2011-03-02 16:57:41 +01:00
{
Q_UNUSED(r)
// Called from WebView when creating context menu
m_view = view;
2011-03-02 16:57:41 +01:00
QString title;
if (!r.imageUrl().isEmpty()) {
2011-03-02 16:57:41 +01:00
title += " on image";
}
if (!r.linkUrl().isEmpty()) {
2011-03-02 16:57:41 +01:00
title += " on link";
}
if (r.isContentEditable()) {
title += " on input";
}
2011-03-02 16:57:41 +01:00
menu->addAction(tr("My first plugin action") + title, this, SLOT(actionSlot()));
2011-03-02 16:57:41 +01:00
}
bool TestPlugin::mousePress(Qz::ObjectName type, QObject* obj, QMouseEvent* event)
{
qDebug() << "mousePress" << type << obj << event;
// Returning false means, that we don't want to block propagating this event
2017-08-25 17:11:29 +02:00
// Returning true may affect behaviour of Falkon, so make sure you know what
// you are doing!
return false;
}
2011-03-02 16:57:41 +01:00
void TestPlugin::actionSlot()
{
QMessageBox::information(m_view, tr("Hello"), tr("First plugin action works :-)"));
2011-03-02 16:57:41 +01:00
}