diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/plugins-howto.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt-8ac0e970.tar.gz tqt-8ac0e970.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/plugins-howto.html')
-rw-r--r-- | doc/html/plugins-howto.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/plugins-howto.html b/doc/html/plugins-howto.html index de9973159..42ae7700c 100644 --- a/doc/html/plugins-howto.html +++ b/doc/html/plugins-howto.html @@ -58,7 +58,7 @@ by default in the standard plugin directory. <td valign="top"><a href="ntqtextcodecplugin.html">TQTextCodecPlugin</a> <td valign="top"><tt>pluginsbase/codecs</tt> <sup>*</sup> <tr bgcolor="#f0f0f0"> -<td valign="top"><a href="ntqwidgetplugin.html">TQWidgetPlugin</a> +<td valign="top"><a href="tqwidgetplugin.html">TQWidgetPlugin</a> <td valign="top"><tt>pluginsbase/designer</tt> <sup>*</sup> </table></center> <p> But where is the <tt>pluginsbase</tt> directory? When the application is @@ -94,7 +94,7 @@ to make available as a plugin. The required code is straightforward: </pre> <p> (Note that <a href="ntqstylefactory.html">TQStyleFactory</a> is case-insensitive, and the lower case -version of the key is used; other factories, e.g. <a href="ntqwidgetfactory.html">TQWidgetFactory</a>, are +version of the key is used; other factories, e.g. <a href="tqwidgetfactory.html">TQWidgetFactory</a>, are case sensitive.) <p> The constructor and destructor do not need to do anything, so are left empty. There are only two virtual functions that must be implemented. @@ -118,9 +118,9 @@ style explicitly in code. To apply a style, use code like this: <p> Some plugin classes require additional functions to be implemented. See the <a href="designer-manual.html">TQt Designer manual's</a>, 'Creating Custom Widgets' section in the 'Creating Custom Widgets' -chapter, for a complete example of a <a href="ntqwidgetplugin.html">TQWidgetPlugin</a>, which implements +chapter, for a complete example of a <a href="tqwidgetplugin.html">TQWidgetPlugin</a>, which implements extra functions to integrate the plugin into <em>TQt Designer</em>. The -<a href="ntqwidgetfactory.html">TQWidgetFactory</a> class provides additional information on +<a href="tqwidgetfactory.html">TQWidgetFactory</a> class provides additional information on TQWidgetPlugins. <p> See the class documentation for details of the virtual functions that must be reimplemented for each type of plugin. |