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

104 lines
2.7 KiB
C++
Raw Normal View History

2011-03-02 16:57:41 +01:00
#include "testplugin.h"
#include "qupzilla.h"
#include "webview.h"
2011-03-02 16:57:41 +01:00
PluginSpec TestPlugin::pluginSpec()
2011-03-02 16:57:41 +01:00
{
PluginSpec spec;
spec.name = "Example Plugin";
spec.info = "Example minimal plugin";
spec.description = "Very simple minimal plugin example";
spec.version = "0.0.1";
spec.author = "David Rosca <nowrep@gmail.com>";
spec.icon = QIcon(":qupzilla.png");
spec.hasSettings = true;
return spec;
}
void TestPlugin::init(const QString &sPath)
{
qDebug() << __FUNCTION__ << "called";
// This function is called right after plugin is loaded
// it will be called even if we return false from testPlugin()
// so it is recommended not to call any QupZilla function here
m_settingsPath = sPath;
m_view = 0;
}
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()
2011-03-02 16:57:41 +01:00
}
bool TestPlugin::testPlugin()
{
2011-03-03 22:52:15 +01:00
//This function is called right after init()
2011-03-02 16:57:41 +01:00
//There should be some testing if plugin is loaded correctly
//If this function returns false, plugin is automatically unloaded
return (QupZilla::VERSION == "1.1.8");
2011-03-02 16:57:41 +01:00
}
QTranslator* TestPlugin::getTranslator(const QString &locale)
2011-03-02 16:57:41 +01:00
{
QTranslator* translator = new QTranslator();
translator->load(":/testplugin/" + locale);
2011-03-02 16:57:41 +01:00
return translator;
}
void TestPlugin::showSettings(QWidget *parent)
2011-03-02 16:57:41 +01:00
{
QDialog* dialog = 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.png"));
QVBoxLayout* l = new QVBoxLayout(dialog);
l->addWidget(label);
l->addWidget(b);
l->addWidget(closeButton);
dialog->setLayout(l);
dialog->setAttribute(Qt::WA_DeleteOnClose);
dialog->setWindowTitle(tr("Example Plugin Settings"));
dialog->setWindowIcon(QIcon(":qupzilla.png"));
connect(closeButton, SIGNAL(clicked()), dialog, SLOT(close()));
dialog->show();
2011-03-02 16:57:41 +01:00
}
void TestPlugin::populateWebViewMenu(QMenu* menu, WebView* view, const QWebHitTestResult &r)
2011-03-02 16:57:41 +01:00
{
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
}
void TestPlugin::actionSlot()
{
QMessageBox::information(m_view, tr("Hello"), tr("First plugin action works :-)"));
2011-03-02 16:57:41 +01:00
}
//Export plugin macro
Q_EXPORT_PLUGIN2(ExamplePlugin, TestPlugin)