summaryrefslogtreecommitdiffstats
path: root/doc/html/qevent-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-13 13:18:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-13 13:18:58 +0900
commit1ba13366a7a377d50b9e8df9044ce11d8209f98c (patch)
tree40765573bcccd42239475344141eb98d2ac5d45e /doc/html/qevent-h.html
parent926102a455014e6ab308aaced19e32eed7ed4414 (diff)
downloadtqt3-1ba13366a7a377d50b9e8df9044ce11d8209f98c.tar.gz
tqt3-1ba13366a7a377d50b9e8df9044ce11d8209f98c.zip
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qevent-h.html')
-rw-r--r--doc/html/qevent-h.html48
1 files changed, 24 insertions, 24 deletions
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 &amp;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 &amp;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&amp; 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 &amp;pos, const TQPoint &amp;oldPos )
@@ -404,7 +404,7 @@ protected:
};
-class Q_EXPORT TQResizeEvent : public TQEvent
+class TQ_EXPORT TQResizeEvent : public TQEvent
{
public:
TQResizeEvent( const TQSize &amp;size, const TQSize &amp;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 &amp;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 &amp;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&amp; 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&amp; 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&amp; 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 );