summaryrefslogtreecommitdiffstats
path: root/doc/html/qevent-h.html
diff options
context:
space:
mode:
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 &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 [email protected] 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 );