diff options
author | Timothy Pearson <[email protected]> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qaxserver-example-wrapper.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qaxserver-example-wrapper.html')
-rw-r--r-- | doc/html/qaxserver-example-wrapper.html | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/html/qaxserver-example-wrapper.html b/doc/html/qaxserver-example-wrapper.html index f74c80437..b0a03f7a5 100644 --- a/doc/html/qaxserver-example-wrapper.html +++ b/doc/html/qaxserver-example-wrapper.html @@ -34,9 +34,9 @@ body { background: #ffffff; color: black; } The ActiveX controls in this example are the standard button -classes <a href="qpushbutton.html">TQPushButton</a>, <a href="qcheckbox.html">TQCheckBox</a> and <a href="qradiobutton.html">TQRadioButton</a> as provided by +classes <a href="ntqpushbutton.html">TQPushButton</a>, <a href="ntqcheckbox.html">TQCheckBox</a> and <a href="ntqradiobutton.html">TQRadioButton</a> as provided by TQt. -<p> It demonstrates how to export existing <a href="qwidget.html">TQWidget</a> classes as ActiveX +<p> It demonstrates how to export existing <a href="ntqwidget.html">TQWidget</a> classes as ActiveX controls, and the use of <a href="qaxfactory.html">TQAxFactory</a> together with the <a href="qaxfactory.html#TQAXFACTORY_EXPORT">TQAXFACTORY_EXPORT</a> macro. <p> @@ -44,12 +44,12 @@ macro. <pre> class ActiveTQtFactory : public <a href="qaxfactory.html">TQAxFactory</a> { public: - ActiveTQtFactory( const <a href="quuid.html">TQUuid</a> &lib, const <a href="quuid.html">TQUuid</a> &app ) + ActiveTQtFactory( const <a href="ntquuid.html">TQUuid</a> &lib, const <a href="ntquuid.html">TQUuid</a> &app ) : <a href="qaxfactory.html">TQAxFactory</a>( lib, app ) {} - <a href="qstringlist.html">TQStringList</a> featureList() const + <a href="ntqstringlist.html">TQStringList</a> featureList() const { - <a href="qstringlist.html">TQStringList</a> list; + <a href="ntqstringlist.html">TQStringList</a> list; list << "TQButton"; list << "TQCheckBox"; list << "TQRadioButton"; @@ -57,25 +57,25 @@ macro. list << "TQToolButton"; return list; } - <a href="qwidget.html">TQWidget</a> *create( const <a href="qstring.html">TQString</a> &key, TQWidget *parent, const char *name ) + <a href="ntqwidget.html">TQWidget</a> *create( const <a href="ntqstring.html">TQString</a> &key, TQWidget *parent, const char *name ) { if ( key == "TQButton" ) - return new <a href="qbutton.html">TQButton</a>( parent, name ); + return new <a href="ntqbutton.html">TQButton</a>( parent, name ); if ( key == "TQCheckBox" ) - return new <a href="qcheckbox.html">TQCheckBox</a>( parent, name ); + return new <a href="ntqcheckbox.html">TQCheckBox</a>( parent, name ); if ( key == "TQRadioButton" ) - return new <a href="qradiobutton.html">TQRadioButton</a>( parent, name ); + return new <a href="ntqradiobutton.html">TQRadioButton</a>( parent, name ); if ( key == "TQPushButton" ) - return new <a href="qpushbutton.html">TQPushButton</a>( parent, name ); + return new <a href="ntqpushbutton.html">TQPushButton</a>( parent, name ); if ( key == "TQToolButton" ) { - <a href="qtoolbutton.html">TQToolButton</a> *tb = new <a href="qtoolbutton.html">TQToolButton</a>( parent, name ); - <a name="x2518"></a> tb-><a href="qbutton.html#setPixmap">setPixmap</a>( TQPixmap(fileopen) ); + <a href="ntqtoolbutton.html">TQToolButton</a> *tb = new <a href="ntqtoolbutton.html">TQToolButton</a>( parent, name ); + <a name="x2518"></a> tb-><a href="ntqbutton.html#setPixmap">setPixmap</a>( TQPixmap(fileopen) ); return tb; } return 0; } - <a href="qmetaobject.html">TQMetaObject</a> *metaObject( const <a href="qstring.html">TQString</a> &key ) const + <a href="ntqmetaobject.html">TQMetaObject</a> *metaObject( const <a href="ntqstring.html">TQString</a> &key ) const { if ( key == "TQButton" ) return TQButton::staticMetaObject(); @@ -90,7 +90,7 @@ macro. return 0; } - <a href="quuid.html">TQUuid</a> classID( const <a href="qstring.html">TQString</a> &key ) const + <a href="ntquuid.html">TQUuid</a> classID( const <a href="ntqstring.html">TQString</a> &key ) const { if ( key == "TQButton" ) return "{23F5012A-7333-43D3-BCA8-836AABC61B4A}"; @@ -105,7 +105,7 @@ macro. return TQUuid(); } - <a href="quuid.html">TQUuid</a> interfaceID( const <a href="qstring.html">TQString</a> &key ) const + <a href="ntquuid.html">TQUuid</a> interfaceID( const <a href="ntqstring.html">TQString</a> &key ) const { if ( key == "TQButton" ) return "{6DA689FB-928F-423C-8632-678C3D3606DB}"; @@ -120,7 +120,7 @@ macro. return TQUuid(); } - <a href="quuid.html">TQUuid</a> eventsID( const <a href="qstring.html">TQString</a> &key ) const + <a href="ntquuid.html">TQUuid</a> eventsID( const <a href="ntqstring.html">TQString</a> &key ) const { if ( key == "TQButton" ) return "{73A5D03F-8ADE-4D84-9AE0-A93B4F85A130}"; |