summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdragobject.3qt
diff options
context:
space:
mode:
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 aefc06e0..4dc6db55 100644
--- a/doc/man/man3/tqdragobject.3qt
+++ b/doc/man/man3/tqdragobject.3qt
@@ -36,16 +36,16 @@ Inherited by TQStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag.
.BI "void \fBdragLink\fR ()"
.br
.ti -1c
-.BI "virtual void \fBsetPixmap\fR ( QPixmap pm )"
+.BI "virtual void \fBsetPixmap\fR ( TQPixmap pm )"
.br
.ti -1c
-.BI "virtual void \fBsetPixmap\fR ( QPixmap pm, const QPoint & hotspot )"
+.BI "virtual void \fBsetPixmap\fR ( TQPixmap pm, const TQPoint & hotspot )"
.br
.ti -1c
-.BI "QPixmap \fBpixmap\fR () const"
+.BI "TQPixmap \fBpixmap\fR () const"
.br
.ti -1c
-.BI "QPoint \fBpixmapHotSpot\fR () const"
+.BI "TQPoint \fBpixmapHotSpot\fR () const"
.br
.ti -1c
.BI "TQWidget * \fBsource\fR ()"
@@ -132,11 +132,11 @@ See also drag(), dragCopy(), and dragMove().
Starts a drag operation using the contents of this object, using DragMove mode. Be sure to read the constraints described in drag().
.PP
See also drag(), dragCopy(), and dragLink().
-.SH "QPixmap TQDragObject::pixmap () const"
+.SH "TQPixmap TQDragObject::pixmap () const"
Returns the currently set pixmap (which isNull() if none is set).
-.SH "QPoint TQDragObject::pixmapHotSpot () const"
+.SH "TQPoint TQDragObject::pixmapHotSpot () const"
Returns the currently set pixmap hotspot.
-.SH "void TQDragObject::setPixmap ( QPixmap pm, const QPoint & hotspot )\fC [virtual]\fR"
+.SH "void TQDragObject::setPixmap ( TQPixmap pm, const TQPoint & hotspot )\fC [virtual]\fR"
Set the pixmap \fIpm\fR to display while dragging the object. The platform-specific implementation will use this where it can - so provide a small masked pixmap, and do not assume that the user will actually see it. For example, cursors on Windows 95 are of limited size.
.PP
The \fIhotspot\fR is the point on (or off) the pixmap that should be under the cursor as it is dragged. It is relative to the top-left pixel of the pixmap.
@@ -144,7 +144,7 @@ The \fIhotspot\fR is the point on (or off) the pixmap that should be under the c
\fBWarning:\fR We have seen problems with drag cursors on different graphics hardware and driver software on Windows. Setting the graphics acceleration in the display settings down one tick solved the problems in all cases.
.PP
Example: fileiconview/tqfileiconview.cpp.
-.SH "void TQDragObject::setPixmap ( QPixmap pm )\fC [virtual]\fR"
+.SH "void TQDragObject::setPixmap ( TQPixmap pm )\fC [virtual]\fR"
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.