From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- doc/html/qaxbindable.html | 169 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 doc/html/qaxbindable.html (limited to 'doc/html/qaxbindable.html') diff --git a/doc/html/qaxbindable.html b/doc/html/qaxbindable.html new file mode 100644 index 0000000..f49d34a --- /dev/null +++ b/doc/html/qaxbindable.html @@ -0,0 +1,169 @@ + + + + + +QAxBindable Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

QAxBindable Class Reference
[QAxServer module]

+ +

The QAxBindable class provides an interface between a +QWidget and an ActiveX client. +More... +

This class is part of the Qt ActiveQt Extension. +

#include <qaxbindable.h> +

List of all member functions. +

Public Members

+ +

Static Public Members

+ +

Protected Members

+ +

Detailed Description

+

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

+ +The QAxBindable class provides an interface between a +QWidget and an ActiveX client. + +

+ +

The functions provided by this class allow an ActiveX control to +communicate property changes to a client application. Inherit +your control class from both QWidget (directly or indirectly) and +this class to get access to this class's functions. The meta object compiler requires you to inherit from +QWidget first. +

+    class MyActiveX : public QWidget, public QAxBindable
+    {
+        Q_OBJECT
+        Q_PROPERTY( int value READ value WRITE setValue )
+    public:
+        MyActiveX( QWidget *parent = 0, const char *name = 0 );
+        ...
+
+        int value() const;
+        void setValue( int );
+    };
+    
+ +

When implementing the property write function, use +requestPropertyChange() to get permission from the ActiveX client +application to change this property. When the property changes, +call propertyChanged() to notify the ActiveX client application +about the change. If a fatal error occurs in the control, use the +static reportError() function to notify the client. +

Use the interface returned by clientSite() to call the ActiveX +client. To implement additional COM interfaces in your ActiveX +control, reimplement createAggregate() to return a new object of a +QAxAggregated subclass. + +


Member Function Documentation

+

QAxBindable::QAxBindable () +

+Constructs an empty QAxBindable object. + +

QAxBindable::~QAxBindable () [virtual] +

+Destroys the QAxBindable object. + +

IUnknown * QAxBindable::clientSite () const [protected] +

+Returns a pointer to the client site interface for this ActiveX object, +or null if no client site has been set. +

Call QueryInterface() on the returned interface to get the interface you +want to call. + +

QAxAggregated * QAxBindable::createAggregate () [virtual] +

+Reimplement this function when you want to implement additional +COM interfaces in the ActiveX control, or when you want to provide +alternative implementations of COM interfaces. Return a new object +of a QAxAggregated subclass. +

The default implementation returns the null pointer. + +

void QAxBindable::propertyChanged ( const char * property ) [protected] +

+Call this function to notify the client that is hosting this +ActiveX control that the property property has been changed. +

This function is usually called at the end of the property's write +function. +

See also requestPropertyChange(). + +

void QAxBindable::reportError ( int code, const QString & src, const QString & desc, const QString & context = QString::null ) [static] +

+ +

Reports an error to the client application. code is a +control-defined error code. desc is a human-readable description +of the error intended for the application user. src is the name +of the source for the error, typically the ActiveX server name. context can be the location of a help file with more information +about the error. If context ends with a number in brackets, +e.g. [12], this number will be interpreted as the context ID in +the help file. + +

bool QAxBindable::requestPropertyChange ( const char * property ) [protected] +

+Call this function to request permission to change the property +property from the client that is hosting this ActiveX control. +Returns TRUE if the client allows the change; otherwise returns +FALSE. +

This function is usually called first in the write function for property, and writing is abandoned if the function returns FALSE. +

+    void MyActiveQt::setText( const QString &text )
+    {
+        if ( !requestPropertyChange( "text" ) )
+            return;
+
+        // update property
+
+        propertyChanged( "text" );
+    }
+    
+ +

See also propertyChanged(). + + +


+This file is part of the Qt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
Qt 3.3.8
+
+ -- cgit v1.2.3