From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- doc/html/qaxwidget.html | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'doc/html/qaxwidget.html') diff --git a/doc/html/qaxwidget.html b/doc/html/qaxwidget.html index 9870c0b4..2f3c5a83 100644 --- a/doc/html/qaxwidget.html +++ b/doc/html/qaxwidget.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } More...

This class is part of the TQt ActiveTQt Extension.

#include <qaxwidget.h> -

Inherits TQWidget and TQAxBase. +

Inherits TQWidget and TQAxBase.

List of all member functions.

Public Members


Detailed Description

-

This class is defined in the TQt ActiveTQt Extension, which can be found in the qt/extensions directory. It is not included in the main TQt API. +

This class is defined in the TQt ActiveTQt Extension, which can be found in the qt/extensions directory. It is not included in the main TQt API.

-The TQAxWidget class is a TQWidget that wraps an ActiveX control. +The TQAxWidget class is a TQWidget that wraps an ActiveX control.

@@ -71,7 +71,7 @@ slots and signals. The base class TQAxBase provides a access the ActiveX directly through the IUnknown pointer.

TQAxWidget is a TQWidget and can be used as such, e.g. it can be organized in a widget hierarchy, receive events or act as an event -filter. Standard widget properties, e.g. enabled are supported, but it depends on the ActiveX +filter. Standard widget properties, e.g. enabled are supported, but it depends on the ActiveX control to implement support for ambient properties like e.g. palette or font. TQAxWidget tries to provide the necessary hints.

Warning: @@ -80,24 +80,24 @@ in the subclass (the generated moc-file will not comp cannot add further signals, slots or properties. This limitation is due to the metaobject information generated in runtime. To work around this problem, aggregate the TQAxWidget as a member of the -TQObject subclass. +TQObject subclass.


Member Function Documentation

-

TQAxWidget::TQAxWidget ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 ) +

TQAxWidget::TQAxWidget ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )

-Creates an empty TQAxWidget widget and propagates parent, name and f to the TQWidget constructor. To initialize a control, +Creates an empty TQAxWidget widget and propagates parent, name and f to the TQWidget constructor. To initialize a control, call setControl. -

TQAxWidget::TQAxWidget ( const TQString & c, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 ) +

TQAxWidget::TQAxWidget ( const TQString & c, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )

Creates an TQAxWidget widget and initializes the ActiveX control c. -parent, name and f are propagated to the TQWidget contructor. +parent, name and f are propagated to the TQWidget contructor.

See also control. -

TQAxWidget::TQAxWidget ( IUnknown * iface, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 ) +

TQAxWidget::TQAxWidget ( IUnknown * iface, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )

Creates a TQAxWidget that wraps the COM object referenced by iface. -parent, name and f are propagated to the TQWidget contructor. +parent, name and f are propagated to the TQWidget contructor.

TQAxWidget::~TQAxWidget ()

@@ -116,18 +116,18 @@ reimplementation to have the control embedded by the default client side. Creates the client site for the ActiveX control, and returns TRUE if the control could be embedded successfully, otherwise returns FALSE. -

TQVariant TQAxBase::dynamicCall ( const TQCString & function, const TQVariant & var1 = TQVariant ( ), const TQVariant & var2 = TQVariant ( ), const TQVariant & var3 = TQVariant ( ), const TQVariant & var4 = TQVariant ( ), const TQVariant & var5 = TQVariant ( ), const TQVariant & var6 = TQVariant ( ), const TQVariant & var7 = TQVariant ( ), const TQVariant & var8 = TQVariant ( ) ) +

TQVariant TQAxBase::dynamicCall ( const TQCString & function, const TQVariant & var1 = TQVariant ( ), const TQVariant & var2 = TQVariant ( ), const TQVariant & var3 = TQVariant ( ), const TQVariant & var4 = TQVariant ( ), const TQVariant & var5 = TQVariant ( ), const TQVariant & var6 = TQVariant ( ), const TQVariant & var7 = TQVariant ( ), const TQVariant & var8 = TQVariant ( ) )

Calls the COM object's method function, passing the parameters var1, var1, var2, var3, var4, var5, var6, var7 and var8, and returns the value returned by -the method, or an invalid TQVariant if the method does not return +the method, or an invalid TQVariant if the method does not return 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" );
+    activeX->dynamicCall( "Navigate(const TQString&)", "www.trolltech.com" );
     

Alternatively a function can be called passing the parameters embedded @@ -144,14 +144,14 @@ property. The property setter is called when var1 is a valid TQVariant, otherwise the getter is called.

     activeX->dynamicCall( "Value", 5 );
-    TQString text = activeX->dynamicCall( "Text" ).toString();
+    TQString text = activeX->dynamicCall( "Text" ).toString();
     
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 +TQVariant. See the TQAxBase class documentation for a list of supported and unsupported datatypes. If you want to call functions that have unsupported datatypes in the parameter list, use queryInterface() to retrieve the appropriate COM interface, and @@ -168,18 +168,18 @@ use the function directly.

This is also more efficient.

Example: qutlook/centralwidget.cpp. -

TQVariant TQAxBase::dynamicCall ( const TQCString & function, TQValueList<TQVariant> & vars ) +

TQVariant TQAxBase::dynamicCall ( const TQCString & function, TQValueList<TQVariant> & vars )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Calls the COM object's method function, passing the parameters in vars, and returns the value returned by the method. If the method does not return a value or when the function call failed this function returns an invalid -TQVariant object. +TQVariant object.

The TQVariant objects in vars are updated when the method has out-parameters. -

TQAxObject * TQAxBase::querySubObject ( const TQCString & name, const TQVariant & var1 = TQVariant ( ), const TQVariant & var2 = TQVariant ( ), const TQVariant & var3 = TQVariant ( ), const TQVariant & var4 = TQVariant ( ), const TQVariant & var5 = TQVariant ( ), const TQVariant & var6 = TQVariant ( ), const TQVariant & var7 = TQVariant ( ), const TQVariant & var8 = TQVariant ( ) ) +

TQAxObject * TQAxBase::querySubObject ( const TQCString & name, const TQVariant & var1 = TQVariant ( ), const TQVariant & var2 = TQVariant ( ), const TQVariant & var3 = TQVariant ( ), const TQVariant & var4 = TQVariant ( ), const TQVariant & var5 = TQVariant ( ), const TQVariant & var6 = TQVariant ( ), const TQVariant & var7 = TQVariant ( ), const TQVariant & var8 = TQVariant ( ) )

Returns a pointer to a TQAxObject wrapping the COM object provided by the method or property name, passing passing the parameters @@ -219,7 +219,7 @@ the virtual keycode (ie. VK_TAB). ActiveX control, which then either processes the event or passes the event on to TQt.

If the function returns FALSE the processing of the key event is -ignored by ActiveTQt, ie. the ActiveX control might handle it or +ignored by ActiveTQt, ie. the ActiveX control might handle it or not.

The default implementation returns TRUE for the following cases:

-- cgit v1.2.1