KGenericFactory< Product, ParentType > Class Template Reference
This template provides a generic implementation of a KLibFactory , for use with shared library components. More...
#include <kgenericfactory.h>
Inheritance diagram for KGenericFactory< Product, ParentType >:


Public Member Functions | |
KGenericFactory (const char *instanceName=0) | |
Protected Member Functions | |
virtual QObject * | createObject (QObject *parent, const char *name, const char *className, const QStringList &args) |
Creates a new object. |
Detailed Description
template<class Product, class ParentType = QObject>
class KGenericFactory< Product, ParentType >
This template provides a generic implementation of a KLibFactory , for use with shared library components.
It implements the pure virtual createObject method of KLibFactory and instantiates objects of the specified class (template argument) when the class name argument of createObject matches a class name in the given hierarchy.
In case you are developing a KParts component, skip this file and go directly to KParts::GenericFactory .
Note that the class specified as template argument needs to provide a certain constructor:
-
If the class is derived from QObject then it needs to have a constructor like:
MyClass( QObject *parent, const char *name, const QStringList &args );
-
If the class is derived from QWidget then it needs to have a constructor like:
MyWidget( QWidget *parent, const char *name, const QStringList &args);
-
If the class is derived from KParts::Part then it needs to have a constructor like:
MyPart( QWidget *parentWidget, const char *widgetName, QObject *parent, const char *name, const QStringList &args );
In addition upon instantiation this template provides a central KInstance object for your component, accessible through the static instance() method. The instanceName argument of the KGenericFactory constructor is passed to the KInstance object.
The creation of the KInstance object can be customized by inheriting from this template class and re-implementing the virtual createInstance method. For example it could look like this:
KInstance *MyFactory::createInstance() { return new KInstance( myAboutData ); }Example of usage of the whole template:
class MyPlugin : public KParts::Plugin { Q_ OBJECT public: MyPlugin( QObject *parent, const char *name, const QStringList &args ); ... };
K_EXPORT_COMPONENT_FACTORY( libmyplugin, KGenericFactory<MyPlugin> );
Definition at line 158 of file kgenericfactory.h.
Member Function Documentation
|
Creates a new object. The returned object has to be derived from the requested classname.
It is valid behavior to create different kinds of objects depending on the requested This function is called by create()
Implements KLibFactory. Definition at line 166 of file kgenericfactory.h. References KStdAction::name(). |
The documentation for this class was generated from the following file: