diff options
Diffstat (limited to 'doc/html')
235 files changed, 611 insertions, 611 deletions
diff --git a/doc/html/designer-manual-16.html b/doc/html/designer-manual-16.html index 39513c565..b156e25c8 100644 --- a/doc/html/designer-manual-16.html +++ b/doc/html/designer-manual-16.html @@ -182,7 +182,7 @@ body { background: #ffffff; color: black; } </pre> <a name="exportmacro"></a><h4><a name="1-7"></a>exportmacro</h4> <p>This tag is only relevant to Windows users.</p> -<p>If you have a class that requires some Windows-specific export macro, e.g. for classes in a DLL that need to be declared like this: <tt>class win_specific_declaration_goes_here Class</tt>, you can use the <tt><exportmacro></tt> tag. (In standard TQt we use the <tt>Q_EXPORT</tt> macro, e.g. <tt>class Q_EXPORT TQWidget</tt>.) If you use this tag you must also:</p> +<p>If you have a class that requires some Windows-specific export macro, e.g. for classes in a DLL that need to be declared like this: <tt>class win_specific_declaration_goes_here Class</tt>, you can use the <tt><exportmacro></tt> tag. (In standard TQt we use the <tt>TQ_EXPORT</tt> macro, e.g. <tt>class TQ_EXPORT TQWidget</tt>.) If you use this tag you must also:</p> <ol type=1><li><p><a href="designer-manual-16.html#1-11">include</a> the file which contains the macro definition;</p> <li><p>add the export macro to the form -- this is achieved by entering the macro's name in the 'export macro' sub-property of the form's name property.</p> </ol><p>Following these steps will ensure that <a href="uic.html">uic</a> will create the correct <tt>class YOUR_MACRO Form</tt> declarations.</p> diff --git a/doc/html/designer-manual-7.html b/doc/html/designer-manual-7.html index ac49f1c55..725812bb1 100644 --- a/doc/html/designer-manual-7.html +++ b/doc/html/designer-manual-7.html @@ -349,8 +349,8 @@ DEFINES += FILECHOOSER_IS_WIDGET } </pre> <p>Copy this function changing the class name to suit your widget plugin implementation. It should return <tt>TRUE</tt> if your custom widget can contain other widgets, e.g. like <a href="ntqframe.html">TQFrame</a>, or <tt>FALSE</tt> if it must not contain other widgets, e.g. like <a href="ntqpushbutton.html">TQPushButton</a>.</p> -<!-- index Macros!Q_EXPORT_PLUGIN --><!-- index Q_EXPORT_PLUGIN --><p>The <tt>Q_EXPORT_PLUGIN</tt> macro.</p> -<pre> Q_EXPORT_PLUGIN( CustomWidgetPlugin ) +<!-- index Macros!TQ_EXPORT_PLUGIN --><!-- index TQ_EXPORT_PLUGIN --><p>The <tt>TQ_EXPORT_PLUGIN</tt> macro.</p> +<pre> TQ_EXPORT_PLUGIN( CustomWidgetPlugin ) </pre> <p>This macro identifies the module as a plugin -- all the other code simply implements the relevant interface, i.e. wraps the classes you wish to make available.</p> <p>This macro must appear once in your plugin. It should be copied with the class name changed to the name of your plugin's class. (See the <a href="http://doc.trolltech.com/plugins.html">TQt Plugin documentation</a> for more information on the plugin entry point.)</p> diff --git a/doc/html/ntqimageformatplugin.html b/doc/html/ntqimageformatplugin.html index 6389e67de..ebc4e0745 100644 --- a/doc/html/ntqimageformatplugin.html +++ b/doc/html/ntqimageformatplugin.html @@ -53,7 +53,7 @@ transparently by applications. <p> Writing an image format plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>() and <a href="#installIOHandler">installIOHandler</a>(), and exporting the class with the -Q_EXPORT_PLUGIN macro. See the <a href="plugins-howto.html">Plugins +TQ_EXPORT_PLUGIN macro. See the <a href="plugins-howto.html">Plugins documentation</a> for details. <p>See also <a href="plugins.html">Plugins</a>. @@ -61,7 +61,7 @@ Q_EXPORT_PLUGIN macro. See the <a href="plugins-howto.html">Plugins <h3 class=fn><a name="TQImageFormatPlugin"></a>TQImageFormatPlugin::TQImageFormatPlugin () </h3> Constructs an image format plugin. This is invoked automatically -by the Q_EXPORT_PLUGIN macro. +by the TQ_EXPORT_PLUGIN macro. <h3 class=fn><a name="~TQImageFormatPlugin"></a>TQImageFormatPlugin::~TQImageFormatPlugin () </h3> diff --git a/doc/html/ntqsqldriverplugin.html b/doc/html/ntqsqldriverplugin.html index ae1ed41b5..4a948e20e 100644 --- a/doc/html/ntqsqldriverplugin.html +++ b/doc/html/ntqsqldriverplugin.html @@ -53,7 +53,7 @@ easy to create your own SQL driver plugins that can be loaded dynamically by TQt. <p> Writing a SQL plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>() and <a href="#create">create</a>(), and -exporting the class with the <tt>Q_EXPORT_PLUGIN</tt> macro. See the SQL +exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the SQL plugins that come with TQt for example implementations (in the <tt>plugins/src/sqldrivers</tt> subdirectory of the source distribution). Read the <a href="plugins-howto.html">plugins @@ -64,7 +64,7 @@ distribution). Read the <a href="plugins-howto.html">plugins <h3 class=fn><a name="TQSqlDriverPlugin"></a>TQSqlDriverPlugin::TQSqlDriverPlugin () </h3> Constructs a SQL driver plugin. This is invoked automatically by -the <tt>Q_EXPORT_PLUGIN</tt> macro. +the <tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQSqlDriverPlugin"></a>TQSqlDriverPlugin::~TQSqlDriverPlugin () </h3> diff --git a/doc/html/ntqstyleplugin.html b/doc/html/ntqstyleplugin.html index df73c8771..9397d01f3 100644 --- a/doc/html/ntqstyleplugin.html +++ b/doc/html/ntqstyleplugin.html @@ -52,7 +52,7 @@ to create custom styles that can be loaded dynamically into applications with a <a href="ntqstylefactory.html">TQStyleFactory</a>. <p> Writing a style plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>() and <a href="#create">create</a>(), and -exporting the class with the <tt>Q_EXPORT_PLUGIN</tt> macro. See the +exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the <a href="plugins-howto.html">plugins documentation</a> for an example. <p>See also <a href="plugins.html">Plugins</a>. @@ -61,7 +61,7 @@ example. <h3 class=fn><a name="TQStylePlugin"></a>TQStylePlugin::TQStylePlugin () </h3> Constructs a style plugin. This is invoked automatically by the -<tt>Q_EXPORT_PLUGIN</tt> macro. +<tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQStylePlugin"></a>TQStylePlugin::~TQStylePlugin () </h3> diff --git a/doc/html/ntqtextcodecplugin.html b/doc/html/ntqtextcodecplugin.html index f6670614a..b6ec3e115 100644 --- a/doc/html/ntqtextcodecplugin.html +++ b/doc/html/ntqtextcodecplugin.html @@ -57,7 +57,7 @@ into applications. <p> Writing a text codec plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#names">names</a>(), <a href="#createForName">createForName</a>(), <a href="#mibEnums">mibEnums</a>() and <a href="#createForMib">createForMib</a>(), and exporting the -class with the <tt>Q_EXPORT_PLUGIN</tt> macro. See the <a href="plugins-howto.html">TQt Plugins documentation</a> for details. +class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the <a href="plugins-howto.html">TQt Plugins documentation</a> for details. <p> See the <a href="http://www.iana.org/assignments/character-sets">IANA character-sets encoding file</a> for more information on mime names and mib enums. @@ -67,7 +67,7 @@ names and mib enums. <h3 class=fn><a name="TQTextCodecPlugin"></a>TQTextCodecPlugin::TQTextCodecPlugin () </h3> Constructs a text codec plugin. This is invoked automatically by -the <tt>Q_EXPORT_PLUGIN</tt> macro. +the <tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQTextCodecPlugin"></a>TQTextCodecPlugin::~TQTextCodecPlugin () </h3> diff --git a/doc/html/ntqwidgetplugin.html b/doc/html/ntqwidgetplugin.html index 83735618f..dbd1e5489 100644 --- a/doc/html/ntqwidgetplugin.html +++ b/doc/html/ntqwidgetplugin.html @@ -58,7 +58,7 @@ to create custom widgets that can be included in forms using <a href="designer-m <p> Writing a widget plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>(), <a href="#create">create</a>(), <a href="#group">group</a>(), <a href="#iconSet">iconSet</a>(), <a href="#includeFile">includeFile</a>(), <a href="#toolTip">toolTip</a>(), <a href="#whatsThis">whatsThis</a>() and -<a href="#isContainer">isContainer</a>(), and exporting the class with the <tt>Q_EXPORT_PLUGIN</tt> +<a href="#isContainer">isContainer</a>(), and exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. <p> See the <a href="designer-manual.html">TQt Designer manual's</a>, 'Creating Custom Widgets' section in the 'Creating Custom Widgets' @@ -72,7 +72,7 @@ supplied with <a href="designer-manual.html">TQt Designer</a>. <h3 class=fn><a name="TQWidgetPlugin"></a>TQWidgetPlugin::TQWidgetPlugin () </h3> Constructs a widget plugin. This is invoked automatically by the -<tt>Q_EXPORT_PLUGIN</tt> macro. +<tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQWidgetPlugin"></a>TQWidgetPlugin::~TQWidgetPlugin () </h3> diff --git a/doc/html/plugins-howto.html b/doc/html/plugins-howto.html index 7bb3a2dcd..8ae14f2a7 100644 --- a/doc/html/plugins-howto.html +++ b/doc/html/plugins-howto.html @@ -90,7 +90,7 @@ to make available as a plugin. The required code is straightforward: } }; - Q_EXPORT_PLUGIN( MyStylePlugin ) + TQ_EXPORT_PLUGIN( MyStylePlugin ) </pre> <p> (Note that <a href="ntqstylefactory.html">TQStyleFactory</a> is case-insensitive, and the lower case diff --git a/doc/html/qaccel-h.html b/doc/html/qaccel-h.html index 04df7eed4..866d8d71d 100644 --- a/doc/html/qaccel-h.html +++ b/doc/html/qaccel-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQAccelPrivate; -class Q_EXPORT TQAccel : public TQObject // accelerator class +class TQ_EXPORT TQAccel : public TQObject // accelerator class { TQ_OBJECT public: diff --git a/doc/html/qaccessible-h.html b/doc/html/qaccessible-h.html index 0a382c040..c23b44aff 100644 --- a/doc/html/qaccessible-h.html +++ b/doc/html/qaccessible-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } struct TQAccessibleInterface; -class Q_EXPORT TQAccessible +class TQ_EXPORT TQAccessible { private: #ifdef Q_WS_MAC @@ -267,7 +267,7 @@ public: // {EC86CB9C-5DA0-4c43-A739-13EBDF1C6B14} #define IID_QAccessible TQUuid( 0xec86cb9c, 0x5da0, 0x4c43, 0xa7, 0x39, 0x13, 0xeb, 0xdf, 0x1c, 0x6b, 0x14 ) -struct Q_EXPORT TQAccessibleInterface : public TQAccessible, public TQUnknownInterface +struct TQ_EXPORT TQAccessibleInterface : public TQAccessible, public TQUnknownInterface { // check for valid pointers virtual bool isValid() const = 0; @@ -301,12 +301,12 @@ struct Q_EXPORT TQAccessibleInterface : public TQAccessible, public TQUnknownInt #define IID_QAccessibleFactory TQUuid( 0x49f4c6a7, 0x412f, 0x41de, 0x9e, 0x24, 0x64, 0x88, 0x43, 0x42, 0x1f, 0xd3 ) #endif -struct Q_EXPORT TQAccessibleFactoryInterface : public TQAccessible, public TQFeatureListInterface +struct TQ_EXPORT TQAccessibleFactoryInterface : public TQAccessible, public TQFeatureListInterface { virtual TQRESULT createAccessibleInterface( const TQString &, TQObject *, TQAccessibleInterface** ) = 0; }; -class Q_EXPORT TQAccessibleObject : public TQObject, public TQAccessibleInterface +class TQ_EXPORT TQAccessibleObject : public TQObject, public TQAccessibleInterface { public: TQAccessibleObject( TQObject *object ); diff --git a/doc/html/qaction-h.html b/doc/html/qaction-h.html index 11a06f9e4..a04a26234 100644 --- a/doc/html/qaction-h.html +++ b/doc/html/qaction-h.html @@ -92,7 +92,7 @@ class TQStatusBar; class TQPopupMenu; class TQToolTipGroup; -class Q_EXPORT TQAction : public TQObject +class TQ_EXPORT TQAction : public TQObject { TQ_OBJECT TQ_PROPERTY( bool toggleAction READ isToggleAction WRITE setToggleAction) @@ -187,7 +187,7 @@ private: #endif }; -class Q_EXPORT TQActionGroup : public TQAction +class TQ_EXPORT TQActionGroup : public TQAction { TQ_OBJECT TQ_PROPERTY( bool exclusive READ isExclusive WRITE setExclusive ) diff --git a/doc/html/qapplication-h.html b/doc/html/qapplication-h.html index 0b0844967..813a6693f 100644 --- a/doc/html/qapplication-h.html +++ b/doc/html/qapplication-h.html @@ -100,10 +100,10 @@ class TQMutex; class TQApplication; -extern Q_EXPORT TQApplication *tqApp; // global application object +extern TQ_EXPORT TQApplication *tqApp; // global application object -class Q_EXPORT TQApplication : public TQObject +class TQ_EXPORT TQApplication : public TQObject { TQ_OBJECT public: @@ -443,7 +443,7 @@ private: friend class TQEvent; friend class TQTranslator; friend class TQEventLoop; - friend Q_EXPORT void tqt_ucm_initialize( TQApplication * ); + friend TQ_EXPORT void tqt_ucm_initialize( TQApplication * ); #if defined(Q_WS_WIN) friend bool qt_sendSpontaneousEvent( TQObject*, TQEvent* ); #endif diff --git a/doc/html/qasyncimageio-h.html b/doc/html/qasyncimageio-h.html index 9c76aa4e4..b8f7bea47 100644 --- a/doc/html/qasyncimageio-h.html +++ b/doc/html/qasyncimageio-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #pragma GCC system_header #endif -class Q_EXPORT TQImageConsumer { +class TQ_EXPORT TQImageConsumer { public: virtual void end()=0; @@ -103,14 +103,14 @@ public: virtual void setSize( int, int ) = 0; }; -class Q_EXPORT TQImageFormat { +class TQ_EXPORT TQImageFormat { public: virtual ~TQImageFormat(); virtual int decode( TQImage& img, TQImageConsumer* consumer, const uchar* buffer, int length ) = 0; }; -class Q_EXPORT TQImageFormatType { +class TQ_EXPORT TQImageFormatType { public: virtual ~TQImageFormatType(); virtual TQImageFormat* decoderFor( const uchar* buffer, int length ) = 0; @@ -120,7 +120,7 @@ protected: }; class TQImageDecoderPrivate; -class Q_EXPORT TQImageDecoder { +class TQ_EXPORT TQImageDecoder { public: TQImageDecoder( TQImageConsumer* c ); ~TQImageDecoder(); diff --git a/doc/html/qasyncio-h.html b/doc/html/qasyncio-h.html index 845733896..dbe68585e 100644 --- a/doc/html/qasyncio-h.html +++ b/doc/html/qasyncio-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQIODevice; -class Q_EXPORT TQAsyncIO { +class TQ_EXPORT TQAsyncIO { public: virtual ~TQAsyncIO(); void connect(TQObject*, const char *member); @@ -99,7 +99,7 @@ private: TQSignal signal; }; -class Q_EXPORT TQDataSink : public TQAsyncIO { +class TQ_EXPORT TQDataSink : public TQAsyncIO { public: // Call this to know how much I can take. virtual int readyToReceive()=0; @@ -108,7 +108,7 @@ public: void maybeReady(); }; -class Q_EXPORT TQDataSource : public TQAsyncIO { +class TQ_EXPORT TQDataSource : public TQAsyncIO { public: virtual int readyToSend()=0; // returns -1 when never any more ready virtual void sendTo(TQDataSink*, int count)=0; @@ -119,7 +119,7 @@ public: virtual void rewind(); }; -class Q_EXPORT TQIODeviceSource : public TQDataSource { +class TQ_EXPORT TQIODeviceSource : public TQDataSource { const int buf_size; uchar *buffer; TQIODevice* iod; @@ -136,7 +136,7 @@ public: void rewind(); }; -class Q_EXPORT TQDataPump : public TQObject { +class TQ_EXPORT TQDataPump : public TQObject { TQ_OBJECT int interval; TQTimer timer; diff --git a/doc/html/qbitarray-h.html b/doc/html/qbitarray-h.html index 2b4af25b1..7644a5acb 100644 --- a/doc/html/qbitarray-h.html +++ b/doc/html/qbitarray-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQBitArray; -class Q_EXPORT TQBitVal +class TQ_EXPORT TQBitVal { private: TQBitArray *array; @@ -105,7 +105,7 @@ public: TQBitArray class *****************************************************************************/ -class Q_EXPORT TQBitArray : public TQByteArray +class TQ_EXPORT TQBitArray : public TQByteArray { public: TQBitArray(); @@ -171,9 +171,9 @@ inline bool TQBitArray::operator[]( int index ) const Misc. TQBitArray operator functions *****************************************************************************/ -Q_EXPORT TQBitArray operator&( const TQBitArray &, const TQBitArray & ); -Q_EXPORT TQBitArray operator|( const TQBitArray &, const TQBitArray & ); -Q_EXPORT TQBitArray operator^( const TQBitArray &, const TQBitArray & ); +TQ_EXPORT TQBitArray operator&( const TQBitArray &, const TQBitArray & ); +TQ_EXPORT TQBitArray operator|( const TQBitArray &, const TQBitArray & ); +TQ_EXPORT TQBitArray operator^( const TQBitArray &, const TQBitArray & ); inline TQBitVal::operator int() @@ -198,8 +198,8 @@ inline TQBitVal &TQBitVal::operator=( bool v ) TQBitArray stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQBitArray & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQBitArray & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQBitArray & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQBitArray & ); #endif #endif // TQBITARRAY_H diff --git a/doc/html/qbitmap-h.html b/doc/html/qbitmap-h.html index 5aa3054ae..51799ef76 100644 --- a/doc/html/qbitmap-h.html +++ b/doc/html/qbitmap-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQBitmap : public TQPixmap +class TQ_EXPORT TQBitmap : public TQPixmap { public: TQBitmap(); diff --git a/doc/html/qbrush-h.html b/doc/html/qbrush-h.html index a960503bc..59ab87f4b 100644 --- a/doc/html/qbrush-h.html +++ b/doc/html/qbrush-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQBrush: public TQt +class TQ_EXPORT TQBrush: public TQt { friend class TQPainter; public: @@ -123,8 +123,8 @@ private: *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQBrush & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQBrush & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQBrush & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQBrush & ); #endif #endif // TQBRUSH_H diff --git a/doc/html/qbuffer-h.html b/doc/html/qbuffer-h.html index fd7a0814a..04c8c821c 100644 --- a/doc/html/qbuffer-h.html +++ b/doc/html/qbuffer-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQBuffer : public TQIODevice +class TQ_EXPORT TQBuffer : public TQIODevice { public: TQBuffer(); diff --git a/doc/html/qbutton-h.html b/doc/html/qbutton-h.html index ccd2bc5bd..90e28c72c 100644 --- a/doc/html/qbutton-h.html +++ b/doc/html/qbutton-h.html @@ -89,7 +89,7 @@ class TQButtonGroup; class TQToolBar; class TQButtonData; -class Q_EXPORT TQButton : public TQWidget +class TQ_EXPORT TQButton : public TQWidget { TQ_OBJECT TQ_ENUMS( ToggleType ToggleState ) diff --git a/doc/html/qbuttongroup-h.html b/doc/html/qbuttongroup-h.html index 0c5e2c913..6dbf6dc74 100644 --- a/doc/html/qbuttongroup-h.html +++ b/doc/html/qbuttongroup-h.html @@ -88,7 +88,7 @@ class TQButton; class TQButtonList; -class Q_EXPORT TQButtonGroup : public TQGroupBox +class TQ_EXPORT TQButtonGroup : public TQGroupBox { TQ_OBJECT TQ_PROPERTY( bool exclusive READ isExclusive WRITE setExclusive ) diff --git a/doc/html/qcanvas-h.html b/doc/html/qcanvas-h.html index 61a641b1d..7790f434b 100644 --- a/doc/html/qcanvas-h.html +++ b/doc/html/qcanvas-h.html @@ -91,7 +91,7 @@ body { background: #ffffff; color: black; } #define TQM_EXPORT_CANVAS #define TQM_TEMPLATE_EXTERN_CANVAS #else -#define TQM_EXPORT_CANVAS Q_EXPORT +#define TQM_EXPORT_CANVAS TQ_EXPORT #define TQM_TEMPLATE_EXTERN_CANVAS Q_TEMPLATE_EXTERN #endif diff --git a/doc/html/qcdestyle-h.html b/doc/html/qcdestyle-h.html index fe453f3ee..5bb262696 100644 --- a/doc/html/qcdestyle-h.html +++ b/doc/html/qcdestyle-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_CDE #else -#define Q_EXPORT_STYLE_CDE Q_EXPORT +#define Q_EXPORT_STYLE_CDE TQ_EXPORT #endif class Q_EXPORT_STYLE_CDE TQCDEStyle : public TQMotifStyle diff --git a/doc/html/qcheckbox-h.html b/doc/html/qcheckbox-h.html index 81697bb9d..c50ccad62 100644 --- a/doc/html/qcheckbox-h.html +++ b/doc/html/qcheckbox-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_CHECKBOX -class Q_EXPORT TQCheckBox : public TQButton +class TQ_EXPORT TQCheckBox : public TQButton { TQ_OBJECT TQ_PROPERTY( bool checked READ isChecked WRITE setChecked ) diff --git a/doc/html/qclipboard-h.html b/doc/html/qclipboard-h.html index af842b501..188c110b1 100644 --- a/doc/html/qclipboard-h.html +++ b/doc/html/qclipboard-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQMimeSource; -class Q_EXPORT TQClipboard : public TQObject +class TQ_EXPORT TQClipboard : public TQObject { TQ_OBJECT private: diff --git a/doc/html/qcolor-h.html b/doc/html/qcolor-h.html index ad23b063f..d96b1e190 100644 --- a/doc/html/qcolor-h.html +++ b/doc/html/qcolor-h.html @@ -84,32 +84,32 @@ body { background: #ffffff; color: black; } const TQRgb TQT_RGB_MASK = 0x00ffffff; // masks RGB values -Q_EXPORT inline int tqRed( TQRgb rgb ) // get red part of RGB +TQ_EXPORT inline int tqRed( TQRgb rgb ) // get red part of RGB { return (int)((rgb >> 16) & 0xff); } -Q_EXPORT inline int tqGreen( TQRgb rgb ) // get green part of RGB +TQ_EXPORT inline int tqGreen( TQRgb rgb ) // get green part of RGB { return (int)((rgb >> 8) & 0xff); } -Q_EXPORT inline int tqBlue( TQRgb rgb ) // get blue part of RGB +TQ_EXPORT inline int tqBlue( TQRgb rgb ) // get blue part of RGB { return (int)(rgb & 0xff); } -Q_EXPORT inline int tqAlpha( TQRgb rgb ) // get alpha part of RGBA +TQ_EXPORT inline int tqAlpha( TQRgb rgb ) // get alpha part of RGBA { return (int)((rgb >> 24) & 0xff); } -Q_EXPORT inline TQRgb tqRgb( int r, int g, int b )// set RGB value +TQ_EXPORT inline TQRgb tqRgb( int r, int g, int b )// set RGB value { return (0xff << 24) | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff); } -Q_EXPORT inline TQRgb tqRgba( int r, int g, int b, int a )// set RGBA value +TQ_EXPORT inline TQRgb tqRgba( int r, int g, int b, int a )// set RGBA value { return ((a & 0xff) << 24) | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff); } -Q_EXPORT inline int tqGray( int r, int g, int b )// convert R,G,B to gray 0..255 +TQ_EXPORT inline int tqGray( int r, int g, int b )// convert R,G,B to gray 0..255 { return (r*11+g*16+b*5)/32; } -Q_EXPORT inline int tqGray( TQRgb rgb ) // convert RGB to gray 0..255 +TQ_EXPORT inline int tqGray( TQRgb rgb ) // convert RGB to gray 0..255 { return tqGray( tqRed(rgb), tqGreen(rgb), tqBlue(rgb) ); } -class Q_EXPORT TQColor +class TQ_EXPORT TQColor { public: enum Spec { Rgb, Hsv }; @@ -258,8 +258,8 @@ inline bool TQColor::operator!=( const TQColor &c ) const *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQColor & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQColor & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQColor & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQColor & ); #endif #endif // TQCOLOR_H diff --git a/doc/html/qcolordialog-h.html b/doc/html/qcolordialog-h.html index 281efdaad..ea646e991 100644 --- a/doc/html/qcolordialog-h.html +++ b/doc/html/qcolordialog-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQColorDialogPrivate; -class Q_EXPORT TQColorDialog : public TQDialog +class TQ_EXPORT TQColorDialog : public TQDialog { TQ_OBJECT diff --git a/doc/html/qcombobox-h.html b/doc/html/qcombobox-h.html index 411a8da15..9d06d198d 100644 --- a/doc/html/qcombobox-h.html +++ b/doc/html/qcombobox-h.html @@ -92,7 +92,7 @@ class TQListBox; class TQComboBoxData; class TQWheelEvent; -class Q_EXPORT TQComboBox : public TQWidget +class TQ_EXPORT TQComboBox : public TQWidget { TQ_OBJECT TQ_ENUMS( Policy ) diff --git a/doc/html/qcommonstyle-h.html b/doc/html/qcommonstyle-h.html index e09eba727..a3d019e9f 100644 --- a/doc/html/qcommonstyle-h.html +++ b/doc/html/qcommonstyle-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_STYLE -class Q_EXPORT TQCommonStyle: public TQStyle +class TQ_EXPORT TQCommonStyle: public TQStyle { TQ_OBJECT diff --git a/doc/html/qcstring-h.html b/doc/html/qcstring-h.html index 18c29b776..533aa0f68 100644 --- a/doc/html/qcstring-h.html +++ b/doc/html/qcstring-h.html @@ -89,38 +89,38 @@ body { background: #ffffff; color: black; } Safe and portable C string functions; extensions to standard string.h *****************************************************************************/ -Q_EXPORT void *tqmemmove( void *dst, const void *src, uint len ); +TQ_EXPORT void *tqmemmove( void *dst, const void *src, uint len ); -Q_EXPORT char *tqstrdup( const char * ); +TQ_EXPORT char *tqstrdup( const char * ); -Q_EXPORT inline uint tqstrlen( const char *str ) +TQ_EXPORT inline uint tqstrlen( const char *str ) { return str ? (uint)strlen(str) : 0u; } -Q_EXPORT inline char *qstrcpy( char *dst, const char *src ) +TQ_EXPORT inline char *qstrcpy( char *dst, const char *src ) { return src ? strcpy(dst, src) : 0; } -Q_EXPORT char *tqstrncpy( char *dst, const char *src, uint len ); +TQ_EXPORT char *tqstrncpy( char *dst, const char *src, uint len ); -Q_EXPORT inline int qstrcmp( const char *str1, const char *str2 ) +TQ_EXPORT inline int qstrcmp( const char *str1, const char *str2 ) { return ( str1 && str2 ) ? strcmp( str1, str2 ) : ( str1 ? 1 : ( str2 ? -1 : 0 ) ); } -Q_EXPORT inline int tqstrncmp( const char *str1, const char *str2, uint len ) +TQ_EXPORT inline int tqstrncmp( const char *str1, const char *str2, uint len ) { return ( str1 && str2 ) ? strncmp( str1, str2, len ) : ( str1 ? 1 : ( str2 ? -1 : 0 ) ); } -Q_EXPORT int tqstricmp( const char *, const char * ); +TQ_EXPORT int tqstricmp( const char *, const char * ); -Q_EXPORT int tqstrnicmp( const char *, const char *, uint len ); +TQ_EXPORT int tqstrnicmp( const char *, const char *, uint len ); // tqChecksum: Internet checksum -Q_EXPORT TQ_UINT16 tqChecksum( const char *s, uint len ); +TQ_EXPORT TQ_UINT16 tqChecksum( const char *s, uint len ); /***************************************************************************** TQByteArray class @@ -142,11 +142,11 @@ typedef TQMemArray<char> TQByteArray; #endif #ifndef TQT_NO_COMPRESS -Q_EXPORT TQByteArray tqCompress( const uchar* data, int nbytes ); -Q_EXPORT TQByteArray tqUncompress( const uchar* data, int nbytes ); -Q_EXPORT inline TQByteArray tqCompress( const TQByteArray& data) +TQ_EXPORT TQByteArray tqCompress( const uchar* data, int nbytes ); +TQ_EXPORT TQByteArray tqUncompress( const uchar* data, int nbytes ); +TQ_EXPORT inline TQByteArray tqCompress( const TQByteArray& data) { return tqCompress( (const uchar*)data.data(), data.size() ); } -Q_EXPORT inline TQByteArray tqUncompress( const TQByteArray& data ) +TQ_EXPORT inline TQByteArray tqUncompress( const TQByteArray& data ) { return tqUncompress( (const uchar*)data.data(), data.size() ); } #endif @@ -154,8 +154,8 @@ Q_EXPORT inline TQByteArray tqUncompress( const TQByteArray& data ) TQByteArray stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQByteArray & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQByteArray & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQByteArray & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQByteArray & ); #endif /***************************************************************************** @@ -164,7 +164,7 @@ Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQByteArray &am class TQRegExp; -class Q_EXPORT TQCString : public TQByteArray // C string class +class TQ_EXPORT TQCString : public TQByteArray // C string class { public: TQCString() {} // make null string @@ -262,8 +262,8 @@ private: TQCString stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQCString & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQCString & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQCString & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQCString & ); #endif /***************************************************************************** @@ -320,61 +320,61 @@ inline TQCString::operator const char *() const TQCString non-member operators *****************************************************************************/ -Q_EXPORT inline bool operator==( const TQCString &s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator==( const TQCString &s1, const TQCString &s2 ) { return qstrcmp( s1.data(), s2.data() ) == 0; } -Q_EXPORT inline bool operator==( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline bool operator==( const TQCString &s1, const char *s2 ) { return qstrcmp( s1.data(), s2 ) == 0; } -Q_EXPORT inline bool operator==( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator==( const char *s1, const TQCString &s2 ) { return qstrcmp( s1, s2.data() ) == 0; } -Q_EXPORT inline bool operator!=( const TQCString &s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator!=( const TQCString &s1, const TQCString &s2 ) { return qstrcmp( s1.data(), s2.data() ) != 0; } -Q_EXPORT inline bool operator!=( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline bool operator!=( const TQCString &s1, const char *s2 ) { return qstrcmp( s1.data(), s2 ) != 0; } -Q_EXPORT inline bool operator!=( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator!=( const char *s1, const TQCString &s2 ) { return qstrcmp( s1, s2.data() ) != 0; } -Q_EXPORT inline bool operator<( const TQCString &s1, const TQCString& s2 ) +TQ_EXPORT inline bool operator<( const TQCString &s1, const TQCString& s2 ) { return qstrcmp( s1.data(), s2.data() ) < 0; } -Q_EXPORT inline bool operator<( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline bool operator<( const TQCString &s1, const char *s2 ) { return qstrcmp( s1.data(), s2 ) < 0; } -Q_EXPORT inline bool operator<( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator<( const char *s1, const TQCString &s2 ) { return qstrcmp( s1, s2.data() ) < 0; } -Q_EXPORT inline bool operator<=( const TQCString &s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator<=( const TQCString &s1, const TQCString &s2 ) { return qstrcmp( s1.data(), s2.data() ) <= 0; } -Q_EXPORT inline bool operator<=( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline bool operator<=( const TQCString &s1, const char *s2 ) { return qstrcmp( s1.data(), s2 ) <= 0; } -Q_EXPORT inline bool operator<=( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator<=( const char *s1, const TQCString &s2 ) { return qstrcmp( s1, s2.data() ) <= 0; } -Q_EXPORT inline bool operator>( const TQCString &s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator>( const TQCString &s1, const TQCString &s2 ) { return qstrcmp( s1.data(), s2.data() ) > 0; } -Q_EXPORT inline bool operator>( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline bool operator>( const TQCString &s1, const char *s2 ) { return qstrcmp( s1.data(), s2 ) > 0; } -Q_EXPORT inline bool operator>( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator>( const char *s1, const TQCString &s2 ) { return qstrcmp( s1, s2.data() ) > 0; } -Q_EXPORT inline bool operator>=( const TQCString &s1, const TQCString& s2 ) +TQ_EXPORT inline bool operator>=( const TQCString &s1, const TQCString& s2 ) { return qstrcmp( s1.data(), s2.data() ) >= 0; } -Q_EXPORT inline bool operator>=( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline bool operator>=( const TQCString &s1, const char *s2 ) { return qstrcmp( s1.data(), s2 ) >= 0; } -Q_EXPORT inline bool operator>=( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline bool operator>=( const char *s1, const TQCString &s2 ) { return qstrcmp( s1, s2.data() ) >= 0; } -Q_EXPORT inline const TQCString operator+( const TQCString &s1, +TQ_EXPORT inline const TQCString operator+( const TQCString &s1, const TQCString &s2 ) { TQCString tmp( s1.data() ); @@ -382,28 +382,28 @@ Q_EXPORT inline const TQCString operator+( const TQCString &s1, return tmp; } -Q_EXPORT inline const TQCString operator+( const TQCString &s1, const char *s2 ) +TQ_EXPORT inline const TQCString operator+( const TQCString &s1, const char *s2 ) { TQCString tmp( s1.data() ); tmp += s2; return tmp; } -Q_EXPORT inline const TQCString operator+( const char *s1, const TQCString &s2 ) +TQ_EXPORT inline const TQCString operator+( const char *s1, const TQCString &s2 ) { TQCString tmp( s1 ); tmp += s2; return tmp; } -Q_EXPORT inline const TQCString operator+( const TQCString &s1, char c2 ) +TQ_EXPORT inline const TQCString operator+( const TQCString &s1, char c2 ) { TQCString tmp( s1.data() ); tmp += c2; return tmp; } -Q_EXPORT inline const TQCString operator+( char c1, const TQCString &s2 ) +TQ_EXPORT inline const TQCString operator+( char c1, const TQCString &s2 ) { TQCString tmp; tmp += c1; diff --git a/doc/html/qcursor-h.html b/doc/html/qcursor-h.html index 05263a1da..866dd140c 100644 --- a/doc/html/qcursor-h.html +++ b/doc/html/qcursor-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } */ #ifdef TQT_NO_CURSOR -class Q_EXPORT TQCursor : public TQt +class TQ_EXPORT TQCursor : public TQt { public: static TQPoint pos(); @@ -104,7 +104,7 @@ private: struct TQCursorData; -class Q_EXPORT TQCursor : public TQt +class TQ_EXPORT TQCursor : public TQt { public: TQCursor(); // create default arrow cursor @@ -162,8 +162,8 @@ private: TQCursor stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQCursor & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQCursor & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQCursor & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQCursor & ); #endif #endif // TQT_NO_CURSOR diff --git a/doc/html/qdatabrowser-h.html b/doc/html/qdatabrowser-h.html index 779b2cda6..e0028d74a 100644 --- a/doc/html/qdatabrowser-h.html +++ b/doc/html/qdatabrowser-h.html @@ -91,7 +91,7 @@ body { background: #ffffff; color: black; } class TQSqlForm; class TQDataBrowserPrivate; -class Q_EXPORT TQDataBrowser : public TQWidget +class TQ_EXPORT TQDataBrowser : public TQWidget { TQ_OBJECT TQ_PROPERTY( bool boundaryChecking READ boundaryChecking WRITE setBoundaryChecking ) diff --git a/doc/html/qdatastream-h.html b/doc/html/qdatastream-h.html index f8f5f20c2..e9f8331a1 100644 --- a/doc/html/qdatastream-h.html +++ b/doc/html/qdatastream-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #endif // QT_H #ifndef TQT_NO_DATASTREAM -class Q_EXPORT TQDataStream // data stream class +class TQ_EXPORT TQDataStream // data stream class { public: TQDataStream(); diff --git a/doc/html/qdatatable-h.html b/doc/html/qdatatable-h.html index d53e4f3e0..36fca8a47 100644 --- a/doc/html/qdatatable-h.html +++ b/doc/html/qdatatable-h.html @@ -90,7 +90,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL_VIEW_WIDGETS diff --git a/doc/html/qdataview-h.html b/doc/html/qdataview-h.html index 1ac5c535e..9f9710812 100644 --- a/doc/html/qdataview-h.html +++ b/doc/html/qdataview-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL_VIEW_WIDGETS diff --git a/doc/html/qdatetime-h.html b/doc/html/qdatetime-h.html index 3a91305da..23195e7ef 100644 --- a/doc/html/qdatetime-h.html +++ b/doc/html/qdatetime-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } TQDate class *****************************************************************************/ -class Q_EXPORT TQDate +class TQ_EXPORT TQDate { public: TQDate() { jd = 0; } @@ -149,8 +149,8 @@ private: uint jd; friend class TQDateTime; #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDate & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQDate & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDate & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQDate & ); #endif }; @@ -159,7 +159,7 @@ private: TQTime class *****************************************************************************/ -class Q_EXPORT TQTime +class TQ_EXPORT TQTime { public: TQTime() { ds=0; } // set null time @@ -210,8 +210,8 @@ private: uint ds; friend class TQDateTime; #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQTime & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQTime & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQTime & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQTime & ); #endif }; @@ -220,7 +220,7 @@ private: TQDateTime class *****************************************************************************/ -class Q_EXPORT TQDateTime +class TQ_EXPORT TQDateTime { public: TQDateTime() {} // set null date and null time @@ -266,8 +266,8 @@ private: TQDate d; TQTime t; #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDateTime &); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQDateTime & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDateTime &); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQDateTime & ); #endif }; @@ -277,12 +277,12 @@ private: *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDate & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQDate & ); -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQTime & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQTime & ); -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDateTime & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQDateTime & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDate & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQDate & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQTime & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQTime & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQDateTime & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQDateTime & ); #endif // TQT_NO_DATASTREAM #endif // TQDATETIME_H diff --git a/doc/html/qdatetimeedit-h.html b/doc/html/qdatetimeedit-h.html index 25799f4ec..1d710ba5e 100644 --- a/doc/html/qdatetimeedit-h.html +++ b/doc/html/qdatetimeedit-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_DATETIMEEDIT -class Q_EXPORT TQDateTimeEditBase : public TQWidget +class TQ_EXPORT TQDateTimeEditBase : public TQWidget { TQ_OBJECT public: @@ -110,7 +110,7 @@ private: class TQDateEditPrivate; -class Q_EXPORT TQDateEdit : public TQDateTimeEditBase +class TQ_EXPORT TQDateEdit : public TQDateTimeEditBase { TQ_OBJECT TQ_ENUMS( Order ) @@ -190,7 +190,7 @@ private: class TQTimeEditPrivate; -class Q_EXPORT TQTimeEdit : public TQDateTimeEditBase +class TQ_EXPORT TQTimeEdit : public TQDateTimeEditBase { TQ_OBJECT TQ_SETS( Display ) @@ -274,7 +274,7 @@ private: class TQDateTimeEditPrivate; -class Q_EXPORT TQDateTimeEdit : public TQWidget +class TQ_EXPORT TQDateTimeEdit : public TQWidget { TQ_OBJECT TQ_PROPERTY( TQDateTime dateTime READ dateTime WRITE setDateTime ) diff --git a/doc/html/qdesktopwidget-h.html b/doc/html/qdesktopwidget-h.html index e2c43d5f1..ab63f2878 100644 --- a/doc/html/qdesktopwidget-h.html +++ b/doc/html/qdesktopwidget-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } class TQApplication; class TQDesktopWidgetPrivate; /* Don't touch! */ -class Q_EXPORT TQDesktopWidget : public TQWidget +class TQ_EXPORT TQDesktopWidget : public TQWidget { TQ_OBJECT public: diff --git a/doc/html/qdial-h.html b/doc/html/qdial-h.html index 584a11277..1765a68e5 100644 --- a/doc/html/qdial-h.html +++ b/doc/html/qdial-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQDialPrivate; -class Q_EXPORT TQDial: public TQWidget, public TQRangeControl +class TQ_EXPORT TQDial: public TQWidget, public TQRangeControl { TQ_OBJECT TQ_PROPERTY( bool tracking READ tracking WRITE setTracking ) diff --git a/doc/html/qdialog-h.html b/doc/html/qdialog-h.html index 185b3d0f9..3abf629fc 100644 --- a/doc/html/qdialog-h.html +++ b/doc/html/qdialog-h.html @@ -88,7 +88,7 @@ TQ_OBJECT class TQPushButton; class TQDialogPrivate; -class Q_EXPORT TQDialog : public TQWidget +class TQ_EXPORT TQDialog : public TQWidget { friend class TQPushButton; TQ_OBJECT diff --git a/doc/html/qdir-h.html b/doc/html/qdir-h.html index f497d7558..935aa96d1 100644 --- a/doc/html/qdir-h.html +++ b/doc/html/qdir-h.html @@ -91,7 +91,7 @@ class TQStringList; template <class T> class TQDeepCopy; -class Q_EXPORT TQDir +class TQ_EXPORT TQDir { public: enum FilterSpec { Dirs = 0x001, diff --git a/doc/html/qdirectpainter_qws-h.html b/doc/html/qdirectpainter_qws-h.html index 78ac7bdf9..809773524 100644 --- a/doc/html/qdirectpainter_qws-h.html +++ b/doc/html/qdirectpainter_qws-h.html @@ -81,7 +81,7 @@ body { background: #ffffff; color: black; } #ifdef Q_WS_QWS #ifndef TQT_NO_DIRECTPAINTER -class Q_EXPORT TQDirectPainter : public TQPainter { +class TQ_EXPORT TQDirectPainter : public TQPainter { public: TQDirectPainter( const TQWidget* ); ~TQDirectPainter(); diff --git a/doc/html/qdns-h.html b/doc/html/qdns-h.html index 93eef9cb1..6bc631f1e 100644 --- a/doc/html/qdns-h.html +++ b/doc/html/qdns-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK ) #define TQM_EXPORT_DNS #else -#define TQM_EXPORT_DNS Q_EXPORT +#define TQM_EXPORT_DNS TQ_EXPORT #endif #ifndef TQT_NO_DNS diff --git a/doc/html/qdockarea-h.html b/doc/html/qdockarea-h.html index 45e5622e3..b7b3badb7 100644 --- a/doc/html/qdockarea-h.html +++ b/doc/html/qdockarea-h.html @@ -96,7 +96,7 @@ class TQMouseEvent; class TQDockWindowResizeHandle; class TQDockAreaPrivate; -class Q_EXPORT TQDockAreaLayout : public TQLayout +class TQ_EXPORT TQDockAreaLayout : public TQLayout { TQ_OBJECT friend class TQDockArea; @@ -139,7 +139,7 @@ private: #endif }; -class Q_EXPORT TQDockArea : public TQWidget +class TQ_EXPORT TQDockArea : public TQWidget { TQ_OBJECT TQ_ENUMS( HandlePosition ) @@ -216,8 +216,8 @@ private: // Disabled copy constructor and operator= }; #ifndef TQT_NO_TEXTSTREAM -Q_EXPORT TQTextStream &operator<<( TQTextStream &, const TQDockArea & ); -Q_EXPORT TQTextStream &operator>>( TQTextStream &, TQDockArea & ); +TQ_EXPORT TQTextStream &operator<<( TQTextStream &, const TQDockArea & ); +TQ_EXPORT TQTextStream &operator>>( TQTextStream &, TQDockArea & ); #endif #define Q_DEFINED_QDOCKAREA diff --git a/doc/html/qdockwindow-h.html b/doc/html/qdockwindow-h.html index 601799854..a94d730c7 100644 --- a/doc/html/qdockwindow-h.html +++ b/doc/html/qdockwindow-h.html @@ -98,7 +98,7 @@ class TQDockWindowPrivate; class TQToolBar; class TQWindowsXPStyle; -class Q_EXPORT TQDockWindow : public TQFrame +class TQ_EXPORT TQDockWindow : public TQFrame { TQ_OBJECT TQ_ENUMS( CloseMode Place ) diff --git a/doc/html/qdom-h.html b/doc/html/qdom-h.html index 65167c05e..0151a1d52 100644 --- a/doc/html/qdom-h.html +++ b/doc/html/qdom-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #if !defined(TQT_MODULE_XML) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_XML ) #define TQM_EXPORT_DOM #else -#define TQM_EXPORT_DOM Q_EXPORT +#define TQM_EXPORT_DOM TQ_EXPORT #endif #ifndef TQT_NO_DOM diff --git a/doc/html/qdragobject-h.html b/doc/html/qdragobject-h.html index 7be03edad..ecfdc9c9e 100644 --- a/doc/html/qdragobject-h.html +++ b/doc/html/qdragobject-h.html @@ -90,7 +90,7 @@ class TQImageDragData; #ifndef TQT_NO_MIME -class Q_EXPORT TQDragObject: public TQObject, public TQMimeSource { +class TQ_EXPORT TQDragObject: public TQObject, public TQMimeSource { TQ_OBJECT public: TQDragObject( TQWidget * dragSource = 0, const char * name = 0 ); @@ -128,7 +128,7 @@ private: #endif }; -class Q_EXPORT TQStoredDrag: public TQDragObject { +class TQ_EXPORT TQStoredDrag: public TQDragObject { TQ_OBJECT TQStoredDragData * d; @@ -149,7 +149,7 @@ private: #endif }; -class Q_EXPORT TQTextDrag: public TQDragObject { +class TQ_EXPORT TQTextDrag: public TQDragObject { TQ_OBJECT TQTextDragPrivate* d; public: @@ -175,7 +175,7 @@ private: #endif }; -class Q_EXPORT TQImageDrag: public TQDragObject { +class TQ_EXPORT TQImageDrag: public TQDragObject { TQ_OBJECT TQImage img; TQStrList ofmts; @@ -203,7 +203,7 @@ private: }; -class Q_EXPORT TQUriDrag: public TQStoredDrag { +class TQ_EXPORT TQUriDrag: public TQStoredDrag { TQ_OBJECT public: @@ -232,7 +232,7 @@ private: #endif }; -class Q_EXPORT TQColorDrag : public TQStoredDrag +class TQ_EXPORT TQColorDrag : public TQStoredDrag { TQ_OBJECT TQColor color; @@ -263,7 +263,7 @@ typedef TQUriDrag TQUrlDrag; // member functions. // -class Q_EXPORT TQDragManager: public TQObject { +class TQ_EXPORT TQDragManager: public TQObject { TQ_OBJECT private: diff --git a/doc/html/qdrawutil-h.html b/doc/html/qdrawutil-h.html index f5e4d4487..ab3170dbd 100644 --- a/doc/html/qdrawutil-h.html +++ b/doc/html/qdrawutil-h.html @@ -94,52 +94,52 @@ class TQPixmap; // Standard shade drawing // -Q_EXPORT void qDrawShadeLine( TQPainter *p, int x1, int y1, int x2, int y2, +TQ_EXPORT void qDrawShadeLine( TQPainter *p, int x1, int y1, int x2, int y2, const TQColorGroup &g, bool sunken = TRUE, int lineWidth = 1, int midLineWidth = 0 ); -Q_EXPORT void qDrawShadeLine( TQPainter *p, const TQPoint &p1, const TQPoint &p2, +TQ_EXPORT void qDrawShadeLine( TQPainter *p, const TQPoint &p1, const TQPoint &p2, const TQColorGroup &g, bool sunken = TRUE, int lineWidth = 1, int midLineWidth = 0 ); -Q_EXPORT void qDrawShadeRect( TQPainter *p, int x, int y, int w, int h, +TQ_EXPORT void qDrawShadeRect( TQPainter *p, int x, int y, int w, int h, const TQColorGroup &, bool sunken=FALSE, int lineWidth = 1, int midLineWidth = 0, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawShadeRect( TQPainter *p, const TQRect &r, +TQ_EXPORT void qDrawShadeRect( TQPainter *p, const TQRect &r, const TQColorGroup &, bool sunken=FALSE, int lineWidth = 1, int midLineWidth = 0, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawShadePanel( TQPainter *p, int x, int y, int w, int h, +TQ_EXPORT void qDrawShadePanel( TQPainter *p, int x, int y, int w, int h, const TQColorGroup &, bool sunken=FALSE, int lineWidth = 1, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawShadePanel( TQPainter *p, const TQRect &r, +TQ_EXPORT void qDrawShadePanel( TQPainter *p, const TQRect &r, const TQColorGroup &, bool sunken=FALSE, int lineWidth = 1, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawWinButton( TQPainter *p, int x, int y, int w, int h, +TQ_EXPORT void qDrawWinButton( TQPainter *p, int x, int y, int w, int h, const TQColorGroup &g, bool sunken = FALSE, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawWinButton( TQPainter *p, const TQRect &r, +TQ_EXPORT void qDrawWinButton( TQPainter *p, const TQRect &r, const TQColorGroup &g, bool sunken = FALSE, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawWinPanel( TQPainter *p, int x, int y, int w, int h, +TQ_EXPORT void qDrawWinPanel( TQPainter *p, int x, int y, int w, int h, const TQColorGroup &, bool sunken=FALSE, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawWinPanel( TQPainter *p, const TQRect &r, +TQ_EXPORT void qDrawWinPanel( TQPainter *p, const TQRect &r, const TQColorGroup &, bool sunken=FALSE, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawPlainRect( TQPainter *p, int x, int y, int w, int h, const TQColor &, +TQ_EXPORT void qDrawPlainRect( TQPainter *p, int x, int y, int w, int h, const TQColor &, int lineWidth = 1, const TQBrush *fill = 0 ); -Q_EXPORT void qDrawPlainRect( TQPainter *p, const TQRect &r, const TQColor &, +TQ_EXPORT void qDrawPlainRect( TQPainter *p, const TQRect &r, const TQColor &, int lineWidth = 1, const TQBrush *fill = 0 ); @@ -147,16 +147,16 @@ Q_EXPORT void qDrawPlainRect( TQPainter *p, const TQRect &r, const TQColor & // Other obsolete drawing functions. // Use TQStyle::itemRect(), TQStyle::drawItem() and TQStyle::drawArrow() instead. // -Q_EXPORT TQRect qItemRect( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h, +TQ_EXPORT TQRect qItemRect( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h, int flags, bool enabled, const TQPixmap *pixmap, const TQString& text, int len=-1 ); -Q_EXPORT void qDrawItem( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h, +TQ_EXPORT void qDrawItem( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h, int flags, const TQColorGroup &g, bool enabled, const TQPixmap *pixmap, const TQString& text, int len=-1, const TQColor* penColor = 0 ); -Q_EXPORT void qDrawArrow( TQPainter *p, TQt::ArrowType type, TQt::GUIStyle style, bool down, +TQ_EXPORT void qDrawArrow( TQPainter *p, TQt::ArrowType type, TQt::GUIStyle style, bool down, int x, int y, int w, int h, const TQColorGroup &g, bool enabled ); diff --git a/doc/html/qdropsite-h.html b/doc/html/qdropsite-h.html index 349b6fc44..050645d72 100644 --- a/doc/html/qdropsite-h.html +++ b/doc/html/qdropsite-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQWidget; -class Q_EXPORT TQDropSite { +class TQ_EXPORT TQDropSite { public: TQDropSite( TQWidget* parent ); virtual ~TQDropSite(); diff --git a/doc/html/qeditorfactory-h.html b/doc/html/qeditorfactory-h.html index 5492f2303..d1789af3d 100644 --- a/doc/html/qeditorfactory-h.html +++ b/doc/html/qeditorfactory-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL_EDIT_WIDGETS diff --git a/doc/html/qerrormessage-h.html b/doc/html/qerrormessage-h.html index 3905a72f9..6b363eaf1 100644 --- a/doc/html/qerrormessage-h.html +++ b/doc/html/qerrormessage-h.html @@ -90,7 +90,7 @@ class TQStringList; template<class type> class TQDict; -class Q_EXPORT TQErrorMessage: public TQDialog { +class TQ_EXPORT TQErrorMessage: public TQDialog { TQ_OBJECT public: TQErrorMessage( TQWidget* parent, const char* name=0 ); diff --git a/doc/html/qeucjpcodec-h.html b/doc/html/qeucjpcodec-h.html index 3363fb071..8c28e8982 100644 --- a/doc/html/qeucjpcodec-h.html +++ b/doc/html/qeucjpcodec-h.html @@ -116,7 +116,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_CODECS_JP #else -#define Q_EXPORT_CODECS_JP Q_EXPORT +#define Q_EXPORT_CODECS_JP TQ_EXPORT #endif class Q_EXPORT_CODECS_JP TQEucJpCodec : public TQTextCodec { diff --git a/doc/html/qeuckrcodec-h.html b/doc/html/qeuckrcodec-h.html index 7b6d947c8..0446d1a58 100644 --- a/doc/html/qeuckrcodec-h.html +++ b/doc/html/qeuckrcodec-h.html @@ -111,7 +111,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_CODECS_KR #else -#define Q_EXPORT_CODECS_KR Q_EXPORT +#define Q_EXPORT_CODECS_KR TQ_EXPORT #endif class Q_EXPORT_CODECS_KR TQEucKrCodec : public TQTextCodec { diff --git a/doc/html/qevent-h.html b/doc/html/qevent-h.html index 49f05c9ff..ca644045e 100644 --- a/doc/html/qevent-h.html +++ b/doc/html/qevent-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } #include "ntqpair.h" #endif // QT_H -class Q_EXPORT TQEvent: public TQt // event base class +class TQ_EXPORT TQEvent: public TQt // event base class { public: enum Type { @@ -196,7 +196,7 @@ private: }; -class Q_EXPORT TQTimerEvent : public TQEvent +class TQ_EXPORT TQTimerEvent : public TQEvent { public: TQTimerEvent( int timerId ) @@ -207,7 +207,7 @@ protected: }; -class Q_EXPORT TQMouseEvent : public TQEvent +class TQ_EXPORT TQMouseEvent : public TQEvent { public: TQMouseEvent( Type type, const TQPoint &pos, int button, int state ); @@ -238,7 +238,7 @@ protected: #ifndef TQT_NO_WHEELEVENT -class Q_EXPORT TQWheelEvent : public TQEvent +class TQ_EXPORT TQWheelEvent : public TQEvent { public: TQWheelEvent( const TQPoint &pos, int delta, int state, Orientation orient = Vertical ); @@ -267,7 +267,7 @@ protected: }; #endif -class Q_EXPORT TQTabletEvent : public TQEvent +class TQ_EXPORT TQTabletEvent : public TQEvent { public: enum TabletDevice { NoDevice = -1, Puck, Stylus, Eraser }; @@ -306,7 +306,7 @@ protected: }; -class Q_EXPORT TQKeyEvent : public TQEvent +class TQ_EXPORT TQKeyEvent : public TQEvent { public: TQKeyEvent( Type type, int key, int ascii, int state, @@ -338,7 +338,7 @@ protected: }; -class Q_EXPORT TQFocusEvent : public TQEvent +class TQ_EXPORT TQFocusEvent : public TQEvent { public: @@ -359,7 +359,7 @@ private: }; -class Q_EXPORT TQPaintEvent : public TQEvent +class TQ_EXPORT TQPaintEvent : public TQEvent { public: TQPaintEvent( const TQRegion& paintRegion, bool erased = TRUE) @@ -390,7 +390,7 @@ protected: }; -class Q_EXPORT TQMoveEvent : public TQEvent +class TQ_EXPORT TQMoveEvent : public TQEvent { public: TQMoveEvent( const TQPoint &pos, const TQPoint &oldPos ) @@ -404,7 +404,7 @@ protected: }; -class Q_EXPORT TQResizeEvent : public TQEvent +class TQ_EXPORT TQResizeEvent : public TQEvent { public: TQResizeEvent( const TQSize &size, const TQSize &oldSize ) @@ -418,7 +418,7 @@ protected: }; -class Q_EXPORT TQCloseEvent : public TQEvent +class TQ_EXPORT TQCloseEvent : public TQEvent { public: TQCloseEvent() @@ -431,7 +431,7 @@ protected: }; -class Q_EXPORT TQIconDragEvent : public TQEvent +class TQ_EXPORT TQIconDragEvent : public TQEvent { public: TQIconDragEvent() @@ -444,7 +444,7 @@ protected: bool accpt; }; -class Q_EXPORT TQShowEvent : public TQEvent +class TQ_EXPORT TQShowEvent : public TQEvent { public: TQShowEvent() @@ -452,14 +452,14 @@ public: }; -class Q_EXPORT TQHideEvent : public TQEvent +class TQ_EXPORT TQHideEvent : public TQEvent { public: TQHideEvent() : TQEvent(Hide) {} }; -class Q_EXPORT TQContextMenuEvent : public TQEvent +class TQ_EXPORT TQContextMenuEvent : public TQEvent { public: enum Reason { Mouse, Keyboard, Other }; @@ -495,7 +495,7 @@ protected: }; -class Q_EXPORT TQIMEvent : public TQEvent +class TQ_EXPORT TQIMEvent : public TQEvent { public: TQIMEvent( Type type, const TQString &text, int cursorPosition ) @@ -513,7 +513,7 @@ private: bool a; }; -class Q_EXPORT TQIMComposeEvent : public TQIMEvent +class TQ_EXPORT TQIMComposeEvent : public TQIMEvent { public: TQIMComposeEvent( Type type, const TQString &text, int cursorPosition, @@ -540,7 +540,7 @@ inline int TQIMEvent::selectionLength() const // own DND event objects, write to qt-bugs@trolltech.com and we'll try to // find a way to extend it so it covers your needs. -class Q_EXPORT TQDropEvent : public TQEvent, public TQMimeSource +class TQ_EXPORT TQDropEvent : public TQEvent, public TQMimeSource { public: TQDropEvent( const TQPoint& pos, Type typ=Drop ) @@ -579,7 +579,7 @@ protected: -class Q_EXPORT TQDragMoveEvent : public TQDropEvent +class TQ_EXPORT TQDragMoveEvent : public TQDropEvent { public: TQDragMoveEvent( const TQPoint& pos, Type typ=DragMove ) @@ -596,7 +596,7 @@ protected: }; -class Q_EXPORT TQDragEnterEvent : public TQDragMoveEvent +class TQ_EXPORT TQDragEnterEvent : public TQDragMoveEvent { public: TQDragEnterEvent( const TQPoint& pos ) : @@ -605,7 +605,7 @@ public: /* An internal class */ -class Q_EXPORT TQDragResponseEvent : public TQEvent +class TQ_EXPORT TQDragResponseEvent : public TQEvent { public: TQDragResponseEvent( bool accepted ) @@ -616,7 +616,7 @@ protected: }; -class Q_EXPORT TQDragLeaveEvent : public TQEvent +class TQ_EXPORT TQDragLeaveEvent : public TQEvent { public: TQDragLeaveEvent() @@ -625,7 +625,7 @@ public: #endif // TQT_NO_DRAGANDDROP -class Q_EXPORT TQChildEvent : public TQEvent +class TQ_EXPORT TQChildEvent : public TQEvent { public: TQChildEvent( Type type, TQObject *child ) @@ -638,7 +638,7 @@ protected: }; -class Q_EXPORT TQCustomEvent : public TQEvent +class TQ_EXPORT TQCustomEvent : public TQEvent { public: TQCustomEvent( int type ); diff --git a/doc/html/qeventloop-h.html b/doc/html/qeventloop-h.html index 2221f85b3..c766fecee 100644 --- a/doc/html/qeventloop-h.html +++ b/doc/html/qeventloop-h.html @@ -93,7 +93,7 @@ class TQMutex; #endif // TQT_THREAD_SUPPORT -class Q_EXPORT TQEventLoop : public TQObject +class TQ_EXPORT TQEventLoop : public TQObject { TQ_OBJECT diff --git a/doc/html/qfile-h.html b/doc/html/qfile-h.html index 763c4c5ea..67716de0a 100644 --- a/doc/html/qfile-h.html +++ b/doc/html/qfile-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQDir; class TQFilePrivate; -class Q_EXPORT TQFile : public TQIODevice // file I/O device class +class TQ_EXPORT TQFile : public TQIODevice // file I/O device class { public: TQFile(); diff --git a/doc/html/qfiledialog-h.html b/doc/html/qfiledialog-h.html index ac25a627d..e0698e3db 100644 --- a/doc/html/qfiledialog-h.html +++ b/doc/html/qfiledialog-h.html @@ -103,7 +103,7 @@ class TQFileDialogTQFileListView; #ifndef TQT_NO_FILEDIALOG -class Q_EXPORT TQFileIconProvider : public TQObject +class TQ_EXPORT TQFileIconProvider : public TQObject { TQ_OBJECT public: @@ -117,7 +117,7 @@ private: // Disabled copy constructor and operator= #endif }; -class Q_EXPORT TQFilePreview +class TQ_EXPORT TQFilePreview { public: TQFilePreview(); @@ -125,7 +125,7 @@ public: }; -class Q_EXPORT TQFileDialog : public TQDialog +class TQ_EXPORT TQFileDialog : public TQDialog { TQ_OBJECT TQ_ENUMS( Mode ViewMode PreviewMode ) diff --git a/doc/html/qfileinfo-h.html b/doc/html/qfileinfo-h.html index 4b82fc655..c37b125b0 100644 --- a/doc/html/qfileinfo-h.html +++ b/doc/html/qfileinfo-h.html @@ -88,7 +88,7 @@ struct TQFileInfoCache; template <class T> class TQDeepCopy; -class Q_EXPORT TQFileInfo +class TQ_EXPORT TQFileInfo { public: enum PermissionSpec { diff --git a/doc/html/qfocusdata-h.html b/doc/html/qfocusdata-h.html index da9901911..57cc6ca47 100644 --- a/doc/html/qfocusdata-h.html +++ b/doc/html/qfocusdata-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQFocusData { +class TQ_EXPORT TQFocusData { public: TQWidget* focusWidget() const { return it.current(); } diff --git a/doc/html/qfont-h.html b/doc/html/qfont-h.html index 76f0b23c8..9bf038c80 100644 --- a/doc/html/qfont-h.html +++ b/doc/html/qfont-h.html @@ -87,7 +87,7 @@ class TQFontPrivate; /* don't touch */ class TQStringList; class TQTextFormatCollection; -class Q_EXPORT TQFont +class TQ_EXPORT TQFont { public: enum StyleHint { @@ -377,8 +377,8 @@ private: friend TQt::HANDLE qt_xft_handle(const TQFont &font); #endif #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); #endif TQFontPrivate *d; @@ -400,8 +400,8 @@ inline void TQFont::setBold( bool enable ) *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQFont & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQFont & ); #endif diff --git a/doc/html/qfontdatabase-h.html b/doc/html/qfontdatabase-h.html index 565b48b2e..9fc00a254 100644 --- a/doc/html/qfontdatabase-h.html +++ b/doc/html/qfontdatabase-h.html @@ -100,7 +100,7 @@ class TQDiskFont; class TQFontDatabasePrivate; -class Q_EXPORT TQFontDatabase +class TQ_EXPORT TQFontDatabase { public: static TQValueList<int> standardSizes(); diff --git a/doc/html/qfontdialog-h.html b/doc/html/qfontdialog-h.html index e0dbac877..4a0042290 100644 --- a/doc/html/qfontdialog-h.html +++ b/doc/html/qfontdialog-h.html @@ -98,7 +98,7 @@ body { background: #ffffff; color: black; } class TQFontDialogPrivate; -class Q_EXPORT TQFontDialog: public TQDialog +class TQ_EXPORT TQFontDialog: public TQDialog { TQ_OBJECT diff --git a/doc/html/qfontinfo-h.html b/doc/html/qfontinfo-h.html index 6630344fc..fc91abf11 100644 --- a/doc/html/qfontinfo-h.html +++ b/doc/html/qfontinfo-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQFontInfo +class TQ_EXPORT TQFontInfo { public: TQFontInfo( const TQFont & ); diff --git a/doc/html/qfontmetrics-h.html b/doc/html/qfontmetrics-h.html index ced78f9cc..9aaf526dc 100644 --- a/doc/html/qfontmetrics-h.html +++ b/doc/html/qfontmetrics-h.html @@ -89,7 +89,7 @@ class TQFontEngine; class TQTextCodec; class TQTextParag; -class Q_EXPORT TQFontMetrics +class TQ_EXPORT TQFontMetrics { public: TQFontMetrics( const TQFont & ); diff --git a/doc/html/qframe-h.html b/doc/html/qframe-h.html index 8d1943fe5..7046f55a8 100644 --- a/doc/html/qframe-h.html +++ b/doc/html/qframe-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_FRAME -class Q_EXPORT TQFrame : public TQWidget +class TQ_EXPORT TQFrame : public TQWidget { TQ_OBJECT TQ_ENUMS( Shape Shadow ) diff --git a/doc/html/qftp-h.html b/doc/html/qftp-h.html index b81ee5c2c..220b56666 100644 --- a/doc/html/qftp-h.html +++ b/doc/html/qftp-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK ) #define TQM_EXPORT_FTP #else -#define TQM_EXPORT_FTP Q_EXPORT +#define TQM_EXPORT_FTP TQ_EXPORT #endif #ifndef TQT_NO_NETWORKPROTOCOL_FTP diff --git a/doc/html/qgb18030codec-h.html b/doc/html/qgb18030codec-h.html index c6cf889e4..663055631 100644 --- a/doc/html/qgb18030codec-h.html +++ b/doc/html/qgb18030codec-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_CODECS_CN #else -#define Q_EXPORT_CODECS_CN Q_EXPORT +#define Q_EXPORT_CODECS_CN TQ_EXPORT #endif class Q_EXPORT_CODECS_CN TQGb18030Codec : public TQTextCodec { diff --git a/doc/html/qgfx_qws-h.html b/doc/html/qgfx_qws-h.html index c3e3009ea..7772fecae 100644 --- a/doc/html/qgfx_qws-h.html +++ b/doc/html/qgfx_qws-h.html @@ -354,7 +354,7 @@ protected: extern TQScreen * qt_screen; -class Q_EXPORT TQGfx : public TQt { +class TQ_EXPORT TQGfx : public TQt { public: // With loadable drivers, do probe here static TQGfx *createGfx( int depth, unsigned char *buffer, diff --git a/doc/html/qgfxdriverfactory_qws-h.html b/doc/html/qgfxdriverfactory_qws-h.html index e3e741b98..beb31b0b7 100644 --- a/doc/html/qgfxdriverfactory_qws-h.html +++ b/doc/html/qgfxdriverfactory_qws-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } class TQString; class TQScreen; -class Q_EXPORT TQGfxDriverFactory +class TQ_EXPORT TQGfxDriverFactory { public: #ifndef TQT_NO_STRINGLIST diff --git a/doc/html/qgfxdriverplugin.html b/doc/html/qgfxdriverplugin.html index 34c8336d9..787688e92 100644 --- a/doc/html/qgfxdriverplugin.html +++ b/doc/html/qgfxdriverplugin.html @@ -53,7 +53,7 @@ TQt/Embedded graphics driver plugins. it easy to create custom graphics drivers. <p> Writing a graphics driver plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>() and -<a href="#create">create</a>(), and exporting the class with the <tt>Q_EXPORT_PLUGIN</tt> +<a href="#create">create</a>(), and exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the <a href="plugins-howto.html">Plugins documentation</a> for details. <p> This class is only available in TQt/Embedded. @@ -63,7 +63,7 @@ macro. See the <a href="plugins-howto.html">Plugins <h3 class=fn><a name="TQGfxDriverPlugin"></a>TQGfxDriverPlugin::TQGfxDriverPlugin () </h3> Constructs a graphics driver plugin. This is invoked automatically -by the <tt>Q_EXPORT_PLUGIN</tt> macro. +by the <tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQGfxDriverPlugin"></a>TQGfxDriverPlugin::~TQGfxDriverPlugin () </h3> diff --git a/doc/html/qgfxdriverplugin_qws-h.html b/doc/html/qgfxdriverplugin_qws-h.html index 76022fa1e..c8934835b 100644 --- a/doc/html/qgfxdriverplugin_qws-h.html +++ b/doc/html/qgfxdriverplugin_qws-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQScreen; class TQGfxDriverPluginPrivate; -class Q_EXPORT TQGfxDriverPlugin : public TQGPlugin +class TQ_EXPORT TQGfxDriverPlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qgl-h.html b/doc/html/qgl-h.html index 341b5f02e..5476f63f4 100644 --- a/doc/html/qgl-h.html +++ b/doc/html/qgl-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_OPENGL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_OPENGL #else -#define TQM_EXPORT_OPENGL Q_EXPORT +#define TQM_EXPORT_OPENGL TQ_EXPORT #endif #ifndef TQT_NO_COMPAT diff --git a/doc/html/qglcolormap-h.html b/doc/html/qglcolormap-h.html index 5c866f49f..a0aa8ff4c 100644 --- a/doc/html/qglcolormap-h.html +++ b/doc/html/qglcolormap-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_OPENGL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_OPENGL #else -#define TQM_EXPORT_OPENGL Q_EXPORT +#define TQM_EXPORT_OPENGL TQ_EXPORT #endif class TQWidget; diff --git a/doc/html/qglobal-h.html b/doc/html/qglobal-h.html index 7716167c3..0432bdf6a 100644 --- a/doc/html/qglobal-h.html +++ b/doc/html/qglobal-h.html @@ -879,12 +879,12 @@ class TQDataStream; # if defined(QT_DLL) # undef QT_DLL # endif -# define Q_EXPORT __declspec(dllexport) +# define TQ_EXPORT __declspec(dllexport) # define Q_TEMPLATEDLL # define Q_TEMPLATE_EXTERN # undef TQ_DISABLE_COPY /* avoid unresolved externals */ # elif defined(QT_DLL) /* use a TQt DLL library */ -# define Q_EXPORT __declspec(dllimport) +# define TQ_EXPORT __declspec(dllimport) # define Q_TEMPLATEDLL # ifndef Q_TEMPLATE_EXTERN # if defined(Q_CC_MSVC_NET) @@ -897,7 +897,7 @@ class TQDataStream; # endif #elif defined(Q_OS_LINUX) && defined(Q_CC_BOR) # if defined(QT_SHARED) /* create a TQt shared library */ -# define Q_EXPORT __declspec(dllexport) +# define TQ_EXPORT __declspec(dllexport) # define Q_TEMPLATEDLL # define Q_TEMPLATE_EXTERN # undef TQ_DISABLE_COPY /* avoid unresolved externals */ @@ -911,8 +911,8 @@ class TQDataStream; # undef QT_DLL #endif -#ifndef Q_EXPORT -# define Q_EXPORT +#ifndef TQ_EXPORT +# define TQ_EXPORT #endif @@ -921,7 +921,7 @@ class TQDataStream; // #if defined(Q_WS_WIN) -extern Q_EXPORT bool qt_winunicode; +extern TQ_EXPORT bool qt_winunicode; #endif @@ -929,13 +929,13 @@ extern Q_EXPORT bool qt_winunicode; // System information // -Q_EXPORT const char *tqVersion(); -Q_EXPORT bool tqSysInfo( int *wordSize, bool *bigEndian ); -Q_EXPORT bool tqSharedBuild(); +TQ_EXPORT const char *tqVersion(); +TQ_EXPORT bool tqSysInfo( int *wordSize, bool *bigEndian ); +TQ_EXPORT bool tqSharedBuild(); #if defined(Q_OS_MAC) int qMacVersion(); #elif defined(Q_WS_WIN) -Q_EXPORT int qWinVersion(); +TQ_EXPORT int qWinVersion(); #if defined(UNICODE) #define QT_WA( uni, ansi ) if ( qt_winunicode ) { uni } else { ansi } #define QT_WA_INLINE( uni, ansi ) ( qt_winunicode ? uni : ansi ) @@ -990,25 +990,25 @@ Q_EXPORT int qWinVersion(); #endif -Q_EXPORT void tqDebug( const char *, ... ) // print debug message +TQ_EXPORT void tqDebug( const char *, ... ) // print debug message #if defined(Q_CC_GNU) && !defined(__INSURE__) __attribute__ ((format (printf, 1, 2))) #endif ; -Q_EXPORT void tqWarning( const char *, ... ) // print warning message +TQ_EXPORT void tqWarning( const char *, ... ) // print warning message #if defined(Q_CC_GNU) && !defined(__INSURE__) __attribute__ ((format (printf, 1, 2))) #endif ; -Q_EXPORT void tqFatal( const char *, ... ) // print fatal message and exit +TQ_EXPORT void tqFatal( const char *, ... ) // print fatal message and exit #if defined(Q_CC_GNU) __attribute__ ((format (printf, 1, 2))) #endif ; -Q_EXPORT void tqSystemWarning( const char *, int code = -1 ); +TQ_EXPORT void tqSystemWarning( const char *, int code = -1 ); #if !defined(Q_ASSERT) @@ -1032,7 +1032,7 @@ Q_EXPORT void tqSystemWarning( const char *, int code = -1 ); #endif // TQT_NO_COMPAT -Q_EXPORT bool tqt_check_pointer( bool c, const char *, int ); +TQ_EXPORT bool tqt_check_pointer( bool c, const char *, int ); #if defined(QT_CHECK_NULL) # define TQ_CHECK_PTR(p) (tqt_check_pointer((p)==0,__FILE__,__LINE__)) @@ -1043,33 +1043,33 @@ Q_EXPORT bool tqt_check_pointer( bool c, const char *, int ); enum TQtMsgType { TQtDebugMsg, TQtWarningMsg, TQtFatalMsg }; typedef void (*TQtMsgHandler)(TQtMsgType, const char *); -Q_EXPORT TQtMsgHandler qInstallMsgHandler( TQtMsgHandler ); +TQ_EXPORT TQtMsgHandler qInstallMsgHandler( TQtMsgHandler ); #if !defined(TQT_NO_COMPAT) // compatibility with TQt 2 typedef TQtMsgHandler msg_handler; #endif // TQT_NO_COMPAT -Q_EXPORT void tqSuppressObsoleteWarnings( bool = TRUE ); +TQ_EXPORT void tqSuppressObsoleteWarnings( bool = TRUE ); -Q_EXPORT void tqObsolete( const char *obj, const char *oldfunc, +TQ_EXPORT void tqObsolete( const char *obj, const char *oldfunc, const char *newfunc ); -Q_EXPORT void tqObsolete( const char *obj, const char *oldfunc ); -Q_EXPORT void tqObsolete( const char *message ); +TQ_EXPORT void tqObsolete( const char *obj, const char *oldfunc ); +TQ_EXPORT void tqObsolete( const char *message ); // // Install paths from configure // -Q_EXPORT const char *tqInstallPath(); -Q_EXPORT const char *tqInstallPathDocs(); -Q_EXPORT const char *tqInstallPathHeaders(); -Q_EXPORT const char *tqInstallPathLibs(); -Q_EXPORT const char *tqInstallPathBins(); -Q_EXPORT const char *tqInstallPathPlugins(); -Q_EXPORT const char *tqInstallPathData(); -Q_EXPORT const char *tqInstallPathTranslations(); -Q_EXPORT const char *tqInstallPathSysconf(); +TQ_EXPORT const char *tqInstallPath(); +TQ_EXPORT const char *tqInstallPathDocs(); +TQ_EXPORT const char *tqInstallPathHeaders(); +TQ_EXPORT const char *tqInstallPathLibs(); +TQ_EXPORT const char *tqInstallPathBins(); +TQ_EXPORT const char *tqInstallPathPlugins(); +TQ_EXPORT const char *tqInstallPathData(); +TQ_EXPORT const char *tqInstallPathTranslations(); +TQ_EXPORT const char *tqInstallPathSysconf(); #endif /* __cplusplus */ diff --git a/doc/html/qgrid-h.html b/doc/html/qgrid-h.html index 2336a3595..e4d9b8815 100644 --- a/doc/html/qgrid-h.html +++ b/doc/html/qgrid-h.html @@ -81,7 +81,7 @@ body { background: #ffffff; color: black; } class TQGridLayout; -class Q_EXPORT TQGrid : public TQFrame +class TQ_EXPORT TQGrid : public TQFrame { TQ_OBJECT public: diff --git a/doc/html/qgridview-h.html b/doc/html/qgridview-h.html index d9a15c7e8..441c1ff54 100644 --- a/doc/html/qgridview-h.html +++ b/doc/html/qgridview-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQGridViewPrivate; -class Q_EXPORT TQGridView : public TQScrollView +class TQ_EXPORT TQGridView : public TQScrollView { TQ_OBJECT TQ_PROPERTY( int numRows READ numRows WRITE setNumRows ) diff --git a/doc/html/qgroupbox-h.html b/doc/html/qgroupbox-h.html index 4fcbefa4f..8e0a8b9da 100644 --- a/doc/html/qgroupbox-h.html +++ b/doc/html/qgroupbox-h.html @@ -90,7 +90,7 @@ class TQVBoxLayout; class TQGridLayout; class TQSpacerItem; -class Q_EXPORT TQGroupBox : public TQFrame +class TQ_EXPORT TQGroupBox : public TQFrame { TQ_OBJECT TQ_PROPERTY( TQString title READ title WRITE setTitle ) diff --git a/doc/html/qguardedptr-h.html b/doc/html/qguardedptr-h.html index 6040b7f2f..4c7f91145 100644 --- a/doc/html/qguardedptr-h.html +++ b/doc/html/qguardedptr-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H // ### 4.0: rename to something without Private in it. Not really internal. -class Q_EXPORT TQGuardedPtrPrivate : public TQObject, public TQShared +class TQ_EXPORT TQGuardedPtrPrivate : public TQObject, public TQShared { TQ_OBJECT public: diff --git a/doc/html/qhbox-h.html b/doc/html/qhbox-h.html index 0693f024b..7f411638c 100644 --- a/doc/html/qhbox-h.html +++ b/doc/html/qhbox-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } class TQBoxLayout; -class Q_EXPORT TQHBox : public TQFrame +class TQ_EXPORT TQHBox : public TQFrame { TQ_OBJECT public: diff --git a/doc/html/qhbuttongroup-h.html b/doc/html/qhbuttongroup-h.html index 01b6a600a..6ba89ebc7 100644 --- a/doc/html/qhbuttongroup-h.html +++ b/doc/html/qhbuttongroup-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_HBUTTONGROUP -class Q_EXPORT TQHButtonGroup : public TQButtonGroup +class TQ_EXPORT TQHButtonGroup : public TQButtonGroup { TQ_OBJECT public: diff --git a/doc/html/qheader-h.html b/doc/html/qheader-h.html index f9a1e31ad..482fd337b 100644 --- a/doc/html/qheader-h.html +++ b/doc/html/qheader-h.html @@ -89,7 +89,7 @@ class TQShowEvent; class TQHeaderData; class TQTable; -class Q_EXPORT TQHeader : public TQWidget +class TQ_EXPORT TQHeader : public TQWidget { friend class TQTable; friend class TQTableHeader; @@ -248,7 +248,7 @@ inline TQHeader::Orientation TQHeader::orientation() const inline void TQHeader::setTracking( bool enable ) { trackingIsOn = enable; } inline bool TQHeader::tracking() const { return trackingIsOn; } -extern Q_EXPORT bool tqt_qheader_label_return_null_strings; // needed for professional edition +extern TQ_EXPORT bool tqt_qheader_label_return_null_strings; // needed for professional edition #endif // TQT_NO_HEADER diff --git a/doc/html/qhgroupbox-h.html b/doc/html/qhgroupbox-h.html index 14a1adeb5..5e18344a4 100644 --- a/doc/html/qhgroupbox-h.html +++ b/doc/html/qhgroupbox-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_HGROUPBOX -class Q_EXPORT TQHGroupBox : public TQGroupBox +class TQ_EXPORT TQHGroupBox : public TQGroupBox { TQ_OBJECT public: diff --git a/doc/html/qhostaddress-h.html b/doc/html/qhostaddress-h.html index cae9d608c..b0c2cce00 100644 --- a/doc/html/qhostaddress-h.html +++ b/doc/html/qhostaddress-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK ) #define TQM_EXPORT_NETWORK #else -#define TQM_EXPORT_NETWORK Q_EXPORT +#define TQM_EXPORT_NETWORK TQ_EXPORT #endif #ifndef TQT_NO_NETWORK diff --git a/doc/html/qhttp-h.html b/doc/html/qhttp-h.html index b27a2345c..2a814c552 100644 --- a/doc/html/qhttp-h.html +++ b/doc/html/qhttp-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #define TQM_EXPORT_HTTP #define TQM_TEMPLATE_EXTERN_HTTP #else -#define TQM_EXPORT_HTTP Q_EXPORT +#define TQM_EXPORT_HTTP TQ_EXPORT #define TQM_TEMPLATE_EXTERN_HTTP Q_TEMPLATE_EXTERN #endif diff --git a/doc/html/qiconset-h.html b/doc/html/qiconset-h.html index 1b736da5e..53944617c 100644 --- a/doc/html/qiconset-h.html +++ b/doc/html/qiconset-h.html @@ -88,7 +88,7 @@ class TQIconFactory; class TQIconSetPrivate; // ### Remove all 'virtual' functions in TQIconSet (but not TQIconFactory) in TQt 4.0 -class Q_EXPORT TQIconSet +class TQ_EXPORT TQIconSet { public: // the implementation makes assumptions about the value of these @@ -137,7 +137,7 @@ private: TQIconSetPrivate *d; }; -class Q_EXPORT TQIconFactory : private TQShared +class TQ_EXPORT TQIconFactory : private TQShared { public: TQIconFactory(); diff --git a/doc/html/qiconview-h.html b/doc/html/qiconview-h.html index e03f1b077..153d7b7ac 100644 --- a/doc/html/qiconview-h.html +++ b/doc/html/qiconview-h.html @@ -108,7 +108,7 @@ class TQIconDragPrivate; #ifndef TQT_NO_DRAGANDDROP -class Q_EXPORT TQIconDragItem +class TQ_EXPORT TQIconDragItem { public: TQIconDragItem(); @@ -122,7 +122,7 @@ private: }; -class Q_EXPORT TQIconDrag : public TQDragObject +class TQ_EXPORT TQIconDrag : public TQDragObject { TQ_OBJECT public: @@ -152,7 +152,7 @@ private: class TQIconViewToolTip; class TQIconViewItemPrivate; -class Q_EXPORT TQIconViewItem : public TQt +class TQ_EXPORT TQIconViewItem : public TQt { friend class TQIconView; friend class TQIconViewToolTip; @@ -295,7 +295,7 @@ private: class TQIconViewPrivate; /* don't touch */ -class Q_EXPORT TQIconView : public TQScrollView +class TQ_EXPORT TQIconView : public TQScrollView { friend class TQIconViewItem; friend class TQIconViewPrivate; diff --git a/doc/html/qimage-h.html b/doc/html/qimage-h.html index 27e0f3f68..b6b952c15 100644 --- a/doc/html/qimage-h.html +++ b/doc/html/qimage-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQImageDataMisc; // internal #ifndef TQT_NO_IMAGE_TEXT -class Q_EXPORT TQImageTextKeyLang { +class TQ_EXPORT TQImageTextKeyLang { public: TQImageTextKeyLang(const char* k, const char* l) : key(k), lang(l) { } TQImageTextKeyLang() { } @@ -101,7 +101,7 @@ public: #endif //TQT_NO_IMAGE_TEXT -class Q_EXPORT TQImage +class TQ_EXPORT TQImage { public: enum Endian { IgnoreEndian, BigEndian, LittleEndian }; @@ -285,7 +285,7 @@ private: #ifndef TQT_NO_IMAGEIO bool doImageIO( TQImageIO* io, int quality ) const; #endif - friend Q_EXPORT void bitBlt( TQImage* dst, int dx, int dy, + friend TQ_EXPORT void bitBlt( TQImage* dst, int dx, int dy, const TQImage* src, int sx, int sy, int sw, int sh, int conversion_flags ); }; @@ -294,8 +294,8 @@ private: // TQImage stream functions #if !defined(TQT_NO_DATASTREAM) && !defined(TQT_NO_IMAGEIO) -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQImage & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQImage & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQImage & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQImage & ); #endif #ifndef TQT_NO_IMAGEIO @@ -306,7 +306,7 @@ typedef void (*image_io_handler)( TQImageIO * ); // image IO handler struct TQImageIOData; -class Q_EXPORT TQImageIO +class TQ_EXPORT TQImageIO { public: TQImageIO(); @@ -370,7 +370,7 @@ private: // Disabled copy constructor and operator= #endif //TQT_NO_IMAGEIO -Q_EXPORT void bitBlt( TQImage* dst, int dx, int dy, const TQImage* src, +TQ_EXPORT void bitBlt( TQImage* dst, int dx, int dy, const TQImage* src, int sx=0, int sy=0, int sw=-1, int sh=-1, int conversion_flags=0 ); diff --git a/doc/html/qimageformatplugin-h.html b/doc/html/qimageformatplugin-h.html index d5e6ebf65..312a633e5 100644 --- a/doc/html/qimageformatplugin-h.html +++ b/doc/html/qimageformatplugin-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } class TQImageFormat; class TQImageFormatPluginPrivate; -class Q_EXPORT TQImageFormatPlugin : public TQGPlugin +class TQ_EXPORT TQImageFormatPlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qinputdialog-h.html b/doc/html/qinputdialog-h.html index 3989529ac..07db64afe 100644 --- a/doc/html/qinputdialog-h.html +++ b/doc/html/qinputdialog-h.html @@ -89,7 +89,7 @@ class TQSpinBox; class TQComboBox; class TQInputDialogPrivate; -class Q_EXPORT TQInputDialog : public TQDialog +class TQ_EXPORT TQInputDialog : public TQDialog { TQ_OBJECT diff --git a/doc/html/qiodevice-h.html b/doc/html/qiodevice-h.html index 4b505356c..60b0a78ba 100644 --- a/doc/html/qiodevice-h.html +++ b/doc/html/qiodevice-h.html @@ -124,7 +124,7 @@ body { background: #ffffff; color: black; } #define IO_UnspecifiedError 8 // unspecified error -class Q_EXPORT TQIODevice +class TQ_EXPORT TQIODevice { public: typedef TQ_ULONG Offset; diff --git a/doc/html/qjiscodec-h.html b/doc/html/qjiscodec-h.html index 319b1ae95..afe800535 100644 --- a/doc/html/qjiscodec-h.html +++ b/doc/html/qjiscodec-h.html @@ -116,7 +116,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_CODECS_JP #else -#define Q_EXPORT_CODECS_JP Q_EXPORT +#define Q_EXPORT_CODECS_JP TQ_EXPORT #endif class Q_EXPORT_CODECS_JP TQJisCodec : public TQTextCodec { diff --git a/doc/html/qkbddriverfactory_qws-h.html b/doc/html/qkbddriverfactory_qws-h.html index 88fdfede0..eaa5c69a7 100644 --- a/doc/html/qkbddriverfactory_qws-h.html +++ b/doc/html/qkbddriverfactory_qws-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } class TQString; class TQWSKeyboardHandler; -class Q_EXPORT TQKbdDriverFactory +class TQ_EXPORT TQKbdDriverFactory { public: #ifndef TQT_NO_STRINGLIST diff --git a/doc/html/qkbddriverplugin.html b/doc/html/qkbddriverplugin.html index e72719337..4eed2475a 100644 --- a/doc/html/qkbddriverplugin.html +++ b/doc/html/qkbddriverplugin.html @@ -53,7 +53,7 @@ TQt/Embedded keyboard driver plugins. it easy to create custom keyboard drivers. <p> Writing a keyboard driver plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>() and -<a href="#create">create</a>(), and exporting the class with the <tt>Q_EXPORT_PLUGIN</tt> +<a href="#create">create</a>(), and exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the <a href="plugins-howto.html">Plugins documentation</a> for details. <p> This class is only available in TQt/Embedded. @@ -63,7 +63,7 @@ macro. See the <a href="plugins-howto.html">Plugins <h3 class=fn><a name="TQKbdDriverPlugin"></a>TQKbdDriverPlugin::TQKbdDriverPlugin () </h3> Constructs a keyboard driver plugin. This is invoked automatically -by the <tt>Q_EXPORT_PLUGIN</tt> macro. +by the <tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQKbdDriverPlugin"></a>TQKbdDriverPlugin::~TQKbdDriverPlugin () </h3> diff --git a/doc/html/qkbddriverplugin_qws-h.html b/doc/html/qkbddriverplugin_qws-h.html index fa2ab5621..7631bff06 100644 --- a/doc/html/qkbddriverplugin_qws-h.html +++ b/doc/html/qkbddriverplugin_qws-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQWSKeyboardHandler; class TQKbdDriverPluginPrivate; -class Q_EXPORT TQKbdDriverPlugin : public TQGPlugin +class TQ_EXPORT TQKbdDriverPlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qkeysequence-h.html b/doc/html/qkeysequence-h.html index e0aeeb31b..eef29883f 100644 --- a/doc/html/qkeysequence-h.html +++ b/doc/html/qkeysequence-h.html @@ -91,13 +91,13 @@ body { background: #ffffff; color: black; } *****************************************************************************/ #ifndef TQT_NO_DATASTREAM class TQKeySequence; -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQKeySequence & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQKeySequence & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQKeySequence & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQKeySequence & ); #endif class TQKeySequencePrivate; -class Q_EXPORT TQKeySequence : public TQt +class TQ_EXPORT TQKeySequence : public TQt { public: TQKeySequence(); @@ -126,14 +126,14 @@ private: TQKeySequencePrivate* d; - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQKeySequence & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQKeySequence & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQKeySequence & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQKeySequence & ); friend class TQAccelManager; }; #else -class Q_EXPORT TQKeySequence : public TQt +class TQ_EXPORT TQKeySequence : public TQt { public: TQKeySequence() {} diff --git a/doc/html/qlabel-h.html b/doc/html/qlabel-h.html index a82c4ebfe..e5ef73951 100644 --- a/doc/html/qlabel-h.html +++ b/doc/html/qlabel-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQSimpleRichText; class TQLabelPrivate; -class Q_EXPORT TQLabel : public TQFrame +class TQ_EXPORT TQLabel : public TQFrame { TQ_OBJECT TQ_PROPERTY( TQString text READ text WRITE setText ) diff --git a/doc/html/qlayout-h.html b/doc/html/qlayout-h.html index 3df55a9b3..859d563cb 100644 --- a/doc/html/qlayout-h.html +++ b/doc/html/qlayout-h.html @@ -102,7 +102,7 @@ class TQMenuBar; class TQSpacerItem; class TQWidget; -class Q_EXPORT TQGLayoutIterator : public TQShared +class TQ_EXPORT TQGLayoutIterator : public TQShared { public: virtual ~TQGLayoutIterator(); @@ -111,7 +111,7 @@ public: virtual TQLayoutItem *takeCurrent() = 0; }; -class Q_EXPORT TQLayoutIterator +class TQ_EXPORT TQLayoutIterator { public: TQLayoutIterator( TQGLayoutIterator *i ) : it( i ) { } @@ -137,7 +137,7 @@ private: TQGLayoutIterator *it; }; -class Q_EXPORT TQLayoutItem +class TQ_EXPORT TQLayoutItem { public: TQLayoutItem( int alignment = 0 ) : align( alignment ) { } @@ -166,7 +166,7 @@ protected: int align; }; -class Q_EXPORT TQSpacerItem : public TQLayoutItem +class TQ_EXPORT TQSpacerItem : public TQLayoutItem { public: TQSpacerItem( int w, int h, @@ -192,7 +192,7 @@ private: TQRect rect; }; -class Q_EXPORT TQWidgetItem : public TQLayoutItem +class TQ_EXPORT TQWidgetItem : public TQLayoutItem { public: TQWidgetItem( TQWidget *w ) : wid( w ) { } @@ -212,7 +212,7 @@ private: TQWidget *wid; }; -class Q_EXPORT TQLayout : public TQObject, public TQLayoutItem +class TQ_EXPORT TQLayout : public TQObject, public TQLayoutItem { TQ_OBJECT TQ_ENUMS( ResizeMode ) @@ -324,7 +324,7 @@ inline void TQLayoutIterator::deleteCurrent() delete takeCurrent(); } -class Q_EXPORT TQGridLayout : public TQLayout +class TQ_EXPORT TQGridLayout : public TQLayout { TQ_OBJECT public: @@ -401,7 +401,7 @@ private: class TQBoxLayoutData; class TQDockWindow; -class Q_EXPORT TQBoxLayout : public TQLayout +class TQ_EXPORT TQBoxLayout : public TQLayout { TQ_OBJECT public: @@ -467,7 +467,7 @@ private: TQBoxLayout *createTmpCopy(); }; -class Q_EXPORT TQHBoxLayout : public TQBoxLayout +class TQ_EXPORT TQHBoxLayout : public TQBoxLayout { TQ_OBJECT public: @@ -486,7 +486,7 @@ private: // Disabled copy constructor and operator= #endif }; -class Q_EXPORT TQVBoxLayout : public TQBoxLayout +class TQ_EXPORT TQVBoxLayout : public TQBoxLayout { TQ_OBJECT public: diff --git a/doc/html/qlcdnumber-h.html b/doc/html/qlcdnumber-h.html index 9d9f541c7..8bb0d2c48 100644 --- a/doc/html/qlcdnumber-h.html +++ b/doc/html/qlcdnumber-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQLCDNumberPrivate; -class Q_EXPORT TQLCDNumber : public TQFrame // LCD number widget +class TQ_EXPORT TQLCDNumber : public TQFrame // LCD number widget { TQ_OBJECT TQ_ENUMS( Mode SegmentStyle ) diff --git a/doc/html/qlibrary-h.html b/doc/html/qlibrary-h.html index 4c480fe9e..5a34f35bd 100644 --- a/doc/html/qlibrary-h.html +++ b/doc/html/qlibrary-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQLibraryPrivate; -class Q_EXPORT TQLibrary +class TQ_EXPORT TQLibrary { public: TQLibrary( const TQString& filename ); diff --git a/doc/html/qlineedit-h.html b/doc/html/qlineedit-h.html index 996e4f299..7ca2e1451 100644 --- a/doc/html/qlineedit-h.html +++ b/doc/html/qlineedit-h.html @@ -92,7 +92,7 @@ class TQPopupMenu; class TQTextParagraph; class TQTextCursor; -class Q_EXPORT TQLineEdit : public TQFrame +class TQ_EXPORT TQLineEdit : public TQFrame { TQ_OBJECT TQ_ENUMS( EchoMode ) diff --git a/doc/html/qlistbox-h.html b/doc/html/qlistbox-h.html index 4401f72ec..edb186fa9 100644 --- a/doc/html/qlistbox-h.html +++ b/doc/html/qlistbox-h.html @@ -92,7 +92,7 @@ class TQStrList; class TQStringList; -class Q_EXPORT TQListBox : public TQScrollView +class TQ_EXPORT TQListBox : public TQScrollView { friend class TQListBoxItem; friend class TQListBoxPrivate; @@ -351,7 +351,7 @@ private: // Disabled copy constructor and operator= }; -class Q_EXPORT TQListBoxItem +class TQ_EXPORT TQListBoxItem { public: TQListBoxItem( TQListBox* listbox = 0 ); @@ -409,7 +409,7 @@ private: // Disabled copy constructor and operator= }; -class Q_EXPORT TQListBoxText : public TQListBoxItem +class TQ_EXPORT TQListBoxText : public TQListBoxItem { public: TQListBoxText( TQListBox* listbox, const TQString & text=TQString::null ); @@ -434,7 +434,7 @@ private: // Disabled copy constructor and operator= }; -class Q_EXPORT TQListBoxPixmap : public TQListBoxItem +class TQ_EXPORT TQListBoxPixmap : public TQListBoxItem { public: TQListBoxPixmap( TQListBox* listbox, const TQPixmap & ); diff --git a/doc/html/qlistview-h.html b/doc/html/qlistview-h.html index 650325241..a5594975b 100644 --- a/doc/html/qlistview-h.html +++ b/doc/html/qlistview-h.html @@ -99,7 +99,7 @@ class TQMimeSource; class TQLineEdit; class TQListViewToolTip; -class Q_EXPORT TQListViewItem : public TQt +class TQ_EXPORT TQListViewItem : public TQt { friend class TQListViewItemIterator; friend class TQListViewToolTip; @@ -269,7 +269,7 @@ private: class TQCheckListItem; -class Q_EXPORT TQListView: public TQScrollView +class TQ_EXPORT TQListView: public TQScrollView { friend class TQListViewItemIterator; friend class TQListViewItem; @@ -503,7 +503,7 @@ private: // Disabled copy constructor and operator= }; -class Q_EXPORT TQCheckListItem : public TQListViewItem +class TQ_EXPORT TQCheckListItem : public TQListViewItem { public: enum Type { RadioButton, @@ -575,7 +575,7 @@ private: TQCheckListItemPrivate *d; }; -class Q_EXPORT TQListViewItemIterator +class TQ_EXPORT TQListViewItemIterator { friend struct TQListViewPrivate; friend class TQListView; diff --git a/doc/html/qlocale-h.html b/doc/html/qlocale-h.html index 1df5e3a22..c200aec11 100644 --- a/doc/html/qlocale-h.html +++ b/doc/html/qlocale-h.html @@ -79,7 +79,7 @@ body { background: #ffffff; color: black; } struct TQLocalePrivate; -class Q_EXPORT TQLocale +class TQ_EXPORT TQLocale { friend class TQString; diff --git a/doc/html/qlocalfs-h.html b/doc/html/qlocalfs-h.html index b142b8c45..b03c3beed 100644 --- a/doc/html/qlocalfs-h.html +++ b/doc/html/qlocalfs-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_NETWORKPROTOCOL -class Q_EXPORT TQLocalFs : public TQNetworkProtocol +class TQ_EXPORT TQLocalFs : public TQNetworkProtocol { TQ_OBJECT diff --git a/doc/html/qmacstyle_mac-h.html b/doc/html/qmacstyle_mac-h.html index 1d156223d..9b6bd5d98 100644 --- a/doc/html/qmacstyle_mac-h.html +++ b/doc/html/qmacstyle_mac-h.html @@ -88,7 +88,7 @@ class TQPalette; #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_MAC #else -#define Q_EXPORT_STYLE_MAC Q_EXPORT +#define Q_EXPORT_STYLE_MAC TQ_EXPORT #endif class TQMacStylePrivate; diff --git a/doc/html/qmainwindow-h.html b/doc/html/qmainwindow-h.html index 1cf481488..91648e74e 100644 --- a/doc/html/qmainwindow-h.html +++ b/doc/html/qmainwindow-h.html @@ -93,7 +93,7 @@ class TQMainWindowPrivate; class TQMainWindowLayout; class TQPopupMenu; -class Q_EXPORT TQMainWindow: public TQWidget +class TQ_EXPORT TQMainWindow: public TQWidget { TQ_OBJECT TQ_PROPERTY( bool rightJustification READ rightJustification WRITE setRightJustification DESIGNABLE false ) @@ -288,8 +288,8 @@ inline void TQMainWindow::setToolBarsMovable( bool b ) #endif #ifndef TQT_NO_TEXTSTREAM -Q_EXPORT TQTextStream &operator<<( TQTextStream &, const TQMainWindow & ); -Q_EXPORT TQTextStream &operator>>( TQTextStream &, TQMainWindow & ); +TQ_EXPORT TQTextStream &operator<<( TQTextStream &, const TQMainWindow & ); +TQ_EXPORT TQTextStream &operator>>( TQTextStream &, TQMainWindow & ); #endif #endif // TQT_NO_MAINWINDOW diff --git a/doc/html/qmap-h.html b/doc/html/qmap-h.html index 805efb03f..044433441 100644 --- a/doc/html/qmap-h.html +++ b/doc/html/qmap-h.html @@ -92,7 +92,7 @@ body { background: #ffffff; color: black; } //#define QT_CHECK_MAP_RANGE -struct Q_EXPORT TQMapNodeBase +struct TQ_EXPORT TQMapNodeBase { enum Color { Red, Black }; @@ -363,7 +363,7 @@ TQ_INLINE_TEMPLATES int TQMapConstIterator<K,T>::dec() } // ### 4.0: rename to something without Private in it. Not really internal. -class Q_EXPORT TQMapPrivateBase : public TQShared +class TQ_EXPORT TQMapPrivateBase : public TQShared { public: TQMapPrivateBase() { diff --git a/doc/html/qmenubar-h.html b/doc/html/qmenubar-h.html index 7a877f35f..c94555238 100644 --- a/doc/html/qmenubar-h.html +++ b/doc/html/qmenubar-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQPopupMenu; -class Q_EXPORT TQMenuBar : public TQFrame, public TQMenuData +class TQ_EXPORT TQMenuBar : public TQFrame, public TQMenuData { TQ_OBJECT TQ_ENUMS( Separator ) diff --git a/doc/html/qmenudata-h.html b/doc/html/qmenudata-h.html index 306b78599..fb6dfa4de 100644 --- a/doc/html/qmenudata-h.html +++ b/doc/html/qmenudata-h.html @@ -95,7 +95,7 @@ class TQObject; class TQCustomMenuItem; class TQMenuItemData; -class Q_EXPORT TQMenuItem // internal menu item class +class TQ_EXPORT TQMenuItem // internal menu item class { friend class TQMenuData; public: @@ -159,7 +159,7 @@ typedef TQPtrList<TQMenuItem> TQMenuItemList; typedef TQPtrListIterator<TQMenuItem> TQMenuItemListIt; -class Q_EXPORT TQCustomMenuItem : public TQt +class TQ_EXPORT TQCustomMenuItem : public TQt { public: TQCustomMenuItem(); @@ -173,7 +173,7 @@ public: }; -class Q_EXPORT TQMenuData // menu data class +class TQ_EXPORT TQMenuData // menu data class { friend class TQMenuBar; friend class TQPopupMenu; diff --git a/doc/html/qmessagebox-h.html b/doc/html/qmessagebox-h.html index c04813b64..5b7f298e6 100644 --- a/doc/html/qmessagebox-h.html +++ b/doc/html/qmessagebox-h.html @@ -87,7 +87,7 @@ class TQLabel; class TQPushButton; struct TQMessageBoxData; -class Q_EXPORT TQMessageBox : public TQDialog +class TQ_EXPORT TQMessageBox : public TQDialog { TQ_OBJECT TQ_ENUMS( Icon ) diff --git a/doc/html/qmetaobject-h.html b/doc/html/qmetaobject-h.html index cebbf68c1..712cc82e3 100644 --- a/doc/html/qmetaobject-h.html +++ b/doc/html/qmetaobject-h.html @@ -115,7 +115,7 @@ struct TQMetaEnum // enumerator meta data #ifndef TQT_NO_PROPERTIES -class Q_EXPORT TQMetaProperty // property meta data +class TQ_EXPORT TQMetaProperty // property meta data { public: const char* type() const { return t; } // type of the property @@ -175,7 +175,7 @@ struct TQClassInfo // class info meta data const char* value; // - value of the info }; -class Q_EXPORT TQMetaObject // meta object class +class TQ_EXPORT TQMetaObject // meta object class { public: TQMetaObject( const char * const class_name, TQMetaObject *superclass, @@ -306,7 +306,7 @@ inline int TQMetaObject::propertyOffset() const typedef TQMetaObject *(*TQtStaticMetaObjectFunction)(); -class Q_EXPORT TQMetaObjectCleanUp +class TQ_EXPORT TQMetaObjectCleanUp { public: TQMetaObjectCleanUp( const char *mo_name, TQtStaticMetaObjectFunction ); diff --git a/doc/html/qmime-h.html b/doc/html/qmime-h.html index 2cf765a57..a00d9aa40 100644 --- a/doc/html/qmime-h.html +++ b/doc/html/qmime-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQImageDrag; class TQTextDrag; -class Q_EXPORT TQMimeSource +class TQ_EXPORT TQMimeSource { friend class TQClipboardData; @@ -129,7 +129,7 @@ inline int TQMimeSource::serialNumber() const class TQStringList; class TQMimeSourceFactoryData; -class Q_EXPORT TQMimeSourceFactory { +class TQ_EXPORT TQMimeSourceFactory { public: TQMimeSourceFactory(); virtual ~TQMimeSourceFactory(); @@ -170,7 +170,7 @@ private: directly. */ -class Q_EXPORT TQWindowsMime { +class TQ_EXPORT TQWindowsMime { public: TQWindowsMime(); virtual ~TQWindowsMime(); @@ -206,7 +206,7 @@ public: directly. */ -class Q_EXPORT TQMacMime { +class TQ_EXPORT TQMacMime { char type; public: enum TQMacMimeType { MIME_DND=0x01, MIME_CLIP=0x02, MIME_QT_CONVERTOR=0x04, MIME_ALL=MIME_DND|MIME_CLIP }; diff --git a/doc/html/qmotifplusstyle-h.html b/doc/html/qmotifplusstyle-h.html index f7ec03a7e..ed53cdebe 100644 --- a/doc/html/qmotifplusstyle-h.html +++ b/doc/html/qmotifplusstyle-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_MOTIFPLUS #else -#define Q_EXPORT_STYLE_MOTIFPLUS Q_EXPORT +#define Q_EXPORT_STYLE_MOTIFPLUS TQ_EXPORT #endif class Q_EXPORT_STYLE_MOTIFPLUS TQMotifPlusStyle : public TQMotifStyle diff --git a/doc/html/qmotifstyle-h.html b/doc/html/qmotifstyle-h.html index 1f2cea8af..91df3fa15 100644 --- a/doc/html/qmotifstyle-h.html +++ b/doc/html/qmotifstyle-h.html @@ -88,7 +88,7 @@ class TQPalette; #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_MOTIF #else -#define Q_EXPORT_STYLE_MOTIF Q_EXPORT +#define Q_EXPORT_STYLE_MOTIF TQ_EXPORT #endif diff --git a/doc/html/qmousedriverfactory_qws-h.html b/doc/html/qmousedriverfactory_qws-h.html index 9695846a0..3ccc3da32 100644 --- a/doc/html/qmousedriverfactory_qws-h.html +++ b/doc/html/qmousedriverfactory_qws-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } class TQString; class TQWSMouseHandler; -class Q_EXPORT TQMouseDriverFactory +class TQ_EXPORT TQMouseDriverFactory { public: #ifndef TQT_NO_STRINGLIST diff --git a/doc/html/qmousedriverplugin.html b/doc/html/qmousedriverplugin.html index 70fc956b9..84d2d0518 100644 --- a/doc/html/qmousedriverplugin.html +++ b/doc/html/qmousedriverplugin.html @@ -53,7 +53,7 @@ TQt/Embedded mouse driver plugins. easy to create custom mouse drivers. <p> Writing a mouse driver plugin is achieved by subclassing this base class, reimplementing the pure virtual functions <a href="#keys">keys</a>() and -<a href="#create">create</a>(), and exporting the class with the <tt>Q_EXPORT_PLUGIN</tt> +<a href="#create">create</a>(), and exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the <a href="plugins-howto.html">Plugins documentation</a> for details. <p> This class is only available in TQt/Embedded. @@ -63,7 +63,7 @@ macro. See the <a href="plugins-howto.html">Plugins <h3 class=fn><a name="TQMouseDriverPlugin"></a>TQMouseDriverPlugin::TQMouseDriverPlugin () </h3> Constructs a mouse driver plugin. This is invoked automatically by -the <tt>Q_EXPORT_PLUGIN</tt> macro. +the <tt>TQ_EXPORT_PLUGIN</tt> macro. <h3 class=fn><a name="~TQMouseDriverPlugin"></a>TQMouseDriverPlugin::~TQMouseDriverPlugin () </h3> diff --git a/doc/html/qmousedriverplugin_qws-h.html b/doc/html/qmousedriverplugin_qws-h.html index e2e54f53e..f9ab8fac8 100644 --- a/doc/html/qmousedriverplugin_qws-h.html +++ b/doc/html/qmousedriverplugin_qws-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQWSMouseHandler; class TQMouseDriverPluginPrivate; -class Q_EXPORT TQMouseDriverPlugin : public TQGPlugin +class TQ_EXPORT TQMouseDriverPlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qmovie-h.html b/doc/html/qmovie-h.html index c40495763..e4634adce 100644 --- a/doc/html/qmovie-h.html +++ b/doc/html/qmovie-h.html @@ -87,7 +87,7 @@ class TQDataSource; class TQObject; class TQMoviePrivate; -class Q_EXPORT TQMovie { +class TQ_EXPORT TQMovie { public: TQMovie(); TQMovie(int bufsize); diff --git a/doc/html/qmultilineedit-h.html b/doc/html/qmultilineedit-h.html index 74a310115..63eae7b6c 100644 --- a/doc/html/qmultilineedit-h.html +++ b/doc/html/qmultilineedit-h.html @@ -87,7 +87,7 @@ class TQMultiLineEditCommand; class TQValidator; class TQMultiLineEditData; -class Q_EXPORT TQMultiLineEdit : public TQTextEdit +class TQ_EXPORT TQMultiLineEdit : public TQTextEdit { TQ_OBJECT TQ_PROPERTY( int numLines READ numLines ) diff --git a/doc/html/qmutex-h.html b/doc/html/qmutex-h.html index c811e5a3a..8f9eba58e 100644 --- a/doc/html/qmutex-h.html +++ b/doc/html/qmutex-h.html @@ -88,7 +88,7 @@ class TQMutexPrivate; const int Q_MUTEX_NORMAL = 0; const int Q_MUTEX_RECURSIVE = 1; -class Q_EXPORT TQMutex +class TQ_EXPORT TQMutex { friend class TQThread; friend class TQWaitCondition; @@ -112,7 +112,7 @@ private: #endif }; -class Q_EXPORT TQMutexLocker +class TQ_EXPORT TQMutexLocker { public: TQMutexLocker( TQMutex * ); diff --git a/doc/html/qnamespace-h.html b/doc/html/qnamespace-h.html index 716aa236e..8205a989c 100644 --- a/doc/html/qnamespace-h.html +++ b/doc/html/qnamespace-h.html @@ -86,7 +86,7 @@ class TQColor; class TQCursor; -class Q_EXPORT TQt { +class TQ_EXPORT TQt { public: QT_STATIC_CONST TQColor & color0; QT_STATIC_CONST TQColor & color1; @@ -942,7 +942,7 @@ public: }; -class Q_EXPORT TQInternal { +class TQ_EXPORT TQInternal { public: enum PaintDeviceFlags { UndefinedDevice = 0x00, diff --git a/doc/html/qnetworkprotocol-h.html b/doc/html/qnetworkprotocol-h.html index 060a24447..4f6ee9960 100644 --- a/doc/html/qnetworkprotocol-h.html +++ b/doc/html/qnetworkprotocol-h.html @@ -97,7 +97,7 @@ class TQUrlOperator; class TQNetworkProtocolPrivate; template <class T> class TQValueList; -class Q_EXPORT TQNetworkProtocolFactoryBase +class TQ_EXPORT TQNetworkProtocolFactoryBase { public: virtual TQNetworkProtocol *createObject() = 0; @@ -116,7 +116,7 @@ public: typedef TQDict< TQNetworkProtocolFactoryBase > TQNetworkProtocolDict; -class Q_EXPORT TQNetworkProtocol : public TQObject +class TQ_EXPORT TQNetworkProtocol : public TQObject { TQ_OBJECT @@ -232,7 +232,7 @@ private: // Disabled copy constructor and operator= class TQNetworkOperationPrivate; -class Q_EXPORT TQNetworkOperation : public TQObject +class TQ_EXPORT TQNetworkOperation : public TQObject { TQ_OBJECT friend class TQUrlOperator; diff --git a/doc/html/qobject-h.html b/doc/html/qobject-h.html index e53fb992d..2fd448345 100644 --- a/doc/html/qobject-h.html +++ b/doc/html/qobject-h.html @@ -99,7 +99,7 @@ class TQObjectUserData; #endif struct TQUObject; -class Q_EXPORT TQObject: public TQt +class TQ_EXPORT TQObject: public TQt { TQ_OBJECT TQ_PROPERTY( TQCString name READ name WRITE setName ) @@ -254,7 +254,7 @@ private: // Disabled copy constructor and operator= #ifndef TQT_NO_USERDATA -class Q_EXPORT TQObjectUserData { +class TQ_EXPORT TQObjectUserData { public: virtual ~TQObjectUserData(); }; diff --git a/doc/html/qobjectcleanuphandler-h.html b/doc/html/qobjectcleanuphandler-h.html index 1deec7de6..577916574 100644 --- a/doc/html/qobjectcleanuphandler-h.html +++ b/doc/html/qobjectcleanuphandler-h.html @@ -81,7 +81,7 @@ body { background: #ffffff; color: black; } class TQObjectList; -class Q_EXPORT TQObjectCleanupHandler : public TQObject +class TQ_EXPORT TQObjectCleanupHandler : public TQObject { TQ_OBJECT diff --git a/doc/html/qobjectlist-h.html b/doc/html/qobjectlist-h.html index 64d83da62..38917d656 100644 --- a/doc/html/qobjectlist-h.html +++ b/doc/html/qobjectlist-h.html @@ -84,12 +84,12 @@ body { background: #ffffff; color: black; } #if defined(Q_TEMPLATEDLL) -//Q_TEMPLATE_EXTERN template class Q_EXPORT TQPtrList<TQObject>; -//Q_TEMPLATE_EXTERN template class Q_EXPORT TQPtrListIterator<TQObject>; +//Q_TEMPLATE_EXTERN template class TQ_EXPORT TQPtrList<TQObject>; +//Q_TEMPLATE_EXTERN template class TQ_EXPORT TQPtrListIterator<TQObject>; #endif -class Q_EXPORT TQObjectList : public TQPtrList<TQObject> +class TQ_EXPORT TQObjectList : public TQPtrList<TQObject> { public: TQObjectList() : TQPtrList<TQObject>() {} @@ -99,7 +99,7 @@ public: { return (TQObjectList&)TQPtrList<TQObject>::operator=(list); } }; -class Q_EXPORT TQObjectListIterator : public TQPtrListIterator<TQObject> +class TQ_EXPORT TQObjectListIterator : public TQPtrListIterator<TQObject> { public: TQObjectListIterator( const TQObjectList &l ) @@ -109,7 +109,7 @@ public: TQPtrListIterator<TQObject>::operator=( i ); } }; -class Q_EXPORT TQObjectListIt : public TQPtrListIterator<TQObject> +class TQ_EXPORT TQObjectListIt : public TQPtrListIterator<TQObject> { public: TQObjectListIt( const TQObjectList &l ) : TQPtrListIterator<TQObject>(l) {} diff --git a/doc/html/qpaintdevice-h.html b/doc/html/qpaintdevice-h.html index b25d9f77a..9fff8419c 100644 --- a/doc/html/qpaintdevice-h.html +++ b/doc/html/qpaintdevice-h.html @@ -117,7 +117,7 @@ union TQPDevCmdParam { -class Q_EXPORT TQPaintDevice // device for TQPainter +class TQ_EXPORT TQPaintDevice // device for TQPainter { public: virtual ~TQPaintDevice(); @@ -282,10 +282,10 @@ protected: #ifndef TQMAC_NO_QUARTZ virtual CGContextRef macCGContext(bool clipped=TRUE) const; #endif - friend Q_EXPORT void unclippedScaledBitBlt( TQPaintDevice *, int, int, int, int, + friend TQ_EXPORT void unclippedScaledBitBlt( TQPaintDevice *, int, int, int, int, const TQPaintDevice *, int, int, int, int, TQt::RasterOp, bool, bool ); #else - friend Q_EXPORT void bitBlt( TQPaintDevice *, int, int, + friend TQ_EXPORT void bitBlt( TQPaintDevice *, int, int, const TQPaintDevice *, int, int, int, int, TQt::RasterOp, bool ); #endif @@ -327,12 +327,12 @@ private: // Disabled copy constructor and operator= }; -Q_EXPORT +TQ_EXPORT void bitBlt( TQPaintDevice *dst, int dx, int dy, const TQPaintDevice *src, int sx=0, int sy=0, int sw=-1, int sh=-1, TQt::RasterOp = TQt::CopyROP, bool ignoreMask=FALSE ); -Q_EXPORT +TQ_EXPORT void bitBlt( TQPaintDevice *dst, int dx, int dy, const TQImage *src, int sx=0, int sy=0, int sw=-1, int sh=-1, int conversion_flags=0 ); @@ -340,7 +340,7 @@ void bitBlt( TQPaintDevice *dst, int dx, int dy, #if defined(Q_WS_X11) -struct Q_EXPORT TQPaintDeviceX11Data : public TQShared { +struct TQ_EXPORT TQPaintDeviceX11Data : public TQShared { Display* x_display; int x_screen; int x_depth; @@ -442,7 +442,7 @@ inline bool TQPaintDevice::x11AppDefaultVisual() #endif // Q_WS_X11 -Q_EXPORT +TQ_EXPORT inline void bitBlt( TQPaintDevice *dst, const TQPoint &dp, const TQPaintDevice *src, const TQRect &sr =TQRect(0,0,-1,-1), TQt::RasterOp rop=TQt::CopyROP, bool ignoreMask=FALSE ) diff --git a/doc/html/qpaintdevicemetrics-h.html b/doc/html/qpaintdevicemetrics-h.html index 10039d5da..f58e87de3 100644 --- a/doc/html/qpaintdevicemetrics-h.html +++ b/doc/html/qpaintdevicemetrics-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQPaintDeviceMetrics // paint device metrics +class TQ_EXPORT TQPaintDeviceMetrics // paint device metrics { public: TQPaintDeviceMetrics( const TQPaintDevice * ); diff --git a/doc/html/qpainter-h.html b/doc/html/qpainter-h.html index b3ec77851..830386e08 100644 --- a/doc/html/qpainter-h.html +++ b/doc/html/qpainter-h.html @@ -103,7 +103,7 @@ class TQPainterPrivate; class TQScreen; #endif -class Q_EXPORT TQPainter : public TQt +class TQ_EXPORT TQPainter : public TQt { public: enum CoordinateMode { CoordDevice, CoordPainter }; diff --git a/doc/html/qpalette-h.html b/doc/html/qpalette-h.html index 5ae3ef1d1..ccedcc6b5 100644 --- a/doc/html/qpalette-h.html +++ b/doc/html/qpalette-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQColorGroupPrivate; -class Q_EXPORT TQColorGroup +class TQ_EXPORT TQColorGroup { public: TQColorGroup(); @@ -146,7 +146,7 @@ private: }; -class Q_EXPORT TQPalette +class TQ_EXPORT TQPalette { public: TQPalette(); @@ -208,11 +208,11 @@ private: *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQColorGroup & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQColorGroup & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQColorGroup & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQColorGroup & ); -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPalette & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPalette & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPalette & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPalette & ); #endif // TQT_NO_DATASTREAM #endif // TQT_NO_PALETTE diff --git a/doc/html/qpen-h.html b/doc/html/qpen-h.html index f7b0cf46b..5d538994d 100644 --- a/doc/html/qpen-h.html +++ b/doc/html/qpen-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQPen: public TQt +class TQ_EXPORT TQPen: public TQt { public: TQPen(); @@ -131,8 +131,8 @@ private: TQPen stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPen & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPen & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPen & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPen & ); #endif #endif // TQPEN_H diff --git a/doc/html/qpicture-h.html b/doc/html/qpicture-h.html index d357c5321..aad815cc3 100644 --- a/doc/html/qpicture-h.html +++ b/doc/html/qpicture-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_PICTURE -class Q_EXPORT TQPicture : public TQPaintDevice // picture class +class TQ_EXPORT TQPicture : public TQPaintDevice // picture class { public: TQPicture( int formatVersion = -1 ); @@ -109,8 +109,8 @@ public: TQPicture& operator= (const TQPicture&); - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPicture & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPicture & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPicture & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPicture & ); protected: bool cmd( int, TQPainter *, TQPDevCmdParam * ); @@ -155,8 +155,8 @@ inline const char* TQPicture::data() const TQPicture stream functions *****************************************************************************/ -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPicture & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPicture & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPicture & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPicture & ); #endif // TQT_NO_PICTURE diff --git a/doc/html/qpixmap-h.html b/doc/html/qpixmap-h.html index 8a6a6618b..b8f8654d9 100644 --- a/doc/html/qpixmap-h.html +++ b/doc/html/qpixmap-h.html @@ -93,7 +93,7 @@ class TQMultiCellPixmap; #endif -class Q_EXPORT TQPixmap : public TQPaintDevice, public TQt +class TQ_EXPORT TQPixmap : public TQPaintDevice, public TQt { public: enum ColorMode { Auto, Color, Mono }; @@ -283,13 +283,13 @@ private: int sw, int sh, bool useDstAlpha ); #endif static Optimization defOptim; - friend Q_EXPORT void bitBlt( TQPaintDevice *, int, int, + friend TQ_EXPORT void bitBlt( TQPaintDevice *, int, int, const TQPaintDevice *, int, int, int, int, RasterOp, bool ); - friend Q_EXPORT void bitBlt( TQPaintDevice *, int, int, + friend TQ_EXPORT void bitBlt( TQPaintDevice *, int, int, const TQImage* src, int, int, int, int, int conversion_flags ); - friend Q_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, + friend TQ_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, const TQPixmap *src, int sx, int sy, int sw, int sh ); @@ -366,8 +366,8 @@ inline bool TQPixmap::isMultiCellPixmap() const *****************************************************************************/ #if !defined(TQT_NO_DATASTREAM) && !defined(TQT_NO_IMAGEIO) -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPixmap & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPixmap & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPixmap & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPixmap & ); #endif /***************************************************************************** @@ -383,7 +383,7 @@ Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPixmap & bool qt_xForm_helper( const TQWMatrix&, int, int, int, uchar*, int, int, int, uchar*, int, int, int ); #endif -Q_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, +TQ_EXPORT void copyBlt( TQPixmap *dst, int dx, int dy, const TQPixmap *src, int sx = 0, int sy = 0, int sw = -1, int sh = -1 ); diff --git a/doc/html/qpixmapcache-h.html b/doc/html/qpixmapcache-h.html index 9a349f64a..5459bb67d 100644 --- a/doc/html/qpixmapcache-h.html +++ b/doc/html/qpixmapcache-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQPixmapCache // global pixmap cache +class TQ_EXPORT TQPixmapCache // global pixmap cache { public: static int cacheLimit(); diff --git a/doc/html/qplatinumstyle-h.html b/doc/html/qplatinumstyle-h.html index 420dc72a1..012aeb73e 100644 --- a/doc/html/qplatinumstyle-h.html +++ b/doc/html/qplatinumstyle-h.html @@ -88,7 +88,7 @@ class TQPalette; #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_PLATINUM #else -#define Q_EXPORT_STYLE_PLATINUM Q_EXPORT +#define Q_EXPORT_STYLE_PLATINUM TQ_EXPORT #endif class Q_EXPORT_STYLE_PLATINUM TQPlatinumStyle : public TQWindowsStyle diff --git a/doc/html/qpngio-h.html b/doc/html/qpngio-h.html index 912d1c5a5..c57f94e3c 100644 --- a/doc/html/qpngio-h.html +++ b/doc/html/qpngio-h.html @@ -89,7 +89,7 @@ class TQIODevice; #ifndef Q_PNGEXPORT #if !defined(QT_PLUGIN) -#define Q_PNGEXPORT Q_EXPORT +#define Q_PNGEXPORT TQ_EXPORT #else #define Q_PNGEXPORT #endif diff --git a/doc/html/qpoint-h.html b/doc/html/qpoint-h.html index f1e7d8442..64283b127 100644 --- a/doc/html/qpoint-h.html +++ b/doc/html/qpoint-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQPoint +class TQ_EXPORT TQPoint { public: TQPoint(); @@ -136,8 +136,8 @@ private: TQPoint stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPoint & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPoint & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPoint & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPoint & ); #endif /***************************************************************************** diff --git a/doc/html/qpointarray-h.html b/doc/html/qpointarray-h.html index fa7642845..a0a919a61 100644 --- a/doc/html/qpointarray-h.html +++ b/doc/html/qpointarray-h.html @@ -84,10 +84,10 @@ body { background: #ffffff; color: black; } #if defined(Q_TEMPLATEDLL) -//Q_TEMPLATE_EXTERN template class Q_EXPORT TQMemArray<TQPoint>; +//Q_TEMPLATE_EXTERN template class TQ_EXPORT TQMemArray<TQPoint>; #endif -class Q_EXPORT TQPointArray : public TQMemArray<TQPoint> +class TQ_EXPORT TQPointArray : public TQMemArray<TQPoint> { public: TQPointArray() {} @@ -137,8 +137,8 @@ protected: TQPointArray stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPointArray & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPointArray & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPointArray & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQPointArray & ); #endif /***************************************************************************** diff --git a/doc/html/qpopupmenu-h.html b/doc/html/qpopupmenu-h.html index 796e3dcf3..cd6be761d 100644 --- a/doc/html/qpopupmenu-h.html +++ b/doc/html/qpopupmenu-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_POPUPMENU class TQPopupMenuPrivate; -class Q_EXPORT TQPopupMenu : public TQFrame, public TQMenuData +class TQ_EXPORT TQPopupMenu : public TQFrame, public TQMenuData { TQ_OBJECT TQ_PROPERTY( bool checkable READ isCheckable WRITE setCheckable ) diff --git a/doc/html/qprinter-h.html b/doc/html/qprinter-h.html index f5ecfcb07..986c90f4c 100644 --- a/doc/html/qprinter-h.html +++ b/doc/html/qprinter-h.html @@ -91,7 +91,7 @@ body { background: #ffffff; color: black; } class TQPrinterPrivate; -class Q_EXPORT TQPrinter : public TQPaintDevice +class TQ_EXPORT TQPrinter : public TQPaintDevice { public: enum PrinterMode { ScreenResolution, PrinterResolution, HighResolution, Compatible }; diff --git a/doc/html/qprocess-h.html b/doc/html/qprocess-h.html index 67a39f400..08956f927 100644 --- a/doc/html/qprocess-h.html +++ b/doc/html/qprocess-h.html @@ -89,7 +89,7 @@ class TQProcessPrivate; class TQMembuf; -class Q_EXPORT TQProcess : public TQObject +class TQ_EXPORT TQProcess : public TQObject { TQ_OBJECT public: diff --git a/doc/html/qprogressbar-h.html b/doc/html/qprogressbar-h.html index d7facb641..e243515c2 100644 --- a/doc/html/qprogressbar-h.html +++ b/doc/html/qprogressbar-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQProgressBarPrivate; -class Q_EXPORT TQProgressBar : public TQFrame +class TQ_EXPORT TQProgressBar : public TQFrame { TQ_OBJECT TQ_PROPERTY( int totalSteps READ totalSteps WRITE setTotalSteps ) diff --git a/doc/html/qprogressdialog-h.html b/doc/html/qprogressdialog-h.html index b86a9c247..6c849f0eb 100644 --- a/doc/html/qprogressdialog-h.html +++ b/doc/html/qprogressdialog-h.html @@ -88,7 +88,7 @@ class TQPushButton; class TQTimer; class TQProgressDialogData; -class Q_EXPORT TQProgressDialog : public TQDialog +class TQ_EXPORT TQProgressDialog : public TQDialog { TQ_OBJECT TQ_PROPERTY( bool wasCancelled READ wasCancelled DESIGNABLE false STORED false ) // ### remove in 4.0 diff --git a/doc/html/qptrcollection-h.html b/doc/html/qptrcollection-h.html index e3cc0519a..de63bc4f5 100644 --- a/doc/html/qptrcollection-h.html +++ b/doc/html/qptrcollection-h.html @@ -85,7 +85,7 @@ class TQGList; class TQGDict; -class Q_EXPORT TQPtrCollection // inherited by all collections +class TQ_EXPORT TQPtrCollection // inherited by all collections { public: bool autoDelete() const { return del_item; } diff --git a/doc/html/qpushbutton-h.html b/doc/html/qpushbutton-h.html index d3c85b509..386246c91 100644 --- a/doc/html/qpushbutton-h.html +++ b/doc/html/qpushbutton-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQPushButtonPrivate; class TQPopupMenu; -class Q_EXPORT TQPushButton : public TQButton +class TQ_EXPORT TQPushButton : public TQButton { TQ_OBJECT diff --git a/doc/html/qradiobutton-h.html b/doc/html/qradiobutton-h.html index dcd55c0f9..9a8880fb8 100644 --- a/doc/html/qradiobutton-h.html +++ b/doc/html/qradiobutton-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_RADIOBUTTON -class Q_EXPORT TQRadioButton : public TQButton +class TQ_EXPORT TQRadioButton : public TQButton { TQ_OBJECT TQ_PROPERTY( bool checked READ isChecked WRITE setChecked ) diff --git a/doc/html/qrangecontrol-h.html b/doc/html/qrangecontrol-h.html index 6d4ea8b21..04702a5d2 100644 --- a/doc/html/qrangecontrol-h.html +++ b/doc/html/qrangecontrol-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQRangeControlPrivate; -class Q_EXPORT TQRangeControl +class TQ_EXPORT TQRangeControl { public: TQRangeControl(); @@ -163,7 +163,7 @@ inline int TQRangeControl::pageStep() const #ifndef TQT_NO_SPINWIDGET class TQSpinWidgetPrivate; -class Q_EXPORT TQSpinWidget : public TQWidget +class TQ_EXPORT TQSpinWidget : public TQWidget { TQ_OBJECT public: diff --git a/doc/html/qrect-h.html b/doc/html/qrect-h.html index 80cd610c2..3aabb89de 100644 --- a/doc/html/qrect-h.html +++ b/doc/html/qrect-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } // don't just silently undo people's defines: #undef topLeft #endif -class Q_EXPORT TQRect // rectangle class +class TQ_EXPORT TQRect // rectangle class { public: TQRect() { x1 = y1 = 0; x2 = y2 = -1; } @@ -167,8 +167,8 @@ public: TQRect intersect( const TQRect &r ) const; bool intersects( const TQRect &r ) const; - friend Q_EXPORT bool operator==( const TQRect &, const TQRect & ); - friend Q_EXPORT bool operator!=( const TQRect &, const TQRect & ); + friend TQ_EXPORT bool operator==( const TQRect &, const TQRect & ); + friend TQ_EXPORT bool operator!=( const TQRect &, const TQRect & ); private: #if defined(Q_WS_X11) || defined(Q_OS_TEMP) @@ -187,16 +187,16 @@ private: #endif }; -Q_EXPORT bool operator==( const TQRect &, const TQRect & ); -Q_EXPORT bool operator!=( const TQRect &, const TQRect & ); +TQ_EXPORT bool operator==( const TQRect &, const TQRect & ); +TQ_EXPORT bool operator!=( const TQRect &, const TQRect & ); /***************************************************************************** TQRect stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQRect & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQRect & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQRect & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQRect & ); #endif /***************************************************************************** diff --git a/doc/html/qregexp-h.html b/doc/html/qregexp-h.html index 3df950356..5112c2b0e 100644 --- a/doc/html/qregexp-h.html +++ b/doc/html/qregexp-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQRegExpEngine; struct TQRegExpPrivate; -class Q_EXPORT TQRegExp +class TQ_EXPORT TQRegExp { public: enum CaretMode { CaretAtZero, CaretAtOffset, CaretWontMatch }; diff --git a/doc/html/qregion-h.html b/doc/html/qregion-h.html index f17432a4d..a1e565420 100644 --- a/doc/html/qregion-h.html +++ b/doc/html/qregion-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } struct TQRegionPrivate; #endif -class Q_EXPORT TQRegion +class TQ_EXPORT TQRegion { public: enum RegionType { Rectangle, Ellipse }; @@ -144,8 +144,8 @@ public: #endif #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQRegion & ); - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQRegion & ); + friend TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQRegion & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQRegion & ); #endif private: TQRegion( bool ); @@ -205,8 +205,8 @@ private: *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQRegion & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQRegion & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQRegion & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQRegion & ); #endif diff --git a/doc/html/qrtlcodec-h.html b/doc/html/qrtlcodec-h.html index 9b99ec993..bdfc830ca 100644 --- a/doc/html/qrtlcodec-h.html +++ b/doc/html/qrtlcodec-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_CODEC_HEBREW -class Q_EXPORT TQHebrewCodec : public TQTextCodec { +class TQ_EXPORT TQHebrewCodec : public TQTextCodec { public: virtual int mibEnum() const; const char* name() const; diff --git a/doc/html/qscrollbar-h.html b/doc/html/qscrollbar-h.html index bb6fa8431..02d1bff7b 100644 --- a/doc/html/qscrollbar-h.html +++ b/doc/html/qscrollbar-h.html @@ -86,7 +86,7 @@ class TQTimer; #ifndef TQT_NO_SCROLLBAR -class Q_EXPORT TQScrollBar : public TQWidget, public TQRangeControl +class TQ_EXPORT TQScrollBar : public TQWidget, public TQRangeControl { TQ_OBJECT TQ_PROPERTY( int minValue READ minValue WRITE setMinValue ) diff --git a/doc/html/qscrollview-h.html b/doc/html/qscrollview-h.html index 967f37e7d..3bd7016d0 100644 --- a/doc/html/qscrollview-h.html +++ b/doc/html/qscrollview-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQScrollViewData; -class Q_EXPORT TQScrollView : public TQFrame +class TQ_EXPORT TQScrollView : public TQFrame { TQ_OBJECT TQ_ENUMS( ResizePolicy ScrollBarMode ) diff --git a/doc/html/qsemaphore-h.html b/doc/html/qsemaphore-h.html index 25bb2dd92..a80c1de15 100644 --- a/doc/html/qsemaphore-h.html +++ b/doc/html/qsemaphore-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQSemaphorePrivate; -class Q_EXPORT TQSemaphore +class TQ_EXPORT TQSemaphore { public: TQSemaphore( int ); diff --git a/doc/html/qserversocket-h.html b/doc/html/qserversocket-h.html index 36ce1f7b6..84e414c37 100644 --- a/doc/html/qserversocket-h.html +++ b/doc/html/qserversocket-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK ) #define TQM_EXPORT_NETWORK #else -#define TQM_EXPORT_NETWORK Q_EXPORT +#define TQM_EXPORT_NETWORK TQ_EXPORT #endif class TQServerSocketPrivate; diff --git a/doc/html/qsessionmanager-h.html b/doc/html/qsessionmanager-h.html index 6a5921861..0722c9533 100644 --- a/doc/html/qsessionmanager-h.html +++ b/doc/html/qsessionmanager-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQSessionManagerData; -class Q_EXPORT TQSessionManager : public TQObject +class TQ_EXPORT TQSessionManager : public TQObject { TQ_OBJECT TQSessionManager( TQApplication *app, TQString &id, TQString &key ); diff --git a/doc/html/qsettings-h.html b/doc/html/qsettings-h.html index 9c77f7ef5..676a9f821 100644 --- a/doc/html/qsettings-h.html +++ b/doc/html/qsettings-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQSettingsPrivate; -class Q_EXPORT TQSettings +class TQ_EXPORT TQSettings { public: enum Format { diff --git a/doc/html/qsgistyle-h.html b/doc/html/qsgistyle-h.html index d7c063f5f..73a6b98d1 100644 --- a/doc/html/qsgistyle-h.html +++ b/doc/html/qsgistyle-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_SGI #else -#define Q_EXPORT_STYLE_SGI Q_EXPORT +#define Q_EXPORT_STYLE_SGI TQ_EXPORT #endif class TQSGIStylePrivate; diff --git a/doc/html/qsignal-h.html b/doc/html/qsignal-h.html index 82e664d5c..d35b946bc 100644 --- a/doc/html/qsignal-h.html +++ b/doc/html/qsignal-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQSignal : public TQObject +class TQ_EXPORT TQSignal : public TQObject { TQ_OBJECT diff --git a/doc/html/qsignalmapper-h.html b/doc/html/qsignalmapper-h.html index f0e574ddd..b2398b11e 100644 --- a/doc/html/qsignalmapper-h.html +++ b/doc/html/qsignalmapper-h.html @@ -85,7 +85,7 @@ class TQSignalMapperData; struct TQSignalMapperRec; -class Q_EXPORT TQSignalMapper : public TQObject { +class TQ_EXPORT TQSignalMapper : public TQObject { TQ_OBJECT public: TQSignalMapper( TQObject* parent, const char* name=0 ); diff --git a/doc/html/qsimplerichtext-h.html b/doc/html/qsimplerichtext-h.html index 3db84db39..5fec9cf84 100644 --- a/doc/html/qsimplerichtext-h.html +++ b/doc/html/qsimplerichtext-h.html @@ -92,7 +92,7 @@ class TQBrush; class TQMimeSourceFactory; class TQSimpleRichTextData; -class Q_EXPORT TQSimpleRichText +class TQ_EXPORT TQSimpleRichText { public: TQSimpleRichText( const TQString& text, const TQFont& fnt, diff --git a/doc/html/qsize-h.html b/doc/html/qsize-h.html index 2484d3abd..bb58605ae 100644 --- a/doc/html/qsize-h.html +++ b/doc/html/qsize-h.html @@ -81,7 +81,7 @@ body { background: #ffffff; color: black; } #include "ntqpoint.h" // ### change to ntqwindowdefs.h? #endif // QT_H -class Q_EXPORT TQSize +class TQ_EXPORT TQSize // ### Make TQSize inherit TQt in TQt 4.0 { public: @@ -144,8 +144,8 @@ private: TQSize stream functions *****************************************************************************/ -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQSize & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQSize & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQSize & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQSize & ); /***************************************************************************** diff --git a/doc/html/qsizegrip-h.html b/doc/html/qsizegrip-h.html index fa1f1234e..0aa973d66 100644 --- a/doc/html/qsizegrip-h.html +++ b/doc/html/qsizegrip-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_SIZEGRIP -class Q_EXPORT TQSizeGrip: public TQWidget +class TQ_EXPORT TQSizeGrip: public TQWidget { TQ_OBJECT public: diff --git a/doc/html/qsizepolicy-h.html b/doc/html/qsizepolicy-h.html index 20e171641..14e5c9652 100644 --- a/doc/html/qsizepolicy-h.html +++ b/doc/html/qsizepolicy-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } // Documentation is in qabstractlayout.cpp. -class Q_EXPORT TQSizePolicy +class TQ_EXPORT TQSizePolicy { private: enum SizePolicy_Internal { HSize = 6, HMask = 0x3f, VMask = HMask << HSize, diff --git a/doc/html/qsjiscodec-h.html b/doc/html/qsjiscodec-h.html index c209770df..e0f3789fc 100644 --- a/doc/html/qsjiscodec-h.html +++ b/doc/html/qsjiscodec-h.html @@ -116,7 +116,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_CODECS_JP #else -#define Q_EXPORT_CODECS_JP Q_EXPORT +#define Q_EXPORT_CODECS_JP TQ_EXPORT #endif class Q_EXPORT_CODECS_JP TQSjisCodec : public TQTextCodec { diff --git a/doc/html/qslider-h.html b/doc/html/qslider-h.html index bca498b70..909fd6194 100644 --- a/doc/html/qslider-h.html +++ b/doc/html/qslider-h.html @@ -88,7 +88,7 @@ struct TQSliderPrivate; class TQTimer; -class Q_EXPORT TQSlider : public TQWidget, public TQRangeControl +class TQ_EXPORT TQSlider : public TQWidget, public TQRangeControl { TQ_OBJECT TQ_ENUMS( TickSetting ) diff --git a/doc/html/qsocket-h.html b/doc/html/qsocket-h.html index fcdddeb8e..1ccd6e3f1 100644 --- a/doc/html/qsocket-h.html +++ b/doc/html/qsocket-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK ) #define TQM_EXPORT_NETWORK #else -#define TQM_EXPORT_NETWORK Q_EXPORT +#define TQM_EXPORT_NETWORK TQ_EXPORT #endif #ifndef TQT_NO_NETWORK diff --git a/doc/html/qsocketdevice-h.html b/doc/html/qsocketdevice-h.html index 697e1abe0..1816f2531 100644 --- a/doc/html/qsocketdevice-h.html +++ b/doc/html/qsocketdevice-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK ) #define TQM_EXPORT_NETWORK #else -#define TQM_EXPORT_NETWORK Q_EXPORT +#define TQM_EXPORT_NETWORK TQ_EXPORT #endif #ifndef TQT_NO_NETWORK diff --git a/doc/html/qsocketnotifier-h.html b/doc/html/qsocketnotifier-h.html index 3e501718e..ad9a3bb68 100644 --- a/doc/html/qsocketnotifier-h.html +++ b/doc/html/qsocketnotifier-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQSocketNotifier : public TQObject +class TQ_EXPORT TQSocketNotifier : public TQObject { TQ_OBJECT public: diff --git a/doc/html/qsound-h.html b/doc/html/qsound-h.html index 7f9c5e886..d7d0632fb 100644 --- a/doc/html/qsound-h.html +++ b/doc/html/qsound-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } class TQSoundData; -class Q_EXPORT TQSound : public TQObject { +class TQ_EXPORT TQSound : public TQObject { TQ_OBJECT public: static bool isAvailable(); diff --git a/doc/html/qspinbox-h.html b/doc/html/qspinbox-h.html index d74e72159..edc115f27 100644 --- a/doc/html/qspinbox-h.html +++ b/doc/html/qspinbox-h.html @@ -88,7 +88,7 @@ class TQLineEdit; class TQValidator; class TQSpinBoxPrivate; -class Q_EXPORT TQSpinBox: public TQWidget, public TQRangeControl +class TQ_EXPORT TQSpinBox: public TQWidget, public TQRangeControl { TQ_OBJECT TQ_ENUMS( ButtonSymbols ) diff --git a/doc/html/qsplashscreen-h.html b/doc/html/qsplashscreen-h.html index f4670f7f1..2abc16774 100644 --- a/doc/html/qsplashscreen-h.html +++ b/doc/html/qsplashscreen-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_SPLASHSCREEN class TQSplashScreenPrivate; -class Q_EXPORT TQSplashScreen : public TQWidget +class TQ_EXPORT TQSplashScreen : public TQWidget { TQ_OBJECT public: diff --git a/doc/html/qsplitter-h.html b/doc/html/qsplitter-h.html index 3e17e13a3..01e61ef0f 100644 --- a/doc/html/qsplitter-h.html +++ b/doc/html/qsplitter-h.html @@ -89,7 +89,7 @@ class TQSplitterPrivate; class TQSplitterLayoutStruct; class TQTextStream; -class Q_EXPORT TQSplitter : public TQFrame +class TQ_EXPORT TQSplitter : public TQFrame { TQ_OBJECT TQ_PROPERTY( Orientation orientation READ orientation WRITE setOrientation ) @@ -184,8 +184,8 @@ private: friend class TQSplitterHandle; #ifndef TQT_NO_TEXTSTREAM - friend Q_EXPORT TQTextStream& operator<<( TQTextStream&, const TQSplitter& ); - friend Q_EXPORT TQTextStream& operator>>( TQTextStream&, TQSplitter& ); + friend TQ_EXPORT TQTextStream& operator<<( TQTextStream&, const TQSplitter& ); + friend TQ_EXPORT TQTextStream& operator>>( TQTextStream&, TQSplitter& ); #endif private: @@ -196,8 +196,8 @@ private: }; #ifndef TQT_NO_TEXTSTREAM -Q_EXPORT TQTextStream& operator<<( TQTextStream&, const TQSplitter& ); -Q_EXPORT TQTextStream& operator>>( TQTextStream&, TQSplitter& ); +TQ_EXPORT TQTextStream& operator<<( TQTextStream&, const TQSplitter& ); +TQ_EXPORT TQTextStream& operator>>( TQTextStream&, TQSplitter& ); #endif #endif // TQT_NO_SPLITTER diff --git a/doc/html/qsql-h.html b/doc/html/qsql-h.html index 86dde02e7..c6aefa61d 100644 --- a/doc/html/qsql-h.html +++ b/doc/html/qsql-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqlcursor-h.html b/doc/html/qsqlcursor-h.html index 577df0e67..1378a70ab 100644 --- a/doc/html/qsqlcursor-h.html +++ b/doc/html/qsqlcursor-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqldatabase-h.html b/doc/html/qsqldatabase-h.html index 83dd396f2..e89c2d5d2 100644 --- a/doc/html/qsqldatabase-h.html +++ b/doc/html/qsqldatabase-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqldriver-h.html b/doc/html/qsqldriver-h.html index 1c221ab33..f322d74ed 100644 --- a/doc/html/qsqldriver-h.html +++ b/doc/html/qsqldriver-h.html @@ -91,7 +91,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqldriverplugin-h.html b/doc/html/qsqldriverplugin-h.html index 963731623..442a23fa7 100644 --- a/doc/html/qsqldriverplugin-h.html +++ b/doc/html/qsqldriverplugin-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQSqlDriver; class TQSqlDriverPluginPrivate; -class Q_EXPORT TQSqlDriverPlugin : public TQGPlugin +class TQ_EXPORT TQSqlDriverPlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qsqleditorfactory-h.html b/doc/html/qsqleditorfactory-h.html index 2f6a63cdb..cd1185ef8 100644 --- a/doc/html/qsqleditorfactory-h.html +++ b/doc/html/qsqleditorfactory-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL_EDIT_WIDGETS diff --git a/doc/html/qsqlerror-h.html b/doc/html/qsqlerror-h.html index 0dda255a7..4b1a2bdf6 100644 --- a/doc/html/qsqlerror-h.html +++ b/doc/html/qsqlerror-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqlfield-h.html b/doc/html/qsqlfield-h.html index c4fec20bf..b7b6365cd 100644 --- a/doc/html/qsqlfield-h.html +++ b/doc/html/qsqlfield-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqlform-h.html b/doc/html/qsqlform-h.html index 87cac2b77..182b5e754 100644 --- a/doc/html/qsqlform-h.html +++ b/doc/html/qsqlform-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL_FORM diff --git a/doc/html/qsqlindex-h.html b/doc/html/qsqlindex-h.html index 18fe46b21..ecc1b1969 100644 --- a/doc/html/qsqlindex-h.html +++ b/doc/html/qsqlindex-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #define TQM_EXPORT_SQL #define TQM_TEMPLATE_EXTERN_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #define TQM_TEMPLATE_EXTERN_SQL Q_TEMPLATE_EXTERN #endif diff --git a/doc/html/qsqlpropertymap-h.html b/doc/html/qsqlpropertymap-h.html index 7d7439983..299e5ee5f 100644 --- a/doc/html/qsqlpropertymap-h.html +++ b/doc/html/qsqlpropertymap-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQWidget; class TQSqlPropertyMapPrivate; -class Q_EXPORT TQSqlPropertyMap { +class TQ_EXPORT TQSqlPropertyMap { public: TQSqlPropertyMap(); virtual ~TQSqlPropertyMap(); diff --git a/doc/html/qsqlquery-h.html b/doc/html/qsqlquery-h.html index 9d3161d16..9aa878f5d 100644 --- a/doc/html/qsqlquery-h.html +++ b/doc/html/qsqlquery-h.html @@ -92,7 +92,7 @@ class TQSqlDriver; class TQSqlResult; class TQSqlDatabase; -class Q_EXPORT TQSqlResultShared : public TQObject, public TQShared +class TQ_EXPORT TQSqlResultShared : public TQObject, public TQShared { TQ_OBJECT public: @@ -104,7 +104,7 @@ private slots: void slotResultDestroyed(); }; -class Q_EXPORT TQSqlQuery +class TQ_EXPORT TQSqlQuery { public: TQSqlQuery( TQSqlResult * r ); diff --git a/doc/html/qsqlrecord-h.html b/doc/html/qsqlrecord-h.html index 430200fca..f6c74f6f3 100644 --- a/doc/html/qsqlrecord-h.html +++ b/doc/html/qsqlrecord-h.html @@ -97,7 +97,7 @@ public: TQSqlRecordPrivate* d; }; -class Q_EXPORT TQSqlRecord +class TQ_EXPORT TQSqlRecord { public: TQSqlRecord(); @@ -152,13 +152,13 @@ private: #if defined(Q_TEMPLATEDLL) // MOC_SKIP_BEGIN -Q_TEMPLATE_EXTERN template class Q_EXPORT TQValueList<TQSqlFieldInfo>; +Q_TEMPLATE_EXTERN template class TQ_EXPORT TQValueList<TQSqlFieldInfo>; // MOC_SKIP_END #endif typedef TQValueList<TQSqlFieldInfo> TQSqlFieldInfoList; -class Q_EXPORT TQSqlRecordInfo: public TQSqlFieldInfoList +class TQ_EXPORT TQSqlRecordInfo: public TQSqlFieldInfoList { public: TQSqlRecordInfo(): TQSqlFieldInfoList() {} diff --git a/doc/html/qsqlresult-h.html b/doc/html/qsqlresult-h.html index 50980a7b3..58d32909a 100644 --- a/doc/html/qsqlresult-h.html +++ b/doc/html/qsqlresult-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qsqlselectcursor-h.html b/doc/html/qsqlselectcursor-h.html index be80501b7..0f96650e4 100644 --- a/doc/html/qsqlselectcursor-h.html +++ b/doc/html/qsqlselectcursor-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL ) #define TQM_EXPORT_SQL #else -#define TQM_EXPORT_SQL Q_EXPORT +#define TQM_EXPORT_SQL TQ_EXPORT #endif #ifndef TQT_NO_SQL diff --git a/doc/html/qstatusbar-h.html b/doc/html/qstatusbar-h.html index c7ba0b143..41f2087d4 100644 --- a/doc/html/qstatusbar-h.html +++ b/doc/html/qstatusbar-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQStatusBarPrivate; -class Q_EXPORT TQStatusBar: public TQWidget +class TQ_EXPORT TQStatusBar: public TQWidget { TQ_OBJECT TQ_PROPERTY( bool sizeGripEnabled READ isSizeGripEnabled WRITE setSizeGripEnabled ) diff --git a/doc/html/qstring-h.html b/doc/html/qstring-h.html index 272e62586..1c566e581 100644 --- a/doc/html/qstring-h.html +++ b/doc/html/qstring-h.html @@ -109,7 +109,7 @@ class TQString; class TQCharRef; template <class T> class TQDeepCopy; -class Q_EXPORT TQChar { +class TQ_EXPORT TQChar { public: TQChar(); TQChar( char c ); @@ -394,7 +394,7 @@ inline bool operator>( char ch, TQChar c ) { return !(c>=ch); } inline bool operator>( TQChar c1, TQChar c2 ) { return !(c2>=c1); } // internal -struct Q_EXPORT TQStringData : public TQShared { +struct TQ_EXPORT TQStringData : public TQShared { TQStringData() : TQShared(), unicode(0), ascii(0), len(0), issimpletext(TRUE), maxl(0), islatin1(FALSE) { ref(); } TQStringData(TQChar *u, uint l, uint m) : @@ -433,7 +433,7 @@ private: }; -class Q_EXPORT TQString +class TQ_EXPORT TQString { public: TQString(); // make null string @@ -723,7 +723,7 @@ public: { return s1.localeAwareCompare( s2 ); } #ifndef TQT_NO_DATASTREAM - friend Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQString & ); + friend TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQString & ); #endif void compose(); @@ -789,7 +789,7 @@ private: friend class TQDeepCopy<TQString>; }; -class Q_EXPORT TQCharRef { +class TQ_EXPORT TQCharRef { friend class TQString; TQString& s; uint p; @@ -849,7 +849,7 @@ inline TQCharRef TQString::at( uint i ) { return TQCharRef(this,i); } inline TQCharRef TQString::operator[]( int i ) { return at((uint)i); } -class Q_EXPORT TQConstString : private TQString { +class TQ_EXPORT TQConstString : private TQString { public: TQConstString( const TQChar* unicode, uint length ); ~TQConstString(); @@ -861,8 +861,8 @@ public: TQString stream functions *****************************************************************************/ #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQString & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQString & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQString & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQString & ); #endif /***************************************************************************** @@ -1050,28 +1050,28 @@ inline int TQString::findRev( const char* str, int index ) const TQString non-member operators *****************************************************************************/ -Q_EXPORT bool operator!=( const TQString &s1, const TQString &s2 ); -Q_EXPORT bool operator<( const TQString &s1, const TQString &s2 ); -Q_EXPORT bool operator<=( const TQString &s1, const TQString &s2 ); -Q_EXPORT bool operator==( const TQString &s1, const TQString &s2 ); -Q_EXPORT bool operator>( const TQString &s1, const TQString &s2 ); -Q_EXPORT bool operator>=( const TQString &s1, const TQString &s2 ); +TQ_EXPORT bool operator!=( const TQString &s1, const TQString &s2 ); +TQ_EXPORT bool operator<( const TQString &s1, const TQString &s2 ); +TQ_EXPORT bool operator<=( const TQString &s1, const TQString &s2 ); +TQ_EXPORT bool operator==( const TQString &s1, const TQString &s2 ); +TQ_EXPORT bool operator>( const TQString &s1, const TQString &s2 ); +TQ_EXPORT bool operator>=( const TQString &s1, const TQString &s2 ); #ifndef TQT_NO_CAST_ASCII -Q_EXPORT bool operator!=( const TQString &s1, const char *s2 ); -Q_EXPORT bool operator<( const TQString &s1, const char *s2 ); -Q_EXPORT bool operator<=( const TQString &s1, const char *s2 ); -Q_EXPORT bool operator==( const TQString &s1, const char *s2 ); -Q_EXPORT bool operator>( const TQString &s1, const char *s2 ); -Q_EXPORT bool operator>=( const TQString &s1, const char *s2 ); -Q_EXPORT bool operator!=( const char *s1, const TQString &s2 ); -Q_EXPORT bool operator<( const char *s1, const TQString &s2 ); -Q_EXPORT bool operator<=( const char *s1, const TQString &s2 ); -Q_EXPORT bool operator==( const char *s1, const TQString &s2 ); -//Q_EXPORT bool operator>( const char *s1, const TQString &s2 ); // MSVC++ -Q_EXPORT bool operator>=( const char *s1, const TQString &s2 ); -#endif - -Q_EXPORT inline const TQString operator+( const TQString &s1, const TQString &s2 ) +TQ_EXPORT bool operator!=( const TQString &s1, const char *s2 ); +TQ_EXPORT bool operator<( const TQString &s1, const char *s2 ); +TQ_EXPORT bool operator<=( const TQString &s1, const char *s2 ); +TQ_EXPORT bool operator==( const TQString &s1, const char *s2 ); +TQ_EXPORT bool operator>( const TQString &s1, const char *s2 ); +TQ_EXPORT bool operator>=( const TQString &s1, const char *s2 ); +TQ_EXPORT bool operator!=( const char *s1, const TQString &s2 ); +TQ_EXPORT bool operator<( const char *s1, const TQString &s2 ); +TQ_EXPORT bool operator<=( const char *s1, const TQString &s2 ); +TQ_EXPORT bool operator==( const char *s1, const TQString &s2 ); +//TQ_EXPORT bool operator>( const char *s1, const TQString &s2 ); // MSVC++ +TQ_EXPORT bool operator>=( const char *s1, const TQString &s2 ); +#endif + +TQ_EXPORT inline const TQString operator+( const TQString &s1, const TQString &s2 ) { TQString tmp( s1 ); tmp += s2; @@ -1079,14 +1079,14 @@ Q_EXPORT inline const TQString operator+( const TQString &s1, const TQString } #ifndef TQT_NO_CAST_ASCII -Q_EXPORT inline const TQString operator+( const TQString &s1, const char *s2 ) +TQ_EXPORT inline const TQString operator+( const TQString &s1, const char *s2 ) { TQString tmp( s1 ); tmp += TQString::fromAscii(s2); return tmp; } -Q_EXPORT inline const TQString operator+( const char *s1, const TQString &s2 ) +TQ_EXPORT inline const TQString operator+( const char *s1, const TQString &s2 ) { TQString tmp = TQString::fromAscii( s1 ); tmp += s2; @@ -1094,21 +1094,21 @@ Q_EXPORT inline const TQString operator+( const char *s1, const TQString &s2 } #endif -Q_EXPORT inline const TQString operator+( const TQString &s1, TQChar c2 ) +TQ_EXPORT inline const TQString operator+( const TQString &s1, TQChar c2 ) { TQString tmp( s1 ); tmp += c2; return tmp; } -Q_EXPORT inline const TQString operator+( const TQString &s1, char c2 ) +TQ_EXPORT inline const TQString operator+( const TQString &s1, char c2 ) { TQString tmp( s1 ); tmp += c2; return tmp; } -Q_EXPORT inline const TQString operator+( TQChar c1, const TQString &s2 ) +TQ_EXPORT inline const TQString operator+( TQChar c1, const TQString &s2 ) { TQString tmp; tmp += c1; @@ -1116,7 +1116,7 @@ Q_EXPORT inline const TQString operator+( TQChar c1, const TQString &s2 ) return tmp; } -Q_EXPORT inline const TQString operator+( char c1, const TQString &s2 ) +TQ_EXPORT inline const TQString operator+( char c1, const TQString &s2 ) { TQString tmp; tmp += c1; @@ -1125,12 +1125,12 @@ Q_EXPORT inline const TQString operator+( char c1, const TQString &s2 ) } #ifndef TQT_NO_STL -Q_EXPORT inline const TQString operator+(const TQString& s1, const std::string& s2) +TQ_EXPORT inline const TQString operator+(const TQString& s1, const std::string& s2) { return s1 + TQString(s2); } -Q_EXPORT inline const TQString operator+(const std::string& s1, const TQString& s2) +TQ_EXPORT inline const TQString operator+(const std::string& s1, const TQString& s2) { TQString tmp(s2); return TQString(tmp.prepend(s1)); @@ -1139,11 +1139,11 @@ Q_EXPORT inline const TQString operator+(const std::string& s1, const TQStri #if defined(Q_OS_WIN32) -extern Q_EXPORT TQString qt_winTQString(void*); -extern Q_EXPORT const void* qt_winTchar(const TQString& str, bool addnul); -extern Q_EXPORT void* qt_winTchar_new(const TQString& str); -extern Q_EXPORT TQCString qt_winTQString2MB( const TQString& s, int len=-1 ); -extern Q_EXPORT TQString qt_winMB2TQString( const char* mb, int len=-1 ); +extern TQ_EXPORT TQString qt_winTQString(void*); +extern TQ_EXPORT const void* qt_winTchar(const TQString& str, bool addnul); +extern TQ_EXPORT void* qt_winTchar_new(const TQString& str); +extern TQ_EXPORT TQCString qt_winTQString2MB( const TQString& s, int len=-1 ); +extern TQ_EXPORT TQString qt_winMB2TQString( const char* mb, int len=-1 ); #endif #define Q_DEFINED_QSTRING diff --git a/doc/html/qstringlist-h.html b/doc/html/qstringlist-h.html index 90b19186b..3b7fe84d5 100644 --- a/doc/html/qstringlist-h.html +++ b/doc/html/qstringlist-h.html @@ -90,11 +90,11 @@ template <class T> class TQDeepCopy; #if defined(Q_TEMPLATEDLL) // MOC_SKIP_BEGIN -//Q_TEMPLATE_EXTERN template class Q_EXPORT TQValueList<TQString>; +//Q_TEMPLATE_EXTERN template class TQ_EXPORT TQValueList<TQString>; // MOC_SKIP_END #endif -class Q_EXPORT TQStringList : public TQValueList<TQString> +class TQ_EXPORT TQStringList : public TQValueList<TQString> { public: TQStringList() { } @@ -134,8 +134,8 @@ protected: #ifndef TQT_NO_DATASTREAM class TQDataStream; -extern Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQStringList& ); -extern Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQStringList& ); +extern TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQStringList& ); +extern TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQStringList& ); #endif #endif // TQT_NO_STRINGLIST diff --git a/doc/html/qstrlist-h.html b/doc/html/qstrlist-h.html index 5de07fcf5..4624cfca1 100644 --- a/doc/html/qstrlist-h.html +++ b/doc/html/qstrlist-h.html @@ -91,7 +91,7 @@ class TQStrListIterator : public TQPtrListIterator<char> typedef TQPtrListIterator<char> TQStrListIterator; #endif -class Q_EXPORT TQStrList : public TQPtrList<char> +class TQ_EXPORT TQStrList : public TQPtrList<char> { public: TQStrList( bool deepCopies=TRUE ) { dc = deepCopies; del_item = deepCopies; } @@ -114,7 +114,7 @@ private: }; -class Q_EXPORT TQStrIList : public TQStrList // case insensitive string list +class TQ_EXPORT TQStrIList : public TQStrList // case insensitive string list { public: TQStrIList( bool deepCopies=TRUE ) : TQStrList( deepCopies ) {} diff --git a/doc/html/qstyle-h.html b/doc/html/qstyle-h.html index 8f8fa19da..e5248ea17 100644 --- a/doc/html/qstyle-h.html +++ b/doc/html/qstyle-h.html @@ -157,7 +157,7 @@ private: class TQStyleHintReturn; // not defined yet -class Q_EXPORT TQStyle: public TQObject +class TQ_EXPORT TQStyle: public TQObject { TQ_OBJECT diff --git a/doc/html/qstylefactory-h.html b/doc/html/qstylefactory-h.html index daa18ddc8..9f4066f8f 100644 --- a/doc/html/qstylefactory-h.html +++ b/doc/html/qstylefactory-h.html @@ -84,7 +84,7 @@ body { background: #ffffff; color: black; } class TQString; class TQStyle; -class Q_EXPORT TQStyleFactory +class TQ_EXPORT TQStyleFactory { public: #ifndef TQT_NO_STRINGLIST diff --git a/doc/html/qstyleplugin-h.html b/doc/html/qstyleplugin-h.html index a80b1ea81..33329a5e2 100644 --- a/doc/html/qstyleplugin-h.html +++ b/doc/html/qstyleplugin-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQStyle; class TQStylePluginPrivate; -class Q_EXPORT TQStylePlugin : public TQGPlugin +class TQ_EXPORT TQStylePlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qstylesheet-h.html b/doc/html/qstylesheet-h.html index 0cfa5e2ef..03e40160f 100644 --- a/doc/html/qstylesheet-h.html +++ b/doc/html/qstylesheet-h.html @@ -92,7 +92,7 @@ class TQTextDocument; template<class Key, class T> class TQMap; class TQStyleSheetItemData; -class Q_EXPORT TQStyleSheetItem : public TQt +class TQ_EXPORT TQStyleSheetItem : public TQt { public: TQStyleSheetItem( TQStyleSheet* parent, const TQString& name ); @@ -230,10 +230,10 @@ private: #if defined(Q_TEMPLATEDLL) // MOC_SKIP_BEGIN -Q_TEMPLATE_EXTERN template class Q_EXPORT TQDict<TQStyleSheetItem>; -Q_TEMPLATE_EXTERN template class Q_EXPORT TQValueList< TQPtrVector<TQStyleSheetItem> >; -Q_TEMPLATE_EXTERN template class Q_EXPORT TQPtrVector<TQStyleSheetItem>; -Q_TEMPLATE_EXTERN template class Q_EXPORT TQValueList<TQStyleSheetItem::ListStyle>; +Q_TEMPLATE_EXTERN template class TQ_EXPORT TQDict<TQStyleSheetItem>; +Q_TEMPLATE_EXTERN template class TQ_EXPORT TQValueList< TQPtrVector<TQStyleSheetItem> >; +Q_TEMPLATE_EXTERN template class TQ_EXPORT TQPtrVector<TQStyleSheetItem>; +Q_TEMPLATE_EXTERN template class TQ_EXPORT TQValueList<TQStyleSheetItem::ListStyle>; // MOC_SKIP_END #endif @@ -241,7 +241,7 @@ Q_TEMPLATE_EXTERN template class Q_EXPORT TQValueList<TQStyleSheetItem::ListS class TQTextCustomItem; #endif -class Q_EXPORT TQStyleSheet : public TQObject +class TQ_EXPORT TQStyleSheet : public TQObject { TQ_OBJECT public: diff --git a/doc/html/qsyntaxhighlighter-h.html b/doc/html/qsyntaxhighlighter-h.html index 7c67186a6..459aeb752 100644 --- a/doc/html/qsyntaxhighlighter-h.html +++ b/doc/html/qsyntaxhighlighter-h.html @@ -88,7 +88,7 @@ class TQSyntaxHighlighterInternal; class TQSyntaxHighlighterPrivate; class TQTextParagraph; -class Q_EXPORT TQSyntaxHighlighter : public TQt +class TQ_EXPORT TQSyntaxHighlighter : public TQt { friend class TQSyntaxHighlighterInternal; diff --git a/doc/html/qtabbar-h.html b/doc/html/qtabbar-h.html index 6ea01f854..3c9ab9489 100644 --- a/doc/html/qtabbar-h.html +++ b/doc/html/qtabbar-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQTabBar; class TQIconSet; -class Q_EXPORT TQTab : public TQt +class TQ_EXPORT TQTab : public TQt { friend class TQTabBar; friend class TQTabWidget; @@ -121,7 +121,7 @@ private: struct TQTabPrivate; //class *TQAccel; -class Q_EXPORT TQTabBar: public TQWidget +class TQ_EXPORT TQTabBar: public TQWidget { TQ_OBJECT TQ_ENUMS( Shape ) diff --git a/doc/html/qtabdialog-h.html b/doc/html/qtabdialog-h.html index 94b665495..e95391a13 100644 --- a/doc/html/qtabdialog-h.html +++ b/doc/html/qtabdialog-h.html @@ -88,7 +88,7 @@ class TQTabBar; class TQTab; class TQTabDialogPrivate; -class Q_EXPORT TQTabDialog : public TQDialog +class TQ_EXPORT TQTabDialog : public TQDialog { TQ_OBJECT public: diff --git a/doc/html/qtable-h.html b/doc/html/qtable-h.html index a49e02bb4..362ba7f62 100644 --- a/doc/html/qtable-h.html +++ b/doc/html/qtable-h.html @@ -98,7 +98,7 @@ body { background: #ffffff; color: black; } # define TQM_TEMPLATE_EXTERN_TABLE #endif #else -#define TQM_EXPORT_TABLE Q_EXPORT +#define TQM_EXPORT_TABLE TQ_EXPORT #define TQM_TEMPLATE_EXTERN_TABLE Q_TEMPLATE_EXTERN #endif diff --git a/doc/html/qtabwidget-h.html b/doc/html/qtabwidget-h.html index 3c7bbef5c..4b938cff9 100644 --- a/doc/html/qtabwidget-h.html +++ b/doc/html/qtabwidget-h.html @@ -90,7 +90,7 @@ class TQTab; class TQWidgetStack; -class Q_EXPORT TQTabWidget : public TQWidget +class TQ_EXPORT TQTabWidget : public TQWidget { TQ_OBJECT TQ_ENUMS( TabPosition ) diff --git a/doc/html/qtextbrowser-h.html b/doc/html/qtextbrowser-h.html index c69ef81eb..65596b236 100644 --- a/doc/html/qtextbrowser-h.html +++ b/doc/html/qtextbrowser-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQTextBrowserData; -class Q_EXPORT TQTextBrowser : public TQTextEdit +class TQ_EXPORT TQTextBrowser : public TQTextEdit { TQ_OBJECT TQ_PROPERTY( TQString source READ source WRITE setSource ) diff --git a/doc/html/qtextcodec-h.html b/doc/html/qtextcodec-h.html index 8cdc20e77..5920e6aa5 100644 --- a/doc/html/qtextcodec-h.html +++ b/doc/html/qtextcodec-h.html @@ -87,19 +87,19 @@ class TQTextCodec; class TQIODevice; class TQFont; -class Q_EXPORT TQTextEncoder { +class TQ_EXPORT TQTextEncoder { public: virtual ~TQTextEncoder(); virtual TQCString fromUnicode(const TQString& uc, int& lenInOut) = 0; }; -class Q_EXPORT TQTextDecoder { +class TQ_EXPORT TQTextDecoder { public: virtual ~TQTextDecoder(); virtual TQString toUnicode(const char* chars, int len) = 0; }; -class Q_EXPORT TQTextCodec { +class TQ_EXPORT TQTextCodec { public: virtual ~TQTextCodec(); diff --git a/doc/html/qtextcodecplugin-h.html b/doc/html/qtextcodecplugin-h.html index bf98ff129..2a9d27a4d 100644 --- a/doc/html/qtextcodecplugin-h.html +++ b/doc/html/qtextcodecplugin-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } class TQTextCodec; class TQTextCodecPluginPrivate; -class Q_EXPORT TQTextCodecPlugin : public TQGPlugin +class TQ_EXPORT TQTextCodecPlugin : public TQGPlugin { TQ_OBJECT public: diff --git a/doc/html/qtextedit-h.html b/doc/html/qtextedit-h.html index a22442917..a34a8c4f1 100644 --- a/doc/html/qtextedit-h.html +++ b/doc/html/qtextedit-h.html @@ -168,7 +168,7 @@ public: }; #endif -class Q_EXPORT TQTextEdit : public TQScrollView +class TQ_EXPORT TQTextEdit : public TQScrollView { friend class TQTextBrowser; friend class TQSyntaxHighlighter; @@ -503,7 +503,7 @@ private slots: void clipboardChanged(); private: - struct Q_EXPORT UndoRedoInfo { + struct TQ_EXPORT UndoRedoInfo { enum Type { Invalid, Insert, Delete, Backspace, Return, RemoveSelected, Format, Style, IME }; UndoRedoInfo( TQTextDocument *dc ); diff --git a/doc/html/qtextstream-h.html b/doc/html/qtextstream-h.html index 4240a2c90..f82e70216 100644 --- a/doc/html/qtextstream-h.html +++ b/doc/html/qtextstream-h.html @@ -89,7 +89,7 @@ class TQTextDecoder; class TQTextStreamPrivate; -class Q_EXPORT TQTextStream // text stream class +class TQ_EXPORT TQTextStream // text stream class { public: enum Encoding { Locale, Latin1, Unicode, UnicodeNetworkOrder, @@ -234,7 +234,7 @@ private: // Disabled copy constructor and operator= typedef TQTextStream TQTS; -class Q_EXPORT TQTextIStream : public TQTextStream { +class TQ_EXPORT TQTextIStream : public TQTextStream { public: TQTextIStream( const TQString* s ) : TQTextStream((TQString*)s,IO_ReadOnly) { } @@ -250,7 +250,7 @@ private: // Disabled copy constructor and operator= #endif }; -class Q_EXPORT TQTextOStream : public TQTextStream { +class TQ_EXPORT TQTextOStream : public TQTextStream { public: TQTextOStream( TQString* s ) : TQTextStream(s,IO_WriteOnly) { } @@ -325,7 +325,7 @@ inline TQChar TQTextStream::ts_getc() typedef TQTextStream & (*TQTSFUNC)(TQTextStream &);// manipulator function typedef int (TQTextStream::*TQTSMFI)(int); // manipulator w/int argument -class Q_EXPORT TQTSManip { // text stream manipulator +class TQ_EXPORT TQTSManip { // text stream manipulator public: TQTSManip( TQTSMFI m, int a ) { mf=m; arg=a; } void exec( TQTextStream &s ) { (s.*mf)(arg); } @@ -334,37 +334,37 @@ private: int arg; // member function argument }; -Q_EXPORT inline TQTextStream &operator>>( TQTextStream &s, TQTSFUNC f ) +TQ_EXPORT inline TQTextStream &operator>>( TQTextStream &s, TQTSFUNC f ) { return (*f)( s ); } -Q_EXPORT inline TQTextStream &operator<<( TQTextStream &s, TQTSFUNC f ) +TQ_EXPORT inline TQTextStream &operator<<( TQTextStream &s, TQTSFUNC f ) { return (*f)( s ); } -Q_EXPORT inline TQTextStream &operator<<( TQTextStream &s, TQTSManip m ) +TQ_EXPORT inline TQTextStream &operator<<( TQTextStream &s, TQTSManip m ) { m.exec(s); return s; } -Q_EXPORT TQTextStream &bin( TQTextStream &s ); // set bin notation -Q_EXPORT TQTextStream &oct( TQTextStream &s ); // set oct notation -Q_EXPORT TQTextStream &dec( TQTextStream &s ); // set dec notation -Q_EXPORT TQTextStream &hex( TQTextStream &s ); // set hex notation -Q_EXPORT TQTextStream &endl( TQTextStream &s ); // insert EOL ('\n') -Q_EXPORT TQTextStream &flush( TQTextStream &s ); // flush output -Q_EXPORT TQTextStream &ws( TQTextStream &s ); // eat whitespace on input -Q_EXPORT TQTextStream &reset( TQTextStream &s ); // set default flags +TQ_EXPORT TQTextStream &bin( TQTextStream &s ); // set bin notation +TQ_EXPORT TQTextStream &oct( TQTextStream &s ); // set oct notation +TQ_EXPORT TQTextStream &dec( TQTextStream &s ); // set dec notation +TQ_EXPORT TQTextStream &hex( TQTextStream &s ); // set hex notation +TQ_EXPORT TQTextStream &endl( TQTextStream &s ); // insert EOL ('\n') +TQ_EXPORT TQTextStream &flush( TQTextStream &s ); // flush output +TQ_EXPORT TQTextStream &ws( TQTextStream &s ); // eat whitespace on input +TQ_EXPORT TQTextStream &reset( TQTextStream &s ); // set default flags -Q_EXPORT inline TQTSManip qSetW( int w ) +TQ_EXPORT inline TQTSManip qSetW( int w ) { TQTSMFI func = &TQTextStream::width; return TQTSManip(func,w); } -Q_EXPORT inline TQTSManip qSetFill( int f ) +TQ_EXPORT inline TQTSManip qSetFill( int f ) { TQTSMFI func = &TQTextStream::fill; return TQTSManip(func,f); } -Q_EXPORT inline TQTSManip qSetPrecision( int p ) +TQ_EXPORT inline TQTSManip qSetPrecision( int p ) { TQTSMFI func = &TQTextStream::precision; return TQTSManip(func,p); diff --git a/doc/html/qtextview-h.html b/doc/html/qtextview-h.html index 31d593a6e..9c2aa2ba7 100644 --- a/doc/html/qtextview-h.html +++ b/doc/html/qtextview-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_TEXTVIEW -class Q_EXPORT TQTextView : public TQTextEdit +class TQ_EXPORT TQTextView : public TQTextEdit { TQ_OBJECT TQ_OVERRIDE( int undoDepth DESIGNABLE false SCRIPTABLE false ) diff --git a/doc/html/qthread-h.html b/doc/html/qthread-h.html index 00fc81ffe..cbde3d13e 100644 --- a/doc/html/qthread-h.html +++ b/doc/html/qthread-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQThreadInstance; -class Q_EXPORT TQThread : public TQt +class TQ_EXPORT TQThread : public TQt { public: static TQt::HANDLE currentThread(); diff --git a/doc/html/qthreadstorage-h.html b/doc/html/qthreadstorage-h.html index 7c60605b1..7efc05556 100644 --- a/doc/html/qthreadstorage-h.html +++ b/doc/html/qthreadstorage-h.html @@ -81,7 +81,7 @@ body { background: #ffffff; color: black; } #include "ntqglobal.h" #endif // QT_H -class Q_EXPORT TQThreadStorageData +class TQ_EXPORT TQThreadStorageData { public: TQThreadStorageData( void (*func)(void *) ); diff --git a/doc/html/qtimer-h.html b/doc/html/qtimer-h.html index b639bee72..72c62daab 100644 --- a/doc/html/qtimer-h.html +++ b/doc/html/qtimer-h.html @@ -82,7 +82,7 @@ body { background: #ffffff; color: black; } #endif // QT_H -class Q_EXPORT TQTimer : public TQObject +class TQ_EXPORT TQTimer : public TQObject { TQ_OBJECT public: diff --git a/doc/html/qtoolbar-h.html b/doc/html/qtoolbar-h.html index b2cab845a..5dba2d321 100644 --- a/doc/html/qtoolbar-h.html +++ b/doc/html/qtoolbar-h.html @@ -88,7 +88,7 @@ class TQButton; class TQBoxLayout; class TQToolBarPrivate; -class Q_EXPORT TQToolBar: public TQDockWindow +class TQ_EXPORT TQToolBar: public TQDockWindow { TQ_OBJECT TQ_PROPERTY( TQString label READ label WRITE setLabel ) diff --git a/doc/html/qtoolbox-h.html b/doc/html/qtoolbox-h.html index eb46a0d6e..9facc7fc0 100644 --- a/doc/html/qtoolbox-h.html +++ b/doc/html/qtoolbox-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQToolBoxPrivate; class TQWidgetList; -class Q_EXPORT TQToolBox : public TQFrame +class TQ_EXPORT TQToolBox : public TQFrame { TQ_OBJECT TQ_PROPERTY( int currentIndex READ currentIndex WRITE setCurrentIndex ) diff --git a/doc/html/qtoolbutton-h.html b/doc/html/qtoolbutton-h.html index bd585da5d..f9711d445 100644 --- a/doc/html/qtoolbutton-h.html +++ b/doc/html/qtoolbutton-h.html @@ -90,7 +90,7 @@ class TQToolButtonPrivate; class TQToolBar; class TQPopupMenu; -class Q_EXPORT TQToolButton : public TQButton +class TQ_EXPORT TQToolButton : public TQButton { TQ_OBJECT TQ_ENUMS( TextPosition ) diff --git a/doc/html/qtooltip-h.html b/doc/html/qtooltip-h.html index f62e44569..13add5a83 100644 --- a/doc/html/qtooltip-h.html +++ b/doc/html/qtooltip-h.html @@ -89,7 +89,7 @@ class TQTipManager; class TQIconViewToolTip; class TQListViewToolTip; -class Q_EXPORT TQToolTipGroup: public TQObject +class TQ_EXPORT TQToolTipGroup: public TQObject { TQ_OBJECT TQ_PROPERTY( bool delay READ delay WRITE setDelay ) @@ -124,7 +124,7 @@ private: // Disabled copy constructor and operator= }; -class Q_EXPORT TQToolTip: public TQt +class TQ_EXPORT TQToolTip: public TQt { public: TQToolTip( TQWidget *, TQToolTipGroup * = 0 ); diff --git a/doc/html/qtranslator-h.html b/doc/html/qtranslator-h.html index adba2bff4..d8c00b669 100644 --- a/doc/html/qtranslator-h.html +++ b/doc/html/qtranslator-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQTranslatorPrivate; -class Q_EXPORT TQTranslatorMessage +class TQ_EXPORT TQTranslatorMessage { public: TQTranslatorMessage(); @@ -138,7 +138,7 @@ private: }; -class Q_EXPORT TQTranslator: public TQObject +class TQ_EXPORT TQTranslator: public TQObject { TQ_OBJECT public: diff --git a/doc/html/qtsciicodec-h.html b/doc/html/qtsciicodec-h.html index 55180b4f0..174a44217 100644 --- a/doc/html/qtsciicodec-h.html +++ b/doc/html/qtsciicodec-h.html @@ -110,7 +110,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_CODECS -class Q_EXPORT TQTsciiCodec : public TQTextCodec { +class TQ_EXPORT TQTsciiCodec : public TQTextCodec { public: virtual int mibEnum() const; const char* name() const; diff --git a/doc/html/qurl-h.html b/doc/html/qurl-h.html index 9c0834e1c..073f2a32d 100644 --- a/doc/html/qurl-h.html +++ b/doc/html/qurl-h.html @@ -85,7 +85,7 @@ body { background: #ffffff; color: black; } class TQUrlPrivate; -class Q_EXPORT TQUrl +class TQ_EXPORT TQUrl { public: TQUrl(); diff --git a/doc/html/qurlinfo-h.html b/doc/html/qurlinfo-h.html index 316ab4849..410a5e9a1 100644 --- a/doc/html/qurlinfo-h.html +++ b/doc/html/qurlinfo-h.html @@ -86,7 +86,7 @@ class TQUrlOperator; class TQUrl; class TQUrlInfoPrivate; -class Q_EXPORT TQUrlInfo +class TQ_EXPORT TQUrlInfo { public: enum PermissionSpec { diff --git a/doc/html/qurloperator-h.html b/doc/html/qurloperator-h.html index af8880690..5a1b87d18 100644 --- a/doc/html/qurloperator-h.html +++ b/doc/html/qurloperator-h.html @@ -90,7 +90,7 @@ body { background: #ffffff; color: black; } class TQUrlInfo; class TQUrlOperatorPrivate; -class Q_EXPORT TQUrlOperator : public TQObject, public TQUrl +class TQ_EXPORT TQUrlOperator : public TQObject, public TQUrl { friend class TQNetworkProtocol; diff --git a/doc/html/quuid-h.html b/doc/html/quuid-h.html index 0c4d14331..71a19fbd8 100644 --- a/doc/html/quuid-h.html +++ b/doc/html/quuid-h.html @@ -97,7 +97,7 @@ typedef struct _GUID #endif -struct Q_EXPORT TQUuid +struct TQ_EXPORT TQUuid { enum Variant { VarUnknown =-1, @@ -223,8 +223,8 @@ struct Q_EXPORT TQUuid }; #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQUuid & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQUuid & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQUuid & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQUuid & ); #endif #endif //TQUUID_H diff --git a/doc/html/qvalidator-h.html b/doc/html/qvalidator-h.html index 81c50a770..8bf5b930c 100644 --- a/doc/html/qvalidator-h.html +++ b/doc/html/qvalidator-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_VALIDATOR -class Q_EXPORT TQValidator : public TQObject +class TQ_EXPORT TQValidator : public TQObject { TQ_OBJECT public: @@ -106,7 +106,7 @@ private: }; -class Q_EXPORT TQIntValidator : public TQValidator +class TQ_EXPORT TQIntValidator : public TQValidator { TQ_OBJECT TQ_PROPERTY( int bottom READ bottom WRITE setBottom ) @@ -138,7 +138,7 @@ private: #ifndef TQT_NO_REGEXP -class Q_EXPORT TQDoubleValidator : public TQValidator +class TQ_EXPORT TQDoubleValidator : public TQValidator { TQ_OBJECT TQ_PROPERTY( double bottom READ bottom WRITE setBottom ) @@ -173,7 +173,7 @@ private: }; -class Q_EXPORT TQRegExpValidator : public TQValidator +class TQ_EXPORT TQRegExpValidator : public TQValidator { TQ_OBJECT // TQ_PROPERTY( TQRegExp regExp READ regExp WRITE setRegExp ) diff --git a/doc/html/qvariant-h.html b/doc/html/qvariant-h.html index b4e7f021b..7b8783753 100644 --- a/doc/html/qvariant-h.html +++ b/doc/html/qvariant-h.html @@ -118,7 +118,7 @@ template <class Key, class T> class TQMap; template <class Key, class T> class TQMapConstIterator; #endif -class Q_EXPORT TQVariant +class TQ_EXPORT TQVariant { public: enum Type { @@ -422,10 +422,10 @@ inline TQMapConstIterator<TQString,TQVariant> TQVariant::mapFind( const TQ #endif #ifndef TQT_NO_DATASTREAM -Q_EXPORT TQDataStream& operator>> ( TQDataStream& s, TQVariant& p ); -Q_EXPORT TQDataStream& operator<< ( TQDataStream& s, const TQVariant& p ); -Q_EXPORT TQDataStream& operator>> ( TQDataStream& s, TQVariant::Type& p ); -Q_EXPORT TQDataStream& operator<< ( TQDataStream& s, const TQVariant::Type p ); +TQ_EXPORT TQDataStream& operator>> ( TQDataStream& s, TQVariant& p ); +TQ_EXPORT TQDataStream& operator<< ( TQDataStream& s, const TQVariant& p ); +TQ_EXPORT TQDataStream& operator>> ( TQDataStream& s, TQVariant::Type& p ); +TQ_EXPORT TQDataStream& operator<< ( TQDataStream& s, const TQVariant::Type p ); #endif #endif //TQT_NO_VARIANT diff --git a/doc/html/qvbox-h.html b/doc/html/qvbox-h.html index 90e2468c7..e0a6ac3ca 100644 --- a/doc/html/qvbox-h.html +++ b/doc/html/qvbox-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_VBOX -class Q_EXPORT TQVBox : public TQHBox +class TQ_EXPORT TQVBox : public TQHBox { TQ_OBJECT public: diff --git a/doc/html/qvbuttongroup-h.html b/doc/html/qvbuttongroup-h.html index 949fce9ba..aba7be2c0 100644 --- a/doc/html/qvbuttongroup-h.html +++ b/doc/html/qvbuttongroup-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_VBUTTONGROUP -class Q_EXPORT TQVButtonGroup : public TQButtonGroup +class TQ_EXPORT TQVButtonGroup : public TQButtonGroup { TQ_OBJECT public: diff --git a/doc/html/qvgroupbox-h.html b/doc/html/qvgroupbox-h.html index 91c4c0824..195b9d267 100644 --- a/doc/html/qvgroupbox-h.html +++ b/doc/html/qvgroupbox-h.html @@ -83,7 +83,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_VGROUPBOX -class Q_EXPORT TQVGroupBox : public TQGroupBox +class TQ_EXPORT TQVGroupBox : public TQGroupBox { TQ_OBJECT public: diff --git a/doc/html/qwaitcondition-h.html b/doc/html/qwaitcondition-h.html index bc5a7336a..06589092f 100644 --- a/doc/html/qwaitcondition-h.html +++ b/doc/html/qwaitcondition-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } class TQWaitConditionPrivate; class TQMutex; -class Q_EXPORT TQWaitCondition +class TQ_EXPORT TQWaitCondition { public: TQWaitCondition(); diff --git a/doc/html/qwhatsthis-h.html b/doc/html/qwhatsthis-h.html index 96714f6d9..a73e03c6a 100644 --- a/doc/html/qwhatsthis-h.html +++ b/doc/html/qwhatsthis-h.html @@ -87,7 +87,7 @@ class TQToolButton; class TQPopupMenu; class TQStyleSheet; -class Q_EXPORT TQWhatsThis: public TQt +class TQ_EXPORT TQWhatsThis: public TQt { public: TQWhatsThis( TQWidget *); diff --git a/doc/html/qwidget-h.html b/doc/html/qwidget-h.html index a39ba25ed..966fd263c 100644 --- a/doc/html/qwidget-h.html +++ b/doc/html/qwidget-h.html @@ -96,7 +96,7 @@ class TQCursor; class TQWSRegionManager; class TQStyle; -class Q_EXPORT TQWidget : public TQObject, public TQPaintDevice +class TQ_EXPORT TQWidget : public TQObject, public TQPaintDevice { TQ_OBJECT TQ_ENUMS( BackgroundMode FocusPolicy BackgroundOrigin ) @@ -964,7 +964,7 @@ class TQOleDropTarget; class TQMacDndExtra; #endif -struct Q_EXPORT TQTLWExtra { +struct TQ_EXPORT TQTLWExtra { #ifndef TQT_NO_WIDGET_TOPEXTRA TQString caption; // widget caption TQString iconText; // widget icon text @@ -1013,7 +1013,7 @@ struct Q_EXPORT TQTLWExtra { // dear user: you can see this struct, but it is internal. do not touch. -struct Q_EXPORT TQWExtra { +struct TQ_EXPORT TQWExtra { TQ_INT16 minw, minh; // minimum size TQ_INT16 maxw, maxh; // maximum size TQPixmap *bg_pix; // background pixmap diff --git a/doc/html/qwidgetplugin-h.html b/doc/html/qwidgetplugin-h.html index d63cabbe7..7d644e3b1 100644 --- a/doc/html/qwidgetplugin-h.html +++ b/doc/html/qwidgetplugin-h.html @@ -97,7 +97,7 @@ body { background: #ffffff; color: black; } class TQWidgetPluginPrivate; class TQWidget; -class Q_EXPORT TQWidgetPlugin : public TQGPlugin +class TQ_EXPORT TQWidgetPlugin : public TQGPlugin { TQ_OBJECT public: @@ -122,7 +122,7 @@ private: class TQWidgetContainerPluginPrivate; -class Q_EXPORT TQWidgetContainerPlugin : public TQWidgetPlugin +class TQ_EXPORT TQWidgetContainerPlugin : public TQWidgetPlugin { public: diff --git a/doc/html/qwidgetstack-h.html b/doc/html/qwidgetstack-h.html index 14034c379..0bb7deb0c 100644 --- a/doc/html/qwidgetstack-h.html +++ b/doc/html/qwidgetstack-h.html @@ -89,7 +89,7 @@ body { background: #ffffff; color: black; } class TQWidgetStackPrivate; -class Q_EXPORT TQWidgetStack: public TQFrame +class TQ_EXPORT TQWidgetStack: public TQFrame { TQ_OBJECT public: diff --git a/doc/html/qwindowdefs-h.html b/doc/html/qwindowdefs-h.html index 4ff4fd5e6..680b9a87a 100644 --- a/doc/html/qwindowdefs-h.html +++ b/doc/html/qwindowdefs-h.html @@ -183,14 +183,14 @@ typedef struct _XGC *GC; typedef struct _XRegion *Region; typedef unsigned long WId; -Q_EXPORT Display *tqt_xdisplay(); -Q_EXPORT int tqt_xscreen(); -Q_EXPORT WId tqt_xrootwin(); // ### REMOVE 4.0 -Q_EXPORT WId tqt_xrootwin( int scrn ); // ### 4.0 add default arg of -1 -Q_EXPORT GC tqt_xget_readonly_gc( int scrn, bool monochrome ); -Q_EXPORT GC tqt_xget_temp_gc( int scrn, bool monochrome ); +TQ_EXPORT Display *tqt_xdisplay(); +TQ_EXPORT int tqt_xscreen(); +TQ_EXPORT WId tqt_xrootwin(); // ### REMOVE 4.0 +TQ_EXPORT WId tqt_xrootwin( int scrn ); // ### 4.0 add default arg of -1 +TQ_EXPORT GC tqt_xget_readonly_gc( int scrn, bool monochrome ); +TQ_EXPORT GC tqt_xget_temp_gc( int scrn, bool monochrome ); -Q_EXPORT const char *tqAppClass(); // get application class +TQ_EXPORT const char *tqAppClass(); // get application class #endif // Q_WS_X11 @@ -216,13 +216,13 @@ const TQCOORD TQCOORD_MIN = -TQCOORD_MAX - 1; typedef unsigned int TQRgb; // RGB triplet -Q_EXPORT const char *tqAppName(); // get application name +TQ_EXPORT const char *tqAppName(); // get application name // Misc functions typedef void (*TQtCleanUpFunction)(); -Q_EXPORT void tqAddPostRoutine( TQtCleanUpFunction ); -Q_EXPORT void tqRemovePostRoutine( TQtCleanUpFunction ); +TQ_EXPORT void tqAddPostRoutine( TQtCleanUpFunction ); +TQ_EXPORT void tqRemovePostRoutine( TQtCleanUpFunction ); #endif // TQWINDOWDEFS_H </pre> diff --git a/doc/html/qwindowsstyle-h.html b/doc/html/qwindowsstyle-h.html index 7c39d881f..17961081b 100644 --- a/doc/html/qwindowsstyle-h.html +++ b/doc/html/qwindowsstyle-h.html @@ -86,7 +86,7 @@ body { background: #ffffff; color: black; } #if defined(QT_PLUGIN) #define Q_EXPORT_STYLE_WINDOWS #else -#define Q_EXPORT_STYLE_WINDOWS Q_EXPORT +#define Q_EXPORT_STYLE_WINDOWS TQ_EXPORT #endif diff --git a/doc/html/qwizard-h.html b/doc/html/qwizard-h.html index cef129f1f..c72ed832c 100644 --- a/doc/html/qwizard-h.html +++ b/doc/html/qwizard-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } class TQHBoxLayout; class TQWizardPrivate; -class Q_EXPORT TQWizard : public TQDialog +class TQ_EXPORT TQWizard : public TQDialog { TQ_OBJECT TQ_PROPERTY( TQFont titleFont READ titleFont WRITE setTitleFont ) diff --git a/doc/html/qwmatrix-h.html b/doc/html/qwmatrix-h.html index 5c76b794c..8ce01f7f3 100644 --- a/doc/html/qwmatrix-h.html +++ b/doc/html/qwmatrix-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #ifndef TQT_NO_WMATRIX -class Q_EXPORT TQWMatrix // 2D transform matrix +class TQ_EXPORT TQWMatrix // 2D transform matrix { public: TQWMatrix(); @@ -149,15 +149,15 @@ private: double _dx, _dy; }; -Q_EXPORT TQWMatrix operator*( const TQWMatrix &, const TQWMatrix & ); +TQ_EXPORT TQWMatrix operator*( const TQWMatrix &, const TQWMatrix & ); /***************************************************************************** TQWMatrix stream functions *****************************************************************************/ -Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQWMatrix & ); -Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQWMatrix & ); +TQ_EXPORT TQDataStream &operator<<( TQDataStream &, const TQWMatrix & ); +TQ_EXPORT TQDataStream &operator>>( TQDataStream &, TQWMatrix & ); #endif // TQT_NO_WMATRIX diff --git a/doc/html/qworkspace-h.html b/doc/html/qworkspace-h.html index 6d0470e7f..cc4764698 100644 --- a/doc/html/qworkspace-h.html +++ b/doc/html/qworkspace-h.html @@ -87,7 +87,7 @@ body { background: #ffffff; color: black; } #if !defined( TQT_MODULE_WORKSPACE ) || defined( QT_INTERNAL_WORKSPACE ) #define TQM_EXPORT_WORKSPACE #else -#define TQM_EXPORT_WORKSPACE Q_EXPORT +#define TQM_EXPORT_WORKSPACE TQ_EXPORT #endif class TQWorkspaceChild; diff --git a/doc/html/qxml-h.html b/doc/html/qxml-h.html index b5ea5100f..ec1d10935 100644 --- a/doc/html/qxml-h.html +++ b/doc/html/qxml-h.html @@ -88,7 +88,7 @@ body { background: #ffffff; color: black; } #if !defined(TQT_MODULE_XML) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_XML ) #define TQM_EXPORT_XML #else -#define TQM_EXPORT_XML Q_EXPORT +#define TQM_EXPORT_XML TQ_EXPORT #endif #ifndef TQT_NO_XML diff --git a/doc/html/sql-driver.html b/doc/html/sql-driver.html index f523502f3..1145f5048 100644 --- a/doc/html/sql-driver.html +++ b/doc/html/sql-driver.html @@ -584,7 +584,7 @@ TQt SQL driver, both of these classes must to be subclassed and the abstract virtual methods in each class must be implemented. <p> To implement a TQt SQL driver as a plugin (so that it is recognized and loaded by the TQt library at runtime), the driver must use the -<tt>Q_EXPORT_PLUGIN</tt> macro. Read the <a href="plugins-howto.html">TQt +<tt>TQ_EXPORT_PLUGIN</tt> macro. Read the <a href="plugins-howto.html">TQt Plugin</a> documentation for more information on this. You can also check out how this is done in the SQL plugins that is provided with TQt in <tt>TQTDIR/plugins/src/sqldrivers</tt> and |