summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdragobject.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/tqdragobject.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/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 aefc06e08..4dc6db558 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.