summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxbase.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/qaxbase.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/qaxbase.html')
-rw-r--r--doc/html/qaxbase.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/qaxbase.html b/doc/html/qaxbase.html
index f93e46113..5f49323d5 100644
--- a/doc/html/qaxbase.html
+++ b/doc/html/qaxbase.html
@@ -116,8 +116,8 @@ object's IDispatch implementation can be called directly using
<p> Outgoing events supported by the COM object are emitted as
standard TQt signals.
<p> <pre>
- connect( webBrowser, TQ_SIGNAL(TitleChanged(const <a href="ntqstring.html">TQString</a>&amp;)),
- this, TQ_SLOT(setCaption(const <a href="ntqstring.html">TQString</a>&amp;)) );
+ connect( webBrowser, TQ_SIGNAL(TitleChanged(const <a href="tqstring.html">TQString</a>&amp;)),
+ this, TQ_SLOT(setCaption(const <a href="tqstring.html">TQString</a>&amp;)) );
</pre>
<p> TQAxBase transparently converts between COM data types and the
@@ -141,7 +141,7 @@ type that is used in the prototype of signals and slots for out-parameters.
<tr bgcolor="#d0d0d0">
<td valign="top">BSTR
<td valign="top">TQString
-<td valign="top">const <a href="ntqstring.html">TQString</a>&
+<td valign="top">const <a href="tqstring.html">TQString</a>&
<td valign="top">TQString&
<tr bgcolor="#f0f0f0">
<td valign="top">char, short, int, long
@@ -186,7 +186,7 @@ type that is used in the prototype of signals and slots for out-parameters.
<tr bgcolor="#f0f0f0">
<td valign="top">SAFEARRAY(BSTR)
<td valign="top">TQStringList
-<td valign="top">const <a href="ntqstringlist.html">TQStringList</a>&
+<td valign="top">const <a href="tqstringlist.html">TQStringList</a>&
<td valign="top">TQStringList&
<tr bgcolor="#d0d0d0">
<td valign="top">VARIANT
@@ -240,11 +240,11 @@ use the TQAxBase API like this:
<pre>
<a href="qaxobject.html">TQAxObject</a> object( "&lt;CLSID&gt;" );
- <a href="ntqstring.html">TQString</a> text = object.<a href="tqobject.html#property">property</a>( "text" ).toString();
+ <a href="tqstring.html">TQString</a> text = object.<a href="tqobject.html#property">property</a>( "text" ).toString();
object.<a href="tqobject.html#setProperty">setProperty</a>( "font", TQFont( "Times New Roman", 12 ) );
connect( this, TQ_SIGNAL(clicked(int)), &amp;object, TQ_SLOT(showColumn(int)) );
- bool ok = object.<a href="#dynamicCall">dynamicCall</a>( "addColumn(const <a href="ntqstring.html">TQString</a>&amp;)", "Column 1" ).toBool();
+ bool ok = object.<a href="#dynamicCall">dynamicCall</a>( "addColumn(const <a href="tqstring.html">TQString</a>&amp;)", "Column 1" ).toBool();
<a href="tqvaluelist.html">TQValueList</a>&lt;TQVariant&gt; varlist;
<a href="tqvaluelist.html">TQValueList</a>&lt;TQVariant&gt; parameters;
@@ -306,7 +306,7 @@ Disconnects and destroys the COM object.
destructor to call <a href="#clear">clear</a>(), and call this implementation at the
end of your clear() function.
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="control"></a>TQAxBase::control () const
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="control"></a>TQAxBase::control () const
</h3><p>Returns the name of the COM object wrapped by this TQAxBase object.
See the <a href="qaxbase.html#control-prop">"control"</a> property for details.
<h3 class=fn>void <a name="disableClassInfo"></a>TQAxBase::disableClassInfo ()
@@ -355,7 +355,7 @@ a value or when the function call failed.
as the full prototype, for example as it would be written in a
<a href="tqobject.html#connect">TQObject::connect</a>() call.
<pre>
- activeX-&gt;dynamicCall( "Navigate(const <a href="ntqstring.html">TQString</a>&amp;)", "www.trolltech.com" );
+ activeX-&gt;dynamicCall( "Navigate(const <a href="tqstring.html">TQString</a>&amp;)", "www.trolltech.com" );
</pre>
<p> Alternatively a function can be called passing the parameters embedded
@@ -372,7 +372,7 @@ property. The property setter is called when <em>var1</em> is a valid TQVariant,
otherwise the getter is called.
<pre>
activeX-&gt;dynamicCall( "Value", 5 );
- <a href="ntqstring.html">TQString</a> text = activeX-&gt;dynamicCall( "Text" ).toString();
+ <a href="tqstring.html">TQString</a> text = activeX-&gt;dynamicCall( "Text" ).toString();
</pre>
Note that it is faster to get and set properties using
@@ -407,7 +407,7 @@ the function call failed this function returns an invalid
<p> The TQVariant objects in <em>vars</em> are updated when the method has
out-parameters.
-<h3 class=fn>void <a name="exception"></a>TQAxBase::exception ( int&nbsp;code, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;source, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;desc, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;help )<tt> [signal]</tt>
+<h3 class=fn>void <a name="exception"></a>TQAxBase::exception ( int&nbsp;code, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;source, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;desc, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;help )<tt> [signal]</tt>
</h3>
<p> This signal is emitted when the COM object throws an exception while called using the OLE automation
@@ -415,7 +415,7 @@ interface IDispatch. <em>code</em>, <em>source</em>, <em>desc</em> and <em>help<
provided by the COM server and can be used to provide useful feedback to the end user. <em>help</em> includes
the help file, and the help context ID in brackets, e.g. "filename [id]".
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="generateDocumentation"></a>TQAxBase::generateDocumentation ()
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="generateDocumentation"></a>TQAxBase::generateDocumentation ()
</h3>
<p> Returns a rich text string with documentation for the
@@ -486,7 +486,7 @@ of the COM object returns all properties, or that the properties
returned are the same as those available through the IDispatch
interface.
-<h3 class=fn>void <a name="propertyChanged"></a>TQAxBase::propertyChanged ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;name )<tt> [signal]</tt>
+<h3 class=fn>void <a name="propertyChanged"></a>TQAxBase::propertyChanged ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name )<tt> [signal]</tt>
</h3>
<p> If the COM object supports property notification, this signal gets
@@ -539,7 +539,7 @@ this method to navigate the hierarchy of the object model, e.g.
<p>Example: <a href="qaxcontainer-example-qutlook.html#x2721">qutlook/centralwidget.cpp</a>.
-<h3 class=fn>bool <a name="setControl"></a>TQAxBase::setControl ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp; )
+<h3 class=fn>bool <a name="setControl"></a>TQAxBase::setControl ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp; )
</h3><p>Sets the name of the COM object wrapped by this TQAxBase object.
See the <a href="qaxbase.html#control-prop">"control"</a> property for details.
<h3 class=fn>void <a name="setPropertyBag"></a>TQAxBase::setPropertyBag ( const&nbsp;<a href="qaxbase.html#PropertyBag-enum">PropertyBag</a>&nbsp;&amp;&nbsp;bag )
@@ -563,7 +563,7 @@ Depending on the control implementation this setting might be
ignored for some properties.
<p> <p>See also <a href="#propertyWritable">propertyWritable</a>() and <a href="#propertyChanged">propertyChanged</a>().
-<h3 class=fn>void <a name="signal"></a>TQAxBase::signal ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;name, int&nbsp;argc, void&nbsp;*&nbsp;argv )<tt> [signal]</tt>
+<h3 class=fn>void <a name="signal"></a>TQAxBase::signal ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name, int&nbsp;argc, void&nbsp;*&nbsp;argv )<tt> [signal]</tt>
</h3>
<p> This generic signal gets emitted when the COM object issues the
@@ -573,10 +573,10 @@ parameter values (DISPPARAMS.rgvarg). Note that the order of parameter
values is turned around, ie. the last element of the array is the first
parameter in the function.
<p> <pre>
- void Receiver::slot( const <a href="ntqstring.html">TQString</a> &amp;name, int argc, void *argv )
+ void Receiver::slot( const <a href="tqstring.html">TQString</a> &amp;name, int argc, void *argv )
{
VARIANTARG *params = (VARIANTARG*)argv;
- if ( name.<a href="ntqstring.html#startsWith">startsWith</a>( "BeforeNavigate2(" ) ) {
+ if ( name.<a href="tqstring.html#startsWith">startsWith</a>( "BeforeNavigate2(" ) ) {
IDispatch *pDisp = params[argc-1].pdispVal;
VARIANTARG URL = *params[argc-2].pvarVal;
VARIANTARG Flags = *params[argc-3].pvarVal;
@@ -592,7 +592,7 @@ parameter in the function.
types. Otherwise, connect directly to the signal <em>name</em>.
<hr><h2>Property Documentation</h2>
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="control-prop"></a>control</h3>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="control-prop"></a>control</h3>
<p>This property holds the name of the COM object wrapped by this TQAxBase object.
<p>Setting this property initilializes the COM object. Any COM object
previously set is shut down.