1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/lib/plugins/plugins.h
2018-02-11 14:38:01 +01:00

119 lines
3.1 KiB
C++

/* ============================================================
* 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/>.
* ============================================================ */
#ifndef PLUGINLOADER_H
#define PLUGINLOADER_H
#include <QObject>
#include <QVariant>
#include <QPointer>
#include "qzcommon.h"
#include "plugininterface.h"
class QPluginLoader;
class SpeedDial;
struct PluginSpec {
QString name;
QString description;
QString author;
QString version;
QPixmap icon;
bool hasSettings = false;
bool operator==(const PluginSpec &other) const {
return (this->name == other.name &&
this->description == other.description &&
this->author == other.author &&
this->version == other.version);
}
};
class FALKON_EXPORT Plugins : public QObject
{
Q_OBJECT
public:
struct Plugin {
QString fileName;
QString fullPath;
PluginSpec pluginSpec;
QPluginLoader* pluginLoader;
PluginInterface* instance;
Plugin() {
pluginLoader = 0;
instance = 0;
}
bool isLoaded() const {
return instance;
}
bool operator==(const Plugin &other) const {
return (this->fileName == other.fileName &&
this->fullPath == other.fullPath &&
this->pluginSpec == other.pluginSpec &&
this->instance == other.instance);
}
};
explicit Plugins(QObject* parent = 0);
QList<Plugin> getAvailablePlugins();
bool loadPlugin(Plugin* plugin);
void unloadPlugin(Plugin* plugin);
void shutdown();
// SpeedDial
SpeedDial* speedDial() { return m_speedDial; }
public slots:
void loadSettings();
void loadPlugins();
protected:
QList<PluginInterface*> m_loadedPlugins;
signals:
void pluginUnloaded(PluginInterface* plugin);
private:
bool alreadySpecInAvailable(const PluginSpec &spec);
PluginSpec createSpec(const DesktopFile &metaData) const;
PluginInterface* initPlugin(PluginInterface::InitState state , PluginInterface* pluginInterface, QPluginLoader* loader);
void refreshLoadedPlugins();
void loadAvailablePlugins();
QList<Plugin> m_availablePlugins;
QStringList m_allowedPlugins;
bool m_pluginsLoaded;
SpeedDial* m_speedDial;
QList<PluginInterface*> m_internalPlugins;
};
Q_DECLARE_METATYPE(Plugins::Plugin)
#endif // PLUGINLOADER_H