summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqimagedrag.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 13:06:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 13:06:00 +0900
commit628b0bb74c3fc327efff8add9c73ada04b1cbea2 (patch)
tree16062922d35b5e0153b9f866e440f36603bd4f55 /doc/man/man3/tqimagedrag.3qt
parent7552c6d73043b1040139033f6864db48ae5446cf (diff)
downloadtqt3-628b0bb74c3fc327efff8add9c73ada04b1cbea2.tar.gz
tqt3-628b0bb74c3fc327efff8add9c73ada04b1cbea2.zip
Rename drag-n-drop nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqimagedrag.3qt')
-rw-r--r--doc/man/man3/tqimagedrag.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqimagedrag.3qt b/doc/man/man3/tqimagedrag.3qt
index 3db69ee29..de4be4dfd 100644
--- a/doc/man/man3/tqimagedrag.3qt
+++ b/doc/man/man3/tqimagedrag.3qt
@@ -9,9 +9,9 @@
.SH NAME
TQImageDrag \- Drag and drop object for transferring images
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits QDragObject.
+Inherits TQDragObject.
.PP
.SS "Public Members"
.in +1c
@@ -31,13 +31,13 @@ Inherits QDragObject.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "bool \fBcanDecode\fR ( const QMimeSource * e )"
+.BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, TQImage & img )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, TQImage & img )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, QPixmap & pm )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, QPixmap & pm )"
.br
.in -1c
.SH DESCRIPTION
@@ -45,7 +45,7 @@ The TQImageDrag class provides a drag and drop object for transferring images.
.PP
Images are offered to the receiving application in multiple formats, determined by Qt's output formats.
.PP
-For more information about drag and drop, see the QDragObject class and the drag and drop documentation.
+For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
@@ -55,19 +55,19 @@ Constructs an image drag object and sets its data to \fIimage\fR. \fIdragSource\
Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "TQImageDrag::~TQImageDrag ()"
Destroys the image drag object and frees up all allocated resources.
-.SH "bool TQImageDrag::canDecode ( const QMimeSource * e )\fC [static]\fR"
+.SH "bool TQImageDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the information in mime source \fIe\fR can be decoded into an image; otherwise returns FALSE.
.PP
See also decode().
.PP
Example: desktop/desktop.cpp.
-.SH "bool TQImageDrag::decode ( const QMimeSource * e, TQImage & img )\fC [static]\fR"
+.SH "bool TQImageDrag::decode ( const TQMimeSource * e, TQImage & img )\fC [static]\fR"
Attempts to decode the dropped information in mime source \fIe\fR into \fIimg\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP
See also canDecode().
.PP
Example: desktop/desktop.cpp.
-.SH "bool TQImageDrag::decode ( const QMimeSource * e, QPixmap & pm )\fC [static]\fR"
+.SH "bool TQImageDrag::decode ( const TQMimeSource * e, QPixmap & pm )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE.