class KDEDModule |
|
|
The base class for KDED modules. KDED modules are realized as shared libraries that are loaded on-demand into kded at runtime. To write a config module, you have to create a library that contains at least one factory function like this:
extern "C" {
KDEDModule *create_xyz()
{
return new XYZ();
}
}
See kdelibs/kded/HOWTO for more detailed documentation.
Author Waldo Bastian |
|
Constructor |
|
Emitted when the module is being deleted. |
|
|
Internal called by kded after loading a module The module name is set from the path of the desktop file, and is used to register the module to dbus. |
|
|