summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqimagedrag.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqimagedrag.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
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 68b718cd9..8c61fb42b 100644
--- a/doc/man/man3/tqimagedrag.3qt
+++ b/doc/man/man3/tqimagedrag.3qt
@@ -16,16 +16,16 @@ Inherits QDragObject.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQImageDrag\fR ( QImage image, QWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBQImageDrag\fR ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQImageDrag\fR ( QWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBQImageDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
.BI "\fB~QImageDrag\fR ()"
.br
.ti -1c
-.BI "virtual void \fBsetImage\fR ( QImage image )"
+.BI "virtual void \fBsetImage\fR ( TQImage image )"
.br
.in -1c
.SS "Static Public Members"
@@ -34,7 +34,7 @@ Inherits QDragObject.
.BI "bool \fBcanDecode\fR ( const QMimeSource * e )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, QImage & img )"
+.BI "bool \fBdecode\fR ( const QMimeSource * e, TQImage & img )"
.br
.ti -1c
.BI "bool \fBdecode\fR ( const QMimeSource * e, QPixmap & pm )"
@@ -49,9 +49,9 @@ For more information about drag and drop, see the QDragObject class and the drag
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QImageDrag::QImageDrag ( QImage image, QWidget * dragSource = 0, const char * name = 0 )"
+.SH "QImageDrag::QImageDrag ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )"
Constructs an image drag object and sets its data to \fIimage\fR. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
-.SH "QImageDrag::QImageDrag ( QWidget * dragSource = 0, const char * name = 0 )"
+.SH "QImageDrag::QImageDrag ( TQWidget * dragSource = 0, const char * name = 0 )"
Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "QImageDrag::~QImageDrag ()"
Destroys the image drag object and frees up all allocated resources.
@@ -61,7 +61,7 @@ Returns TRUE if the information in mime source \fIe\fR can be decoded into an im
See also decode().
.PP
Example: desktop/desktop.cpp.
-.SH "bool QImageDrag::decode ( const QMimeSource * e, QImage & img )\fC [static]\fR"
+.SH "bool QImageDrag::decode ( const QMimeSource * 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().
@@ -72,10 +72,10 @@ This is an overloaded member function, provided for convenience. It behaves esse
.PP
Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP
-This is a convenience function that converts to a QPixmap via a QImage.
+This is a convenience function that converts to a QPixmap via a TQImage.
.PP
See also canDecode().
-.SH "void QImageDrag::setImage ( QImage image )\fC [virtual]\fR"
+.SH "void QImageDrag::setImage ( TQImage image )\fC [virtual]\fR"
Sets the image to be dragged to \fIimage\fR. You will need to call
this if you did not pass the image during construction.