summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqicondrag.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/man/man3/tqicondrag.3qt
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqicondrag.3qt')
-rw-r--r--doc/man/man3/tqicondrag.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqicondrag.3qt b/doc/man/man3/tqicondrag.3qt
index 203a15b4a..a6e25eb2e 100644
--- a/doc/man/man3/tqicondrag.3qt
+++ b/doc/man/man3/tqicondrag.3qt
@@ -25,7 +25,7 @@ Inherits TQDragObject.
.BI "void \fBappend\fR ( const TQIconDragItem & i, const QRect & pr, const QRect & tr )"
.br
.ti -1c
-.BI "virtual QByteArray \fBencodedData\fR ( const char * mime ) const"
+.BI "virtual TQByteArray \fBencodedData\fR ( const char * mime ) const"
.br
.in -1c
.SS "Static Public Members"
@@ -41,7 +41,7 @@ A TQIconDrag object is used to maintain information about the positions of dragg
.PP
If you want to use the extended drag-and-drop functionality of TQIconView, create a TQIconDrag object in a reimplementation of TQIconView::dragObject(). Then create a TQIconDragItem for each item which should be dragged, set the data it represents with TQIconDragItem::setData(), and add each TQIconDragItem to the drag object using append().
.PP
-The data in TQIconDragItems is stored in a QByteArray and is mime-typed (see TQMimeSource and the Drag and Drop overview). If you want to use your own mime-types derive a class from TQIconDrag and reimplement format(), encodedData() and canDecode().
+The data in TQIconDragItems is stored in a TQByteArray and is mime-typed (see TQMimeSource and the Drag and Drop overview). If you want to use your own mime-types derive a class from TQIconDrag and reimplement format(), encodedData() and canDecode().
.PP
The fileiconview example program demonstrates the use of the TQIconDrag class including subclassing and reimplementing dragObject(), format(), encodedData() and canDecode(). See the files \fCqt/examples/fileiconview/qfileiconview.h\fR and \fCqt/examples/fileiconview/qfileiconview.cpp\fR.
.PP
@@ -63,7 +63,7 @@ Example: fileiconview/qfileiconview.cpp.
Returns TRUE if \fIe\fR can be decoded by the TQIconDrag, otherwise return FALSE.
.PP
Example: fileiconview/qfileiconview.cpp.
-.SH "QByteArray TQIconDrag::encodedData ( const char * mime ) const\fC [virtual]\fR"
+.SH "TQByteArray TQIconDrag::encodedData ( const char * mime ) const\fC [virtual]\fR"
Returns the encoded data of the drag object if \fImime\fR is application/x-qiconlist.
.PP
Example: fileiconview/qfileiconview.cpp.