From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/qaxbase.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/qaxbase.html') diff --git a/doc/html/qaxbase.html b/doc/html/qaxbase.html index 5e756fa76..574fc1c1e 100644 --- a/doc/html/qaxbase.html +++ b/doc/html/qaxbase.html @@ -99,7 +99,7 @@ become available as TQt properties and slots.

Properties exposed by the object's IDispatch implementation can be read and written through the property system provided by the TQt -Object Model (both subclasses are TQObjects, so you can use setProperty() and property() as with TQObject). Properties +Object Model (both subclasses are TQObjects, so you can use setProperty() and property() as with TQObject). Properties with multiple parameters are not supported.

     activeX->setProperty( "text", "some text" );
@@ -123,7 +123,7 @@ standard TQt signals.
 

TQAxBase transparently converts between COM data types and the equivalent TQt data types. Some COM types have no equivalent TQt data structure.

Supported COM datatypes are listed in the first column of following table. -The second column is the TQt type that can be used with the TQObject property +The second column is the TQt type that can be used with the TQObject property functions. The third column is the TQt type that is used in the prototype of generated signals and slots for in-parameters, and the last column is the TQt type that is used in the prototype of signals and slots for out-parameters. @@ -240,8 +240,8 @@ use the TQAxBase API like this:

     TQAxObject object( "<CLSID>" );
 
-    TQString text = object.property( "text" ).toString();
-    object.setProperty( "font", TQFont( "Times New Roman", 12 ) );
+    TQString text = object.property( "text" ).toString();
+    object.setProperty( "font", TQFont( "Times New Roman", 12 ) );
 
     connect( this, TQ_SIGNAL(clicked(int)), &object, TQ_SLOT(showColumn(int)) );
     bool ok = object.dynamicCall( "addColumn(const TQString&)", "Column 1" ).toBool();
@@ -353,7 +353,7 @@ the method, or an invalid TQVariant if the method
 a value or when the function call failed.
 

If function is a method of the object the string must be provided as the full prototype, for example as it would be written in a -TQObject::connect() call. +TQObject::connect() call.

     activeX->dynamicCall( "Navigate(const TQString&)", "www.trolltech.com" );
     
@@ -376,7 +376,7 @@ otherwise the getter is called.
Note that it is faster to get and set properties using -TQObject::property() and TQObject::setProperty(). +TQObject::property() and TQObject::setProperty().

It is only possible to call functions through dynamicCall() that have parameters or return values of datatypes supported by TQVariant. See the TQAxBase class documentation for a list of -- cgit v1.2.1