Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 8e6051afcdb111a0317a58fb64c2abf5 > files > 556

qt4-doc-4.6.3-0.2mdv2010.2.i586.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- containerextension.qdoc -->
<head>
  <title>Qt 4.6: Container Extension Example</title>
  <link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td>
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">Container Extension Example<br /><span class="subtitle"></span>
</h1>
<p>Files:</p>
<ul>
<li><a href="designer-containerextension-multipagewidget-cpp.html">designer/containerextension/multipagewidget.cpp</a></li>
<li><a href="designer-containerextension-multipagewidget-h.html">designer/containerextension/multipagewidget.h</a></li>
<li><a href="designer-containerextension-multipagewidgetcontainerextension-cpp.html">designer/containerextension/multipagewidgetcontainerextension.cpp</a></li>
<li><a href="designer-containerextension-multipagewidgetcontainerextension-h.html">designer/containerextension/multipagewidgetcontainerextension.h</a></li>
<li><a href="designer-containerextension-multipagewidgetextensionfactory-cpp.html">designer/containerextension/multipagewidgetextensionfactory.cpp</a></li>
<li><a href="designer-containerextension-multipagewidgetextensionfactory-h.html">designer/containerextension/multipagewidgetextensionfactory.h</a></li>
<li><a href="designer-containerextension-multipagewidgetplugin-cpp.html">designer/containerextension/multipagewidgetplugin.cpp</a></li>
<li><a href="designer-containerextension-multipagewidgetplugin-h.html">designer/containerextension/multipagewidgetplugin.h</a></li>
<li><a href="designer-containerextension-containerextension-pro.html">designer/containerextension/containerextension.pro</a></li>
</ul>
<p>The Container Extension example shows how to create a custom multi-page plugin for Qt Designer using the <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> class.</p>
<p align="center"><img src="images/containerextension-example.png" /></p><p>To provide a custom widget that can be used with <i>Qt Designer</i>, we need to supply a self-contained implementation. In this example we use a custom multi-page widget designed to show the container extension feature.</p>
<p>An extension is an object which modifies the behavior of <i>Qt Designer</i>. The <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> enables <i>Qt Designer</i> to manage and manipulate a custom multi-page widget, i.e&#x2e; adding and deleting pages to the widget.</p>
<p>There are four available types of extensions in <i>Qt Designer</i>:</p>
<ul>
<li><a href="qdesignermembersheetextension.html">QDesignerMemberSheetExtension</a> provides an extension that allows you to manipulate a widget's member functions which is displayed when configuring connections using Qt Designer's mode for editing signals and slots.</li>
<li><a href="qdesignerpropertysheetextension.html">QDesignerPropertySheetExtension</a> provides an extension that allows you to manipulate a widget's properties which is displayed in Qt Designer's property editor.</li>
<li><a href="qdesignertaskmenuextension.html">QDesignerTaskMenuExtension</a> provides an extension that allows you to add custom menu entries to <i>Qt Designer</i>'s task menu.</li>
<li><a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> provides an extension that allows you to add (and delete) pages to a multi-page container plugin in <i>Qt Designer</i>.</li>
</ul>
<p>You can use all the extensions following the same pattern as in this example, only replacing the respective extension base class. For more information, see the <a href="qtdesigner.html">QtDesigner Module</a>.</p>
<p>The Container Extension example consists of four classes:</p>
<ul>
<li><tt>MultiPageWidget</tt> is a custom container widget that lets the user manipulate and populate its pages, and navigate among these using a combobox.</li>
<li><tt>MultiPageWidgetPlugin</tt> exposes the <tt>MultiPageWidget</tt> class to <i>Qt Designer</i>.</li>
<li><tt>MultiPageWidgetExtensionFactory</tt> creates a <tt>MultiPageWidgetContainerExtension</tt> object.</li>
<li><tt>MultiPageWidgetContainerExtension</tt> provides the container extension.</li>
</ul>
<p>The project file for custom widget plugins needs some additional information to ensure that they will work within <i>Qt Designer</i>. For example, custom widget plugins rely on components supplied with <i>Qt Designer</i>, and this must be specified in the project file that we use. We will first take a look at the plugin's project file.</p>
<p>Then we will continue by reviewing the <tt>MultiPageWidgetPlugin</tt> class, and take a look at the <tt>MultiPageWidgetExtensionFactory</tt> and <tt>MultiPageWidgetContainerExtension</tt> classes. Finally, we will take a quick look at the <tt>MultiPageWidget</tt> class definition.</p>
<a name="the-project-file-containerextension-pro"></a>
<h2>The Project File: containerextension.pro</h2>
<p>The project file must contain some additional information to ensure that the plugin will work as expected:</p>
<pre> TEMPLATE = lib
 CONFIG  += designer plugin</pre>
<p>The <tt>TEMPLATE</tt> variable's value makes <tt>qmake</tt> create the custom widget as a library. Later, we will ensure that the widget will be recognized as a plugin by Qt by using the <a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>() macro to export the relevant widget information.</p>
<p>The <tt>CONFIG</tt> variable contains two values, <tt>designer</tt> and <tt>plugin</tt>:</p>
<ul>
<li><tt>designer</tt>: Since custom widgets plugins rely on components supplied with <i>Qt Designer</i>, this value ensures that our plugin links against <i>Qt Designer</i>'s library (<tt>libQtDesigner.so</tt>).</li>
<li><tt>plugin</tt>: We also need to ensure that <tt>qmake</tt> considers the custom widget a <i>plugin</i> library.</li>
</ul>
<p>When Qt is configured to build in both debug and release modes, <i>Qt Designer</i> will be built in release mode. When this occurs, it is necessary to ensure that plugins are also built in release mode. For that reason we add a <tt>debug_and_release</tt> value to the <tt>CONFIG</tt> variable. Otherwise, if a plugin is built in a mode that is incompatible with <i>Qt Designer</i>, it won't be loaded and installed.</p>
<p>The header and source files for the widget are declared in the usual way:</p>
<pre> HEADERS += multipagewidget.h \
            multipagewidgetplugin.h \
            multipagewidgetcontainerextension.h \
            multipagewidgetextensionfactory.h

 SOURCES += multipagewidget.cpp \
            multipagewidgetplugin.cpp \
            multipagewidgetcontainerextension.cpp \
            multipagewidgetextensionfactory.cpp</pre>
<p>We provide an implementation of the plugin interface so that <i>Qt Designer</i> can use the custom widget. In this particular example we also provide implementations of the container extension interface and the extension factory.</p>
<p>It is important to ensure that the plugin is installed in a location that is searched by <i>Qt Designer</i>. We do this by specifying a target path for the project and adding it to the list of items to install:</p>
<pre> target.path = $$[QT_INSTALL_PLUGINS]/designer
 INSTALLS += target</pre>
<p>The container extension is created as a library, and will be installed alongside the other <i>Qt Designer</i> plugins when the project is installed (using <tt>make install</tt> or an equivalent installation procedure).</p>
<p>Note that if you want the plugins to appear in a Visual Studio integration, the plugins must be built in release mode and their libraries must be copied into the plugin directory in the install path of the integration (for an example, see <tt>C:/program files/trolltech as/visual studio integration/plugins</tt>).</p>
<p>For more information about plugins, see the <a href="plugins-howto.html">How to Create Qt Plugins</a> documentation.</p>
<a name="multipagewidgetplugin-class-definition"></a>
<h2>MultiPageWidgetPlugin Class Definition</h2>
<p>The <tt>MultiPageWidgetPlugin</tt> class exposes the <tt>MultiPageWidget</tt> class to <i>Qt Designer</i>. Its definition is similar to the <a href="designer-customwidgetplugin.html">Custom Widget Plugin</a> example's plugin class which is explained in detail. The parts of the class definition that is specific to this particular custom widget is the class name and a couple of private slots:</p>
<pre> #ifndef MULTIPAGEWIDGETPLUGIN_H
 #define MULTIPAGEWIDGETPLUGIN_H

 #include &lt;QtDesigner/QDesignerCustomWidgetInterface&gt;

 class QIcon;
 class QWidget;

 class MultiPageWidgetPlugin: public QObject, public QDesignerCustomWidgetInterface
 {
     Q_OBJECT
     Q_INTERFACES(QDesignerCustomWidgetInterface)
 public:
     MultiPageWidgetPlugin(QObject *parent = 0);

     QString name() const;
     QString group() const;
     QString toolTip() const;
     QString whatsThis() const;
     QString includeFile() const;
     QIcon icon() const;
     bool isContainer() const;
     QWidget *createWidget(QWidget *parent);
     bool isInitialized() const;
     void initialize(QDesignerFormEditorInterface *formEditor);
     QString domXml() const;

 private slots:
     void currentIndexChanged(int index);
     void pageTitleChanged(const QString &amp;title);

 private:
     bool initialized;
 };

 #endif</pre>
<p>The plugin class provides <i>Qt Designer</i> with basic information about our plugin, such as its class name and its include file. Furthermore it knows how to create instances of the <tt>MultiPageWidget</tt> widget. <tt>MultiPageWidgetPlugin</tt> also defines the <a href="qdesignercustomwidgetinterface.html#initialize">initialize()</a> function which is called after the plugin is loaded into <i>Qt Designer</i>. The function's <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> parameter provides the plugin with a gateway to all of <i>Qt Designer</i>'s API's.</p>
<p>In the case of a multipage widget such as ours, we must also implement two private slots, currentIndexChanged() and pageTitleChanged(), to be able to update <i>Qt Designer</i>'s property editor whenever the user views another page or changes one of the page titles. To be able to give each page their own title, we have chosen to use the <a href="qwidget.html#windowTitle-prop">QWidget::windowTitle</a> property to store the page title (for more information see the MultiPageWidget class <a href="designer-containerextension-multipagewidget-cpp.html">implementation</a>). Note that currently there is no way of adding a custom property (e.g&#x2e;, a page title) to the pages without using a predefined property as placeholder.</p>
<p>The <tt>MultiPageWidgetPlugin</tt> class inherits from both <a href="qobject.html">QObject</a> and <a href="qdesignercustomwidgetinterface.html">QDesignerCustomWidgetInterface</a>. It is important to remember, when using multiple inheritance, to ensure that all the interfaces (i.e&#x2e; the classes that doesn't inherit <a href="qobject.html#Q_OBJECT">Q_OBJECT</a>) are made known to the meta object system using the <a href="qobject.html#Q_INTERFACES">Q_INTERFACES</a>() macro. This enables <i>Qt Designer</i> to use <a href="qobject.html#qobject_cast">qobject_cast</a>() to query for supported interfaces using nothing but a <a href="qobject.html">QObject</a> pointer.</p>
<a name="multipagewidgetplugin-class-implementation"></a>
<h2>MultiPageWidgetPlugin Class Implementation</h2>
<p>The MultiPageWidgetPlugin class implementation is in most parts equivalent to the <a href="designer-customwidgetplugin.html">Custom Widget Plugin</a> example's plugin class:</p>
<pre> MultiPageWidgetPlugin::MultiPageWidgetPlugin(QObject *parent)
     :QObject(parent)
 {
     initialized = false;
 }

 QString MultiPageWidgetPlugin::name() const
 {
     return QLatin1String(&quot;MultiPageWidget&quot;);
 }

 QString MultiPageWidgetPlugin::group() const
 {
     return QLatin1String(&quot;Display Widgets [Examples]&quot;);
 }

 QString MultiPageWidgetPlugin::toolTip() const
 {
     return QString();
 }

 QString MultiPageWidgetPlugin::whatsThis() const
 {
     return QString();
 }

 QString MultiPageWidgetPlugin::includeFile() const
 {
     return QLatin1String(&quot;multipagewidget.h&quot;);
 }

 QIcon MultiPageWidgetPlugin::icon() const
 {
     return QIcon();
 }


 bool MultiPageWidgetPlugin::isInitialized() const
 {
     return initialized;
 }</pre>
<p>One of the functions that differ is the isContainer() function which returns true in this example since our custom widget is intended to be used as a container.</p>
<pre> bool MultiPageWidgetPlugin::isContainer() const
 {
     return true;
 }</pre>
<p>Another function that differ is the function creating our custom widget:</p>
<pre> QWidget *MultiPageWidgetPlugin::createWidget(QWidget *parent)
 {
     MultiPageWidget *widget = new MultiPageWidget(parent);
     connect(widget, SIGNAL(currentIndexChanged(int)),
             this, SLOT(currentIndexChanged(int)));
     connect(widget, SIGNAL(pageTitleChanged(QString)),
             this, SLOT(pageTitleChanged(QString)));
     return widget;
 }</pre>
<p>In addition to create and return the widget, we connect our custom container widget's currentIndexChanged() signal to the plugin's currentIndexChanged() slot to ensure that <i>Qt Designer</i>'s property editor is updated whenever the user views another page. We also connect the widget's pageTitleChanged() signal to the plugin's pageTitleChanged() slot.</p>
<p>The currentIndexChanged() slot is called whenever our custom widget's currentIndexChanged() <i>signal</i> is emitted, i.e&#x2e; whenever the user views another page:</p>
<pre> void MultiPageWidgetPlugin::currentIndexChanged(int index)
 {
     Q_UNUSED(index);
     MultiPageWidget *widget = qobject_cast&lt;MultiPageWidget*&gt;(sender());</pre>
<p>First, we retrieve the object emitting the signal using the <a href="qobject.html#sender">QObject::sender</a>() and <a href="qobject.html#qobject_cast">qobject_cast</a>() functions. If it's called in a slot activated by a signal, <a href="qobject.html#sender">QObject::sender</a>() returns a pointer to the object that sent the signal; otherwise it returns 0.</p>
<pre>     if (widget) {
         QDesignerFormWindowInterface *form = QDesignerFormWindowInterface::findFormWindow(widget);
         if (form)
             form-&gt;emitSelectionChanged();
     }
 }</pre>
<p>Once we have the widget we can update the property editor. <i>Qt Designer</i> uses the <a href="qdesignerpropertysheetextension.html">QDesignerPropertySheetExtension</a> class to feed its property editor, and whenever a widget is selected in its workspace, Qt Designer will query for the widget's property sheet extension and update the property editor.</p>
<p>So what we want to achieve is to notify <i>Qt Designer</i> that our widget's <i>internal</i> selection has changed: First we use the static <a href="qdesignerformwindowinterface.html#findFormWindow">QDesignerFormWindowInterface::findFormWindow</a>() function to retrieve the <a href="qdesignerformwindowinterface.html">QDesignerFormWindowInterface</a> object containing the widget. The <a href="qdesignerformwindowinterface.html">QDesignerFormWindowInterface</a> class allows you to query and manipulate form windows appearing in Qt Designer's workspace. Then, all we have to do is to emit its <a href="qdesignerformwindowinterface.html#emitSelectionChanged">emitSelectionChanged()</a> signal, forcing an update of the property editor.</p>
<p>When changing a page title a generic refresh of the property editor is not enough because it is actually the page's property extension that needs to be updated. For that reason we need to access the <a href="qdesignerpropertysheetextension.html">QDesignerPropertySheetExtension</a> object for the page which title we want to change. The <a href="qdesignerpropertysheetextension.html">QDesignerPropertySheetExtension</a> class also allows you to manipulate a widget's properties, but to get hold of the extension we must first retrieve access to <i>Qt Designer</i>'s extension manager:</p>
<pre> void MultiPageWidgetPlugin::pageTitleChanged(const QString &amp;title)
 {
     Q_UNUSED(title);
     MultiPageWidget *widget = qobject_cast&lt;MultiPageWidget*&gt;(sender());
     if (widget) {
         QWidget *page = widget-&gt;widget(widget-&gt;currentIndex());
         QDesignerFormWindowInterface *form;
         form = QDesignerFormWindowInterface::findFormWindow(widget);</pre>
<p>Again we first retrieve the widget emitting the signal, using the <a href="qobject.html#sender">QObject::sender</a>() and <a href="qobject.html#qobject_cast">qobject_cast</a>() functions. Then we retrieve the current page from the widget that emitted the signal, and we use the static <a href="qdesignerformwindowinterface.html#findFormWindow">QDesignerFormWindowInterface::findFormWindow</a>() function to retrieve the form containing our widget.</p>
<pre>             QDesignerFormEditorInterface *editor = form-&gt;core();
             QExtensionManager *manager = editor-&gt;extensionManager();</pre>
<p>Now that we have the form window, the <a href="qdesignerformwindowinterface.html">QDesignerFormWindowInterface</a> class provides the <a href="qdesignerformwindowinterface.html#core">core()</a> function which returns the current <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> object. The <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> class allows you to access Qt Designer's various components. In particular, the <a href="qdesignerformeditorinterface.html#extensionManager">QDesignerFormEditorInterface::extensionManager</a>() function returns a reference to the current extension manager.</p>
<pre>             QDesignerPropertySheetExtension *sheet;
             sheet = qt_extension&lt;QDesignerPropertySheetExtension*&gt;(manager, page);
             const int propertyIndex = sheet-&gt;indexOf(QLatin1String(&quot;windowTitle&quot;));
             sheet-&gt;setChanged(propertyIndex, true);
         }
     }
 }</pre>
<p>Once we have the extension manager we can update the extension sheet: First we retrieve the property extension for the page which title we want to change, using the <a href="qextensionmanager.html#qt_extension">qt_extension</a>() function. Then we retrieve the index for the page title using the <a href="qdesignerpropertysheetextension.html#indexOf">QDesignerPropertySheetExtension::indexOf</a>() function. As previously mentioned, we have chosen to use the <a href="qwidget.html#windowTitle-prop">QWidget::windowTitle</a> property to store the page title (for more information see the MultiPageWidget class <a href="designer-containerextension-multipagewidget-cpp.html">implementation</a>). Finally, we implicitly force an update of the page's property sheet by calling the <a href="qdesignerpropertysheetextension.html#setChanged">QDesignerPropertySheetExtension::setChanged</a>() function.</p>
<pre> void MultiPageWidgetPlugin::initialize(QDesignerFormEditorInterface *formEditor)
 {
     if (initialized)
         return;</pre>
<p>Note also the initialize() function: The <tt>initialize()</tt> function takes a <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> object as argument.</p>
<pre>     QExtensionManager *manager = formEditor-&gt;extensionManager();</pre>
<p>When creating extensions associated with custom widget plugins, we need to access <i>Qt Designer</i>'s current extension manager which we retrieve from the <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> parameter.</p>
<p>In addition to allowing you to manipulate a widget's properties, the <a href="qextensionmanager.html">QExtensionManager</a> class provides extension management facilities for <i>Qt Designer</i>. Using <i>Qt Designer</i>'s current extension manager you can retrieve the extension for a given object. You can also register and unregister an extension for a given object. Remember that an extension is an object which modifies the behavior of <i>Qt Designer</i>.</p>
<p>When registrering an extension, it is actually the associated extension factory that is registered. In <i>Qt Designer</i>, extension factories are used to look up and create named extensions as they are required. So, in this example, the container extension itself is not created until <i>Qt Designer</i> must know whether the associated widget is a container, or not.</p>
<pre>     QExtensionFactory *factory = new MultiPageWidgetExtensionFactory(manager);

     Q_ASSERT(manager != 0);
     manager-&gt;registerExtensions(factory, Q_TYPEID(QDesignerContainerExtension));

     initialized = true;
 }</pre>
<p>We create a <tt>MultiPageWidgetExtensionFactory</tt> object that we register using <i>Qt Designer</i>'s current <a href="qextensionmanager.html">extension manager</a> retrieved from the <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> parameter. The first argument is the newly created factory and the second argument is an extension identifier which is a string. The <tt>Q_TYPEID()</tt> macro simply convert the string into a <a href="qlatin1string.html">QLatin1String</a>.</p>
<p>The <tt>MultiPageWidgetExtensionFactory</tt> class is a subclass of <a href="qextensionfactory.html">QExtensionFactory</a>. When <i>Qt Designer</i> must know whether a widget is a container, or not, <i>Qt Designer</i>'s extension manager will run through all its registered factories invoking the first one which is able to create a container extension for that widget. This factory will in turn create a <tt>MultiPageWidgetExtension</tt> object.</p>
<pre> QString MultiPageWidgetPlugin::domXml() const
 {
     return QLatin1String(&quot;\
 &lt;ui language=\&quot;c++\&quot;&gt;\
     &lt;widget class=\&quot;MultiPageWidget\&quot; name=\&quot;multipagewidget\&quot;&gt;\
         &lt;widget class=\&quot;QWidget\&quot; name=\&quot;page\&quot; /&gt;\
     &lt;/widget&gt;\
     &lt;customwidgets&gt;\
         &lt;customwidget&gt;\
             &lt;class&gt;MultiPageWidget&lt;/class&gt;\
             &lt;extends&gt;QWidget&lt;/extends&gt;\
             &lt;addpagemethod&gt;addPage&lt;/addpagemethod&gt;\
         &lt;/customwidget&gt;\
     &lt;/customwidgets&gt;\
 &lt;/ui&gt;&quot;);
 }</pre>
<p>Finally, take a look at the <tt>domXml()</tt> function. This function includes default settings for the widget in the standard XML format used by <i>Qt Designer</i>. In this case, we specify the container's first page; any inital pages of a multi-page widget must be specified within this function.</p>
<pre> Q_EXPORT_PLUGIN2(containerextension, MultiPageWidgetPlugin)</pre>
<p>Remember to use the <a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>() macro to export the MultiPageWidgetPlugin class for use with Qt's plugin handling classes: This macro ensures that <i>Qt Designer</i> can access and construct the custom widget. Without this macro, there is no way for <i>Qt Designer</i> to use the widget.</p>
<a name="multipagewidgetextensionfactory-class-definition"></a>
<h2>MultiPageWidgetExtensionFactory Class Definition</h2>
<p>The <tt>MultiPageWidgetExtensionFactory</tt> class inherits <a href="qextensionfactory.html">QExtensionFactory</a> which provides a standard extension factory for <i>Qt Designer</i>.</p>
<pre> class MultiPageWidgetExtensionFactory: public QExtensionFactory
 {
     Q_OBJECT

 public:
     MultiPageWidgetExtensionFactory(QExtensionManager *parent = 0);

 protected:
     QObject *createExtension(QObject *object, const QString &amp;iid, QObject *parent) const;
 };</pre>
<p>The subclass's purpose is to reimplement the <a href="qextensionfactory.html#createExtension">QExtensionFactory::createExtension</a>() function, making it able to create a <tt>MultiPageWidget</tt> container extension.</p>
<a name="multipagewidgetextensionfactory-class-implementation"></a>
<h2>MultiPageWidgetExtensionFactory Class Implementation</h2>
<p>The class constructor simply calls the <a href="qextensionfactory.html">QExtensionFactory</a> base class constructor:</p>
<pre> MultiPageWidgetExtensionFactory::MultiPageWidgetExtensionFactory(QExtensionManager *parent)
     : QExtensionFactory(parent)
 {}</pre>
<p>As described above, the factory is invoked when <i>Qt Designer</i> must know whether the associated widget is a container, or not.</p>
<pre> QObject *MultiPageWidgetExtensionFactory::createExtension(QObject *object,
                                                           const QString &amp;iid,
                                                           QObject *parent) const
 {
     MultiPageWidget *widget = qobject_cast&lt;MultiPageWidget*&gt;(object);

     if (widget &amp;&amp; (iid == Q_TYPEID(QDesignerContainerExtension))) {
         return new MultiPageWidgetContainerExtension(widget, parent);
     } else {
         return 0;
     }
 }</pre>
<p><i>Qt Designer</i>'s behavior is the same whether the requested extension is associated with a container, a member sheet, a property sheet or a task menu: Its extension manager runs through all its registered extension factories calling <tt>createExtension()</tt> for each until one responds by creating the requested extension.</p>
<p>So the first thing we do in <tt>MultiPageWidgetExtensionFactory::createExtension()</tt> is to check if the <a href="qobject.html">QObject</a>, for which the extension is requested, is in fact a <tt>MultiPageWidget</tt> object. Then we check if the requested extension is a container extension.</p>
<p>If the object is a MultiPageWidget requesting a container extension, we create and return a <tt>MultiPageWidgetExtension</tt> object. Otherwise, we simply return a null pointer, allowing <i>Qt Designer</i>'s extension manager to continue its search through the registered factories.</p>
<a name="multipagewidgetcontainerextension-class-definition"></a>
<h2>MultiPageWidgetContainerExtension Class Definition</h2>
<p>The <tt>MultiPageWidgetContainerExtension</tt> class inherits <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> which allows you to add (and delete) pages to a multi-page container plugin in <i>Qt Designer</i>.</p>
<pre> class MultiPageWidgetContainerExtension: public QObject,
                                          public QDesignerContainerExtension
 {
     Q_OBJECT
     Q_INTERFACES(QDesignerContainerExtension)

 public:
     MultiPageWidgetContainerExtension(MultiPageWidget *widget, QObject *parent);

     void addWidget(QWidget *widget);
     int count() const;
     int currentIndex() const;
     void insertWidget(int index, QWidget *widget);
     void remove(int index);
     void setCurrentIndex(int index);
     QWidget *widget(int index) const;

 private:
     MultiPageWidget *myWidget;
 };</pre>
<p>It is important to recognize that the <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> class only is intended to provide <i>Qt Designer</i> access to your custom multi-page widget's functionality; your custom multi-page widget must implement functionality corresponding to the extension's functions.</p>
<p>Note also that we implement a constructor that takes <i>two</i> arguments: the parent widget, and the <tt>MultiPageWidget</tt> object for which the task menu is requested.</p>
<p><a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> provides a couple of menu entries in <i>Qt Designer</i>'s task menu by default, enabling the user to add or delete pages to the associated custom multi-page widget in <i>Qt Designer</i>'s workspace.</p>
<a name="multipagewidgetcontainerextension-class-implementation"></a>
<h2>MultiPageWidgetContainerExtension Class Implementation</h2>
<p>In the constructor we save the reference to the <tt>MultiPageWidget</tt> object sent as parameter, i.e the widget associated with the extension. We will need this later to access the custom multi-page widget performing the requested actions.</p>
<pre> MultiPageWidgetContainerExtension::MultiPageWidgetContainerExtension(MultiPageWidget *widget,
                                                                      QObject *parent)
     :QObject(parent)
 {
     myWidget = widget;
 }</pre>
<p>To fully enable <i>Qt Designer</i> to manage and manipulate your custom multi-page widget, you must reimplement all the functions of <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a>:</p>
<pre> void MultiPageWidgetContainerExtension::addWidget(QWidget *widget)
 {
     myWidget-&gt;addPage(widget);
 }

 int MultiPageWidgetContainerExtension::count() const
 {
     return myWidget-&gt;count();
 }

 int MultiPageWidgetContainerExtension::currentIndex() const
 {
     return myWidget-&gt;currentIndex();
 }</pre>
<p>You must reimplement <a href="qdesignercontainerextension.html#addWidget">addWidget()</a> adding a given page to the container, <a href="qdesignercontainerextension.html#count">count()</a> returning the number of pages in the container, and <a href="qdesignercontainerextension.html#currentIndex">currentIndex()</a> returning the index of the currently selected page.</p>
<pre> void MultiPageWidgetContainerExtension::insertWidget(int index, QWidget *widget)
 {
     myWidget-&gt;insertPage(index, widget);
 }

 void MultiPageWidgetContainerExtension::remove(int index)
 {
     myWidget-&gt;removePage(index);
 }

 void MultiPageWidgetContainerExtension::setCurrentIndex(int index)
 {
     myWidget-&gt;setCurrentIndex(index);
 }

 QWidget* MultiPageWidgetContainerExtension::widget(int index) const
 {
     return myWidget-&gt;widget(index);
 }</pre>
<p>You must reimplement <a href="qdesignercontainerextension.html#insertWidget">insertWidget()</a> adding a given page to the container at a given index, <a href="qdesignercontainerextension.html#remove">remove()</a> deleting the page at a given index, <a href="qdesignercontainerextension.html#setCurrentIndex">setCurrentIndex()</a> setting the index of the currently selected page, and finally <a href="qdesignercontainerextension.html#widget">widget()</a> returning the page at a given index.</p>
<a name="multipagewidget-class-definition"></a>
<h2>MultiPageWidget Class Definition</h2>
<p>The MultiPageWidget class is a custom container widget that lets the user manipulate and populate its pages, and navigate among these using a combobox.</p>
<pre> class MultiPageWidget : public QWidget
 {
     Q_OBJECT
     Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex)
     Q_PROPERTY(QString pageTitle READ pageTitle WRITE setPageTitle STORED false)

 public:
     MultiPageWidget(QWidget *parent = 0);

     QSize sizeHint() const;

     int count() const;
     int currentIndex() const;
     QWidget *widget(int index);
     QString pageTitle() const;

 public slots:
     void addPage(QWidget *page);
     void insertPage(int index, QWidget *page);
     void removePage(int index);
     void setPageTitle(QString const &amp;newTitle);
     void setCurrentIndex(int index);

 signals:
     void currentIndexChanged(int index);
     void pageTitleChanged(const QString &amp;title);

 private:
     QStackedWidget *stackWidget;
     QComboBox *comboBox;
     QVBoxLayout *layout;
 };</pre>
<p>The main detail to observe is that your custom multi-page widget must implement functionality corresponding to the <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a>'s member functions since the <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> class only is intended to provide Qt Designer access to your custom multi-page widget's functionality.</p>
<p>In addition, we declare the <tt>currentIndex</tt> and <tt>pageTitle</tt> properties, and their associated set and get functions. By declaring these attributes as properties, we allow <i>Qt Designer</i> to manage them in the same way it manages the properties the MultiPageWidget widget inherits from <a href="qwidget.html">QWidget</a> and <a href="qobject.html">QObject</a>, for example featuring the property editor.</p>
<p>Note the <tt>STORED</tt> attribute in the declaration of the <tt>pageTitle</tt> property: The <tt>STORED</tt> attribute indicates persistence, i.e&#x2e; it declares whether the property's value must be remembered when storing an object's state. As mentioned above, we have chosen to store the page title using the <a href="qwidget.html#windowTitle-prop">QWidget::windowTitle</a> property to be able to give each page their own title. For that reason the <tt>pageTitle</tt> property is a &quot;fake&quot; property, provided for editing purposes, and doesn't need to be stored.</p>
<p>We must also implement and emit the currentIndexChanged() and pageTitleChanged() signals to ensure that <i>Qt Designer</i>'s property editor is updated whenever the user views another page or changes one of the page titles.</p>
<p>See the MultiPageWidget class <a href="designer-containerextension-multipagewidget-cpp.html">implementation</a> for more details.</p>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
<td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="40%" align="right"><div align="right">Qt 4.6.3</div></td>
</tr></table></div></address></body>
</html>