#include <qdockwidget_container.h>
Inheritance diagram for qdesigner_internal::QDockWidgetContainerFactory:


Definition at line 53 of file qdockwidget_container.h.
Public Member Functions | |
| QDockWidgetContainerFactory (QExtensionManager *parent=0) | |
Protected Member Functions | |
| virtual QObject * | createExtension (QObject *object, const QString &iid, QObject *parent) const |
| QDockWidgetContainerFactory::QDockWidgetContainerFactory | ( | QExtensionManager * | parent = 0 |
) |
Definition at line 84 of file qdockwidget_container.cpp.
00085 : QExtensionFactory(parent) 00086 { 00087 }
| QObject * QDockWidgetContainerFactory::createExtension | ( | QObject * | object, | |
| const QString & | iid, | |||
| QObject * | parent | |||
| ) | const [protected, virtual] |
Creates an extension specified by iid for the given object. The extension object is created as a child of the specified parent.
Reimplemented from QExtensionFactory.
Definition at line 89 of file qdockwidget_container.cpp.
References object, QObject::parent(), Q_TYPEID, and w.
00090 { 00091 if (iid != Q_TYPEID(QDesignerContainerExtension)) 00092 return 0; 00093 00094 if (QDockWidget *w = qobject_cast<QDockWidget*>(object)) 00095 return new QDockWidgetContainer(w, parent); 00096 00097 return 0; 00098 }
Here is the call graph for this function:

1.5.1