diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/qaxserver.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt-8ac0e970.tar.gz tqt-8ac0e970.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 |