1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/plugins/GreaseMonkey/gm_plugin.cpp

104 lines
3.0 KiB
C++
Raw Normal View History

2012-07-11 18:30:00 +02:00
/* ============================================================
* GreaseMonkey plugin for QupZilla
2013-02-24 12:07:57 +01:00
* Copyright (C) 2012-2013 David Rosca <nowrep@gmail.com>
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 "gm_plugin.h"
#include "gm_manager.h"
#include "qupzilla.h"
#include "webpage.h"
#include "pluginproxy.h"
#include "mainapplication.h"
#include "emptynetworkreply.h"
#include <QTranslator>
#include <QNetworkRequest>
GM_Plugin::GM_Plugin()
: QObject()
, m_manager(0)
{
}
PluginSpec GM_Plugin::pluginSpec()
{
PluginSpec spec;
spec.name = "GreaseMonkey";
spec.info = "Userscripts for QupZilla";
spec.description = "Provides support for userscripts (www.userscripts.org)";
2013-02-24 12:07:57 +01:00
spec.version = "0.2.5";
2012-07-11 18:30:00 +02:00
spec.author = "David Rosca <nowrep@gmail.com>";
spec.icon = QPixmap(":gm/data/icon.png");
spec.hasSettings = true;
return spec;
}
void GM_Plugin::init(const QString &sPath)
{
m_manager = new GM_Manager(sPath, this);
m_settingsPath = sPath;
connect(mApp->plugins(), SIGNAL(webPageCreated(WebPage*)), this, SLOT(webPageCreated(WebPage*)));
}
void GM_Plugin::unload()
{
m_manager->unloadPlugin();
2012-07-11 18:30:00 +02:00
delete m_manager;
}
bool GM_Plugin::testPlugin()
{
return (QupZilla::VERSION == QLatin1String("1.5.0"));
2012-07-11 18:30:00 +02:00
}
QTranslator* GM_Plugin::getTranslator(const QString &locale)
{
QTranslator* translator = new QTranslator(this);
translator->load(locale, ":/gm/locale/");
return translator;
}
void GM_Plugin::showSettings(QWidget* parent)
{
m_manager->showSettings(parent);
}
QNetworkReply* GM_Plugin::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData)
{
Q_UNUSED(outgoingData)
if (op == QNetworkAccessManager::GetOperation && request.rawHeader("X-QupZilla-UserLoadAction") == QByteArray("1")) {
2012-07-11 18:30:00 +02:00
const QString &urlString = request.url().toString(QUrl::RemoveFragment | QUrl::RemoveQuery);
if (urlString.endsWith(QLatin1String(".user.js"))) {
2012-07-11 18:30:00 +02:00
m_manager->downloadScript(request);
return new EmptyNetworkReply;
}
}
return 0;
}
void GM_Plugin::webPageCreated(WebPage* page)
{
connect(page->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), m_manager, SLOT(pageLoadStart()));
}
#if QT_VERSION < 0x050000
2012-07-11 18:30:00 +02:00
Q_EXPORT_PLUGIN2(GreaseMonkey, GM_Plugin)
#endif