summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdragmoveevent.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdragmoveevent.3qt')
-rw-r--r--doc/man/man3/tqdragmoveevent.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqdragmoveevent.3qt b/doc/man/man3/tqdragmoveevent.3qt
index edb856fb..97ee0d4b 100644
--- a/doc/man/man3/tqdragmoveevent.3qt
+++ b/doc/man/man3/tqdragmoveevent.3qt
@@ -18,16 +18,16 @@ Inherited by TQDragEnterEvent.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBTQDragMoveEvent\fR ( const QPoint & pos, Type type = DragMove )"
+.BI "\fBTQDragMoveEvent\fR ( const TQPoint & pos, Type type = DragMove )"
.br
.ti -1c
-.BI "QRect \fBanswerRect\fR () const"
+.BI "TQRect \fBanswerRect\fR () const"
.br
.ti -1c
-.BI "void \fBaccept\fR ( const QRect & r )"
+.BI "void \fBaccept\fR ( const TQRect & r )"
.br
.ti -1c
-.BI "void \fBignore\fR ( const QRect & r )"
+.BI "void \fBignore\fR ( const TQRect & r )"
.br
.in -1c
.SH DESCRIPTION
@@ -39,21 +39,21 @@ Note that this class inherits most of its functionality from TQDropEvent.
.PP
See also Drag And Drop Classes and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "TQDragMoveEvent::TQDragMoveEvent ( const QPoint & pos, Type type = DragMove )"
+.SH "TQDragMoveEvent::TQDragMoveEvent ( const TQPoint & pos, Type type = DragMove )"
Creates a TQDragMoveEvent for which the mouse is at point \fIpos\fR, and the event is of type \fItype\fR.
.PP
\fBWarning:\fR Do not create a TQDragMoveEvent yourself since these objects rely on Qt's internal state.
-.SH "void TQDragMoveEvent::accept ( const QRect & r )"
+.SH "void TQDragMoveEvent::accept ( const TQRect & r )"
The same as accept(), but also notifies that future moves will also be acceptable if they remain within the rectangle \fIr\fR on the widget: this can improve performance, but may also be ignored by the underlying system.
.PP
If the rectangle is empty, then drag move events will be sent continuously. This is useful if the source is scrolling in a timer event.
.PP
Examples:
.)l desktop/desktop.cpp and dirview/dirview.cpp.
-.SH "QRect TQDragMoveEvent::answerRect () const"
+.SH "TQRect TQDragMoveEvent::answerRect () const"
Returns the rectangle for which the acceptance of the move event applies.
-.SH "void TQDragMoveEvent::ignore ( const QRect & r )"
-The opposite of accept(const QRect&), i.e. says that moves within rectangle \fIr\fR are not acceptable (will be ignored).
+.SH "void TQDragMoveEvent::ignore ( const TQRect & r )"
+The opposite of accept(const TQRect&), i.e. says that moves within rectangle \fIr\fR are not acceptable (will be ignored).
.PP
Example: dirview/dirview.cpp.