summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdragobject.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/tqdragobject.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/tqdragobject.3qt')
-rw-r--r--doc/man/man3/tqdragobject.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqdragobject.3qt b/doc/man/man3/tqdragobject.3qt
index 6cabd708f..3696f4839 100644
--- a/doc/man/man3/tqdragobject.3qt
+++ b/doc/man/man3/tqdragobject.3qt
@@ -11,14 +11,14 @@ QDragObject \- Encapsulates MIME-based data transfer
.SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR
.PP
-Inherits QObject and QMimeSource.
+Inherits TQObject and QMimeSource.
.PP
Inherited by QStoredDrag, QTextDrag, QImageDrag, and QIconDrag.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDragObject\fR ( QWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBQDragObject\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
.BI "virtual \fB~QDragObject\fR ()"
@@ -48,7 +48,7 @@ Inherited by QStoredDrag, QTextDrag, QImageDrag, and QIconDrag.
.BI "QPoint \fBpixmapHotSpot\fR () const"
.br
.ti -1c
-.BI "QWidget * \fBsource\fR ()"
+.BI "TQWidget * \fBsource\fR ()"
.br
.ti -1c
.BI "enum \fBDragMode\fR { DragDefault, DragCopy, DragMove, DragLink, DragCopyOrMove }"
@@ -57,7 +57,7 @@ Inherited by QStoredDrag, QTextDrag, QImageDrag, and QIconDrag.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "QWidget * \fBtarget\fR ()"
+.BI "TQWidget * \fBtarget\fR ()"
.br
.in -1c
.SS "Protected Members"
@@ -92,7 +92,7 @@ This enum describes the possible drag modes.
.TP
\fCQDragObject::DragCopyOrMove\fR - The user chooses the mode by using a control key to switch from the default.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDragObject::QDragObject ( QWidget * dragSource = 0, const char * name = 0 )"
+.SH "QDragObject::QDragObject ( TQWidget * dragSource = 0, const char * name = 0 )"
Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR.
.PP
Note that the drag object will be deleted when \fIdragSource\fR is deleted.
@@ -148,10 +148,10 @@ Example: fileiconview/qfileiconview.cpp.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Uses a hotspot that positions the pixmap below and to the right of the mouse pointer. This allows the user to clearly see the point on the window which they are dragging the data onto.
-.SH "QWidget * QDragObject::source ()"
+.SH "TQWidget * QDragObject::source ()"
Returns a pointer to the drag source where this object originated.
-.SH "QWidget * QDragObject::target ()\fC [static]\fR"
-After the drag completes, this function will return the QWidget which received the drop, or 0 if the data was dropped on another application.
+.SH "TQWidget * QDragObject::target ()\fC [static]\fR"
+After the drag completes, this function will return the TQWidget which received the drop, or 0 if the data was dropped on another application.
.PP
This can be useful for detecting the case where drag and drop is
to and from the same widget.