From 7608f0043b6dfc0b1adcaa8912793e1d3fe7b636 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 20 Oct 2012 20:01:48 -0500 Subject: Automated update from Qt3 --- doc/html/qaxserver.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'doc/html/qaxserver.html') diff --git a/doc/html/qaxserver.html b/doc/html/qaxserver.html index 84d939fe..8ab281cb 100644 --- a/doc/html/qaxserver.html +++ b/doc/html/qaxserver.html @@ -388,9 +388,9 @@ or any existing TQWidget subclass:

The TQ_OBJECT macro is required to provide the meta object information about the widget to the ActiveTQt framework. -Use the Q_PROPERTY macro to declare properties for the ActiveX control: +Use the TQ_PROPERTY macro to declare properties for the ActiveX control:

-        Q_PROPERTY( int value READ value WRITE setValue )
+        TQ_PROPERTY( int value READ value WRITE setValue )
     

Declare a standard TQWidget constructor taking a parent widget and a name, @@ -593,7 +593,7 @@ slots are: TQPoint& [in, out] struct TQPoint (user defined) -

Also supported are exported enums and sets (see Q_ENUMS and Q_SETS). +

Also supported are exported enums and sets (see TQ_ENUMS and TQ_SETS). The in-parameter types are also supported as return values.

Properties and signals/slots that have parameters using any other data types are ignored by the TQActiveX framework. @@ -800,7 +800,7 @@ ActiveTQt. Note that some clients support only in-process controls.

Microsoft Office applications are supported, but you need to register the controls as "Insertable" objects. Reimplement TQAxFactory::registerClass to add this attribute to the COM class, or set the "Insertable" class info -for your class to "yes" using the Q_CLASSINFO macro. +for your class to "yes" using the TQ_CLASSINFO macro.

Unsupported Clients

We have not managed to make ActiveTQt based COM objects work with the @@ -839,7 +839,7 @@ functions and properties into its own interface.

An alternative way to reimplementing TQAxFactory to have more control about how objects are registered or exposed is to provide class -specific information using the Q_CLASSINFO macro, which is part of +specific information using the TQ_CLASSINFO macro, which is part of TQt's meta object system.

@@ -915,14 +915,14 @@ Office applications. class MyActiveX : public TQWidget { TQ_OBJECT - Q_CLASSINFO("Version", "2.0") - Q_CLASSINFO("ClassID", "{7a4cffd8-cbcd-4ae9-ae7e-343e1e5710df}") - Q_CLASSINFO("InterfaceID", "{6fb035bf-8019-48d8-be51-ef05427d8994}") - Q_CLASSINFO("EventsID", "{c42fffdf-6557-47c9-817a-2da2228bc29c}") - Q_CLASSINFO("Insertable", "yes") - Q_CLASSINFO("ToSuperClass", "MyActiveX") + TQ_CLASSINFO("Version", "2.0") + TQ_CLASSINFO("ClassID", "{7a4cffd8-cbcd-4ae9-ae7e-343e1e5710df}") + TQ_CLASSINFO("InterfaceID", "{6fb035bf-8019-48d8-be51-ef05427d8994}") + TQ_CLASSINFO("EventsID", "{c42fffdf-6557-47c9-817a-2da2228bc29c}") + TQ_CLASSINFO("Insertable", "yes") + TQ_CLASSINFO("ToSuperClass", "MyActiveX") - Q_PROPERTY( ... + TQ_PROPERTY( ... public: MyActiveX(TQWidget *parent = 0, const char *name = 0); @@ -939,14 +939,14 @@ own software.

Licensing components can be done using a variety of techniques, e.g. the code creating the control can provide a license key, or the machine on which the control is supposed to run needs to be licensed. -

To mark a TQt class as licensed specify a "LicenseKey" using the Q_CLASSINFO +

To mark a TQt class as licensed specify a "LicenseKey" using the TQ_CLASSINFO macro.

     class MyLicensedControl : public TQWidget
     {
         TQ_OBJECT
-        Q_CLASSINFO("LicenseKey", "<key string>")
+        TQ_CLASSINFO("LicenseKey", "<key string>")
     ...
     };
     
-- cgit v1.2.1