diff options
Diffstat (limited to 'doc/html/qaxserver.html')
-rw-r--r-- | doc/html/qaxserver.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/qaxserver.html b/doc/html/qaxserver.html index ecdfa175c..754d122ad 100644 --- a/doc/html/qaxserver.html +++ b/doc/html/qaxserver.html @@ -376,12 +376,12 @@ will use the existing process for the next client trying to create an ActiveX control. <p> <h2> Implementing Controls </h2> -<a name="5"></a><p> To implement an ActiveX control with TQt, create a subclass of <a href="ntqwidget.html">TQWidget</a> +<a name="5"></a><p> To implement an ActiveX control with TQt, create a subclass of <a href="tqwidget.html">TQWidget</a> or any existing TQWidget subclass: <p> <pre> - #include <<a href="qwidget-h.html">ntqwidget.h</a>> + #include <<a href="tqwidget-h.html">tqwidget.h</a>> - class MyActiveX : public <a href="ntqwidget.html">TQWidget</a> + class MyActiveX : public <a href="tqwidget.html">TQWidget</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> </pre> @@ -398,7 +398,7 @@ and functions, signals and slots like any normal TQWidget. <a href="#footnote1"><sup>(1)</sup></a><a name="footnote-call1"></a> <p> <pre> public: - MyActiveX( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ) + MyActiveX( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ) ... int value() const; @@ -613,10 +613,10 @@ type can be used as e.g. the return value or paramter of a slot. inheritance from the <a href="qaxbindable.html">TQAxBindable</a> class: <p> <pre> - #include <ntqwidget.h> + #include <tqwidget.h> <b>#include <qaxbindable.h></b> - class MyActiveX : public <a href="ntqwidget.html">TQWidget</a><b>, public TQAxBindable</b> + class MyActiveX : public <a href="tqwidget.html">TQWidget</a><b>, public TQAxBindable</b> { TQ_OBJECT </pre> @@ -815,7 +815,7 @@ following client applications. </h3> <a name="8-1"></a><p> By default all ActiveX controls expose not only their own methods and properties to ActiveX clients, but also those of all super -classes, including <a href="ntqwidget.html">TQWidget</a>. +classes, including <a href="tqwidget.html">TQWidget</a>. <p> This can be controlled by reimplementing <a href="qaxfactory.html">TQAxFactory</a>'s exposeToSuperClass() function. Reimplement the function to return the last (furthest up the inheritance hierarchy) super class that @@ -912,7 +912,7 @@ own API, and is available in the "Insert Objects" dialog of Microsoft Office applications. <p> <pre> - class MyActiveX : public <a href="ntqwidget.html">TQWidget</a> + class MyActiveX : public <a href="tqwidget.html">TQWidget</a> { TQ_OBJECT <b>TQ_CLASSINFO("Version", "2.0") @@ -943,7 +943,7 @@ control is supposed to run needs to be licensed. macro. <pre> - class MyLicensedControl : public <a href="ntqwidget.html">TQWidget</a> + class MyLicensedControl : public <a href="tqwidget.html">TQWidget</a> { TQ_OBJECT <b>TQ_CLASSINFO("LicenseKey", "<key string>")</b> @@ -1020,7 +1020,7 @@ if you need to make calls to the <a href="tqobject.html">TQObject</a> subclass i a new object of the <a href="qaxaggregated.html">TQAxAggregated</a> subclass. <p> <pre> - class MyActiveX : public <a href="ntqwidget.html">TQWidget</a>, + class MyActiveX : public <a href="tqwidget.html">TQWidget</a>, <b>public TQAxBindable</b> { TQ_OBJECT |