summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdropevent.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-20 20:15:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/man/man3/tqdropevent.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqdropevent.3qt')
-rw-r--r--doc/man/man3/tqdropevent.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqdropevent.3qt b/doc/man/man3/tqdropevent.3qt
index 0c23fa2e..920ea69b 100644
--- a/doc/man/man3/tqdropevent.3qt
+++ b/doc/man/man3/tqdropevent.3qt
@@ -18,10 +18,10 @@ Inherited by TQDragMoveEvent.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBTQDropEvent\fR ( const QPoint & pos, Type typ = Drop )"
+.BI "\fBTQDropEvent\fR ( const TQPoint & pos, Type typ = Drop )"
.br
.ti -1c
-.BI "const QPoint & \fBpos\fR () const"
+.BI "const TQPoint & \fBpos\fR () const"
.br
.ti -1c
.BI "bool \fBisAccepted\fR () const"
@@ -63,7 +63,7 @@ Inherited by TQDragMoveEvent.
.BI "TQByteArray data ( const char * f ) const \fI(obsolete)\fR"
.br
.ti -1c
-.BI "void \fBsetPoint\fR ( const QPoint & np )"
+.BI "void \fBsetPoint\fR ( const TQPoint & np )"
.br
.in -1c
.SH DESCRIPTION
@@ -90,7 +90,7 @@ This enum describes the action which a source requests that a target perform wit
.PP
The Link and Move actions only makes sense if the data is a reference, for example, text/uri-list file lists (see TQUriDrag).
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "TQDropEvent::TQDropEvent ( const QPoint & pos, Type typ = Drop )"
+.SH "TQDropEvent::TQDropEvent ( const TQPoint & pos, Type typ = Drop )"
Constructs a drop event that drops a drop of type \fItyp\fR on point \fIpos\fR.
.SH "void TQDropEvent::accept ( bool y = TRUE )"
Call this function to indicate whether the event provided data which your widget processed. Set \fIy\fR to TRUE (the default) if your widget could process the data, otherwise set \fIy\fR to FALSE. To get the data, use encodedData(), or preferably, the decode() methods of existing TQDragObject subclasses, such as TQTextDrag::decode(), or your own subclasses.
@@ -140,7 +140,7 @@ Example: fileiconview/tqfileiconview.cpp.
Returns TRUE if the drop target accepts the event; otherwise returns FALSE.
.SH "bool TQDropEvent::isActionAccepted () const"
Returns TRUE if the drop action was accepted by the drop site; otherwise returns FALSE.
-.SH "const QPoint & TQDropEvent::pos () const"
+.SH "const TQPoint & TQDropEvent::pos () const"
Returns the position where the drop was made.
.PP
Example: dirview/dirview.cpp.
@@ -154,7 +154,7 @@ Example: fileiconview/tqfileiconview.cpp.
Reimplemented from TQMimeSource.
.SH "void TQDropEvent::setAction ( Action a )"
Sets the action to \fIa\fR. This is used internally, you should not need to call this in your code: the \fIsource\fR decides the action, not the target.
-.SH "void TQDropEvent::setPoint ( const QPoint & np )"
+.SH "void TQDropEvent::setPoint ( const TQPoint & np )"
Sets the drop to happen at point \fInp\fR. You do not normally need to use this as it will be set internally before your widget receives the drop event.
.SH "TQWidget * TQDropEvent::source () const"
If the source of the drag operation is a widget in this application, this function returns that source, otherwise it returns 0. The source of the operation is the first parameter to drag object subclasses.