/usr/include/KF5/KIPI/kipi/pluginloader.h is in libkf5kipi-dev 4:16.08.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | /** ===========================================================
* @file
*
* This file is a part of digiKam project
* <a href="http://www.digikam.org">http://www.digikam.org</a>
*
* @date 2004-02-01
* @brief plugin loader
*
* @author Copyright (C) 2004-2016 by Gilles Caulier
* <a href="mailto:caulier dot gilles at gmail dot com">caulier dot gilles at gmail dot com</a>
* @author Copyright (C) 2004-2005 by Renchi Raju
* <a href="mailto:renchi dot raju at gmail dot com">renchi dot raju at gmail dot com</a>
* @author Copyright (C) 2009 by Andi Clemens
* <a href="mailto:andi dot clemens at googlemail dot com">andi dot clemens at googlemail dot com</a>
* @author Copyright (C) 2009 by Aleix Pol Gonzalez
* <a href="mailto:aleixpol at kde dot org">aleixpol at kde dot org</a>
* @author Copyright (C) 2012 by Victor Dodon
* <a href="mailto:dodonvictor at gmail dot com">dodonvictor at gmail dot com</a>
*
* 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 2, 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.
*
* ============================================================ */
#ifndef KIPI_PLUGINLOADER_H
#define KIPI_PLUGINLOADER_H
// Qt includes
#include <QtCore/QList>
// KDE includes
#include <kservice.h>
#include <kxmlguiwindow.h>
// Local includes
#include "libkipi_export.h"
namespace KIPI
{
class Plugin;
class Interface;
class ConfigWidget;
/**
\author Gilles Caulier
\par Maintainer: Victor Dodon
\class PluginLoader
This is the class that will help host applications to load plugins.
The host application must create an instance of the plugin loader, and
call the method loadPlugins() to get the plugins loaded. To ensure that
plugins are correctly removed from menus and toolbars when loaded and
unloaded after constructions, the application must connect to either the
signals plug() / unplug() or the signal replug(). These signals are
emitted when a plugin is to be inserted into the menus.
If your application is using KDE XMLGUI, the easiest(nicest) way to get the
plugins inserted into the menus is by adding an item in your application XML
ui.rc file looking like this:
\code
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
<gui version="1" name="MyKipiApplication" >
<MenuBar>
<Menu name="Image" ><text>&Image</text>
<DefineGroup name="kipi_image_group" append="kipi_image_group" />
</Menu>
<Menu name="Tools"><text>&Tools</text>
<DefineGroup name="kipi_album_group" append="kipi_album_group" />
<Separator/>
<DefineGroup name="kipi_tool_group" append="kipi_tool_group" />
<Separator/>
<DefineGroup name="kipi_batch_group" append="kipi_batch_group" />
</Menu>
<Merge/>
</MenuBar>
<ToolBar name="mainToolBar">
<text>Main Toolbar</text>
</Toolbar>
<ActionProperties/>
</gui>
\endcode
Then loading plugins into menus could be done with code similar to this implementation:
\code
class MyKipiApplication : public KXmlGuiWindow
{
Q_OBJECT
public:
MyKipiApplication();
private Q_SLOTS:
void slotKipiPluginPlug();
private:
KIPI::Interface* m_iface;
KIPI::PluginLoader* m_loader;
};
// -------------------------------------------------------------------------------
MyKipiApplication::MyKipiApplication() : KXmlGuiWindow(0)
{
m_iface = new KIPI::Interface(this, "MyKipiApplication_KIPI_interface");
m_loader = new KIPI::PluginLoader(this);
m_loader->setInterface(m_iface);
m_loader->init();
connect(m_loader, SIGNAL(replug()),
this, SLOT(slotKipiPluginPlug()));
m_loader->loadPlugins();
}
void MyKipiApplication::slotKipiPluginPlug()
{
QList<QAction*> kipiImageActions, kipiExportActions, kipiToolsActions;
PluginLoader::PluginList list = m_loader->pluginList();
// We need to remove loaded plugins from the gui factory
for (PluginLoader::PluginList::ConstIterator it = list.constBegin(); it != list.constEnd(); ++it )
{
Plugin* plugin = (*it)->plugin();
if ( !plugin || !(*it)->shouldLoad() )
continue;
guiFactory()->removeClient(plugin);
}
for (PluginLoader::PluginList::ConstIterator it = list.constBegin(); it != list.constEnd(); ++it )
{
Plugin* plugin = (*it)->plugin();
if ( !plugin || !(*it)->shouldLoad() )
continue;
plugin->setup(this);
}
// We add plugins to the factory
for (PluginLoader::PluginList::ConstIterator it = list.constBegin(); it != list.constEnd(); ++it )
{
Plugin* plugin = (*it)->plugin();
if ( !plugin || !(*it)->shouldLoad() )
continue;
guiFactory()->addClient(plugin);
}
}
\endcode
For a complete implementation used to manage Kipi-plugins in digiKam, look <a href="https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/entry/utilities/kipiiface/kipipluginloader.cpp">
into this class</a>, or you can look the code of the kxmlkipicmd test application
in the "test" folder from libkipi.
To configure which plugins should be loaded, simply call
PluginLoader::configWidget(), and insert the widget into your normal
configuration dialog.
*/
class LIBKIPI_EXPORT PluginLoader : public QObject
{
Q_OBJECT
public:
class LIBKIPI_EXPORT Info
{
public:
Info(KXmlGuiWindow* const parent, const KService::Ptr& service, bool shouldLoad);
~Info();
QString name() const;
QString uname() const;
QString author() const;
QString comment() const;
QIcon icon() const;
QString library() const;
KService::Ptr service() const;
Plugin* plugin() const;
QStringList pluginCategories() const;
void reload();
bool shouldLoad() const;
void setShouldLoad(bool);
private:
class Private;
Private* const d;
};
public:
typedef QList<Info*> PluginList;
public:
/**
* Use this constructor if your application does not use KDE XML GUI technology
*/
PluginLoader();
/**
* Standard constructor. You must pass the instance of KDE XML GUI application as argument.
* @param parent the pointer to the KXmlGuiWindow of your application
*/
PluginLoader(KXmlGuiWindow* const parent);
/**
* Standard destructor
*/
virtual ~PluginLoader();
/**
* Set KIPI interface instance from host application.
*/
void setInterface(Interface* const interface);
/**
* Return KIPI host interface instance.
*/
Interface* interface() const;
/**
* Set Plugins ignore list, with name of obsoletes plugins to not load through init().
*/
void setIgnoredPluginsList(const QStringList& ignores);
/**
* Set disabled plugin actions that will not be plugged into the gui,
*/
void setDisabledPluginActions(const QStringList& disabledActions);
/**
* Return the list of disabled plugin actions
*/
QStringList disabledPluginActions() const;
/**
* Init plugin loader. Call this method to parse relevant plugins installed on your system.
* Before to call this method, you must setup KIPI insterface instance.
* Optionally, setup list of plugins to ignore, the constraint list, and
* the disabled plugin actions
*/
void init();
/**
* Call this method to load relevant plugins installed on your system to your KIPI host application
* NOTE: plugins can be loaded through Info item.
*/
void loadPlugins();
/**
* Returns the list of loaded plugins
*/
const PluginList& pluginList();
/**
* Return the kipi-plugins version installed on your computer if it's found through kipiplugins.desktop file.
*/
QString kipiPluginsVersion() const;
/**
* Return the config widget with list of plugins to manage.
*/
ConfigWidget* configWidget(QWidget* const parent) const;
/**
* Returns plugin loader instance.
*/
static PluginLoader* instance();
Q_SIGNALS:
void plug(KIPI::PluginLoader::Info*);
void unplug(KIPI::PluginLoader::Info*);
// NOTE: plugin can be pluged through Info item.
void replug();
private:
class Private;
Private* const d;
private:
friend class ConfigWidget;
};
} // namespace KIPI
#endif /* KIPI_PLUGINLOADER_H */
|