diff options
author | Michele Calgaro <[email protected]> | 2024-07-07 13:06:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-07-07 13:06:00 +0900 |
commit | 628b0bb74c3fc327efff8add9c73ada04b1cbea2 (patch) | |
tree | 16062922d35b5e0153b9f866e440f36603bd4f55 /doc/man/man3/tqiconviewitem.3qt | |
parent | 7552c6d73043b1040139033f6864db48ae5446cf (diff) | |
download | tqt3-628b0bb74c3fc327efff8add9c73ada04b1cbea2.tar.gz tqt3-628b0bb74c3fc327efff8add9c73ada04b1cbea2.zip |
Rename drag-n-drop nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqiconviewitem.3qt')
-rw-r--r-- | doc/man/man3/tqiconviewitem.3qt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqiconviewitem.3qt b/doc/man/man3/tqiconviewitem.3qt index e0d995e36..2206b962b 100644 --- a/doc/man/man3/tqiconviewitem.3qt +++ b/doc/man/man3/tqiconviewitem.3qt @@ -148,7 +148,7 @@ Inherits Qt. .BI "bool \fBintersects\fR ( const QRect & r ) const" .br .ti -1c -.BI "virtual bool \fBacceptDrop\fR ( const QMimeSource * mime ) const" +.BI "virtual bool \fBacceptDrop\fR ( const TQMimeSource * mime ) const" .br .ti -1c .BI "void \fBrename\fR ()" @@ -193,7 +193,7 @@ Inherits Qt. .BI "virtual void \fBpaintFocus\fR ( QPainter * p, const QColorGroup & cg )" .br .ti -1c -.BI "virtual void \fBdropped\fR ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )" +.BI "virtual void \fBdropped\fR ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )" .br .ti -1c .BI "virtual void \fBdragEntered\fR ()" @@ -282,8 +282,8 @@ Constructs an icon view item and inserts it into the icon view \fIparent\fR usin Constructs an icon view item and inserts it into the icon view \fIparent\fR using \fItext\fR as the text and \fIpicture\fR as the icon, after the icon view item \fIafter\fR. .SH "TQIconViewItem::~TQIconViewItem ()\fC [virtual]\fR" Destroys the icon view item and tells the parent icon view that the item has been destroyed. -.SH "bool TQIconViewItem::acceptDrop ( const QMimeSource * mime ) const\fC [virtual]\fR" -Returns TRUE if you can drop things with a QMimeSource of \fImime\fR onto this item; otherwise returns FALSE. +.SH "bool TQIconViewItem::acceptDrop ( const TQMimeSource * mime ) const\fC [virtual]\fR" +Returns TRUE if you can drop things with a TQMimeSource of \fImime\fR onto this item; otherwise returns FALSE. .PP The default implementation always returns FALSE. You must subclass TQIconViewItem and reimplement acceptDrop() to accept drops. .PP @@ -333,7 +333,7 @@ Example: fileiconview/qfileiconview.cpp. Returns TRUE if the user is allowed to drop something onto the item; otherwise returns FALSE. .PP See also setDropEnabled(). -.SH "void TQIconViewItem::dropped ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [virtual protected]\fR" +.SH "void TQIconViewItem::dropped ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [virtual protected]\fR" This function is called when something is dropped on the item. \fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data by calling TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you must decode the data in \fIe\fR and work with that. .PP The default implementation does nothing; subclasses may reimplement this function. |