summaryrefslogtreecommitdiffstats
path: root/doc/html/tqwidgetplugin.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/tqwidgetplugin.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqwidgetplugin.html')
-rw-r--r--doc/html/tqwidgetplugin.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/tqwidgetplugin.html b/doc/html/tqwidgetplugin.html
index 366c57c8..c05d569b 100644
--- a/doc/html/tqwidgetplugin.html
+++ b/doc/html/tqwidgetplugin.html
@@ -80,7 +80,7 @@ Destroys the widget plugin.
<p> You never have to call this explicitly. TQt destroys a plugin
automatically when it is no longer used.
-<h3 class=fn><a href="tqwidget.html">TQWidget</a>&nbsp;* <a name="create"></a>TQWidgetPlugin::create ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [pure virtual]</tt>
+<h3 class=fn><a href="tqwidget.html">TQWidget</a>&nbsp;* <a name="create"></a>TQWidgetPlugin::create ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [pure virtual]</tt>
</h3>
<p> Creates and returns a <a href="tqwidget.html">TQWidget</a> object for the widget key <em>key</em>.
@@ -88,31 +88,31 @@ The widget key is the class name of the required widget. The <em>name</em> and <
constructor.
<p> <p>See also <a href="#keys">keys</a>().
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="group"></a>TQWidgetPlugin::group ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="group"></a>TQWidgetPlugin::group ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
</h3>
Returns the group (toolbar name) that the custom widget of class
<em>key</em> should be part of when <em>TQt Designer</em> loads it.
-<p> The default implementation returns <a href="ntqstring.html#TQString-null">TQString::null</a>.
+<p> The default implementation returns <a href="tqstring.html#TQString-null">TQString::null</a>.
-<h3 class=fn><a href="ntqiconset.html">TQIconSet</a> <a name="iconSet"></a>TQWidgetPlugin::iconSet ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="ntqiconset.html">TQIconSet</a> <a name="iconSet"></a>TQWidgetPlugin::iconSet ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
</h3>
Returns the iconset that <em>TQt Designer</em> should use to represent
the custom widget of class <em>key</em> in the toolbar.
<p> The default implementation returns an null iconset.
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="includeFile"></a>TQWidgetPlugin::includeFile ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="includeFile"></a>TQWidgetPlugin::includeFile ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
</h3>
Returns the name of the include file that <em>TQt Designer</em> and <tt>uic</tt> should use to include the custom widget of class <em>key</em> in
generated code.
-<p> The default implementation returns <a href="ntqstring.html#TQString-null">TQString::null</a>.
+<p> The default implementation returns <a href="tqstring.html#TQString-null">TQString::null</a>.
-<h3 class=fn>bool <a name="isContainer"></a>TQWidgetPlugin::isContainer ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
+<h3 class=fn>bool <a name="isContainer"></a>TQWidgetPlugin::isContainer ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
</h3>
Returns TRUE if the custom widget of class <em>key</em> can contain
other widgets, e.g. like <a href="ntqframe.html">TQFrame</a>; otherwise returns FALSE.
<p> The default implementation returns FALSE.
-<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="keys"></a>TQWidgetPlugin::keys () const<tt> [pure virtual]</tt>
+<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="keys"></a>TQWidgetPlugin::keys () const<tt> [pure virtual]</tt>
</h3>
<p> Returns the list of widget keys this plugin supports.
@@ -120,18 +120,18 @@ other widgets, e.g. like <a href="ntqframe.html">TQFrame</a>; otherwise returns
implemented in the plugin.
<p> <p>See also <a href="#create">create</a>().
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="toolTip"></a>TQWidgetPlugin::toolTip ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="toolTip"></a>TQWidgetPlugin::toolTip ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
</h3>
Returns the text of the tooltip that <em>TQt Designer</em> should use
for the custom widget of class <em>key</em>'s toolbar button.
-<p> The default implementation returns <a href="ntqstring.html#TQString-null">TQString::null</a>.
+<p> The default implementation returns <a href="tqstring.html#TQString-null">TQString::null</a>.
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="whatsThis"></a>TQWidgetPlugin::whatsThis ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="whatsThis"></a>TQWidgetPlugin::whatsThis ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key ) const<tt> [virtual]</tt>
</h3>
Returns the text of the whatsThis text that <em>TQt Designer</em> should
use when the user requests whatsThis help for the custom widget of
class <em>key</em>.
-<p> The default implementation returns <a href="ntqstring.html#TQString-null">TQString::null</a>.
+<p> The default implementation returns <a href="tqstring.html#TQString-null">TQString::null</a>.
<!-- eof -->
<hr><p>