summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdragmoveevent.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-20 20:15:52 +0900
committerMichele Calgaro <[email protected]>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/man/man3/tqdragmoveevent.3qt
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz
tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <[email protected]>
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 edb856fb5..97ee0d4b2 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.