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/plugins-howto.doc | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/plugins-howto.doc')
-rw-r--r-- | doc/plugins-howto.doc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/plugins-howto.doc b/doc/plugins-howto.doc index a9ea466c3..436901c8b 100644 --- a/doc/plugins-howto.doc +++ b/doc/plugins-howto.doc @@ -73,7 +73,7 @@ by default in the standard plugin directory. \i \l QTextCodecPlugin \i \c{pluginsbase/codecs} <sup>*</sup> \row -\i \l QWidgetPlugin +\i \l TQWidgetPlugin \i \c{pluginsbase/designer} <sup>*</sup> \endtable @@ -113,7 +113,7 @@ to make available as a plugin. The required code is straightforward: \endcode (Note that QStyleFactory is case-insensitive, and the lower case -version of the key is used; other factories, e.g. QWidgetFactory, are +version of the key is used; other factories, e.g. TQWidgetFactory, are case sensitive.) The constructor and destructor do not need to do anything, so are left @@ -140,10 +140,10 @@ style explicitly in code. To apply a style, use code like this: Some plugin classes require additional functions to be implemented. See the \link designer-manual.book TQt Designer manual's\endlink, 'Creating Custom Widgets' section in the 'Creating Custom Widgets' -chapter, for a complete example of a QWidgetPlugin, which implements +chapter, for a complete example of a TQWidgetPlugin, which implements extra functions to integrate the plugin into \e{Qt Designer}. The -\l QWidgetFactory class provides additional information on -QWidgetPlugins. +\l TQWidgetFactory class provides additional information on +TQWidgetPlugins. See the class documentation for details of the virtual functions that must be reimplemented for each type of plugin. |