diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qdropevent.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qdropevent.html')
-rw-r--r-- | doc/html/qdropevent.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/qdropevent.html b/doc/html/qdropevent.html index 889e9a44d..83e69b4d7 100644 --- a/doc/html/qdropevent.html +++ b/doc/html/qdropevent.html @@ -33,8 +33,8 @@ body { background: #ffffff; color: black; } <p>The TQDropEvent class provides an event which is sent when a drag and drop is completed. <a href="#details">More...</a> -<p><tt>#include <<a href="qevent-h.html">qevent.h</a>></tt> -<p>Inherits <a href="qevent.html">TQEvent</a> and <a href="qmimesource.html">TQMimeSource</a>. +<p><tt>#include <<a href="qevent-h.html">ntqevent.h</a>></tt> +<p>Inherits <a href="ntqevent.html">TQEvent</a> and <a href="qmimesource.html">TQMimeSource</a>. <p>Inherited by <a href="qdragmoveevent.html">TQDragMoveEvent</a>. <p><a href="qdropevent-members.html">List of all member functions.</a> <h2>Public Members</h2> @@ -62,7 +62,7 @@ body { background: #ffffff; color: black; } <p> The TQDropEvent class provides an event which is sent when a drag and drop is completed. -<p> When a widget <a href="qwidget.html#setAcceptDrops">accepts drop +<p> When a widget <a href="ntqwidget.html#setAcceptDrops">accepts drop events</a>, it will receive this event if it has accepted the most recent <a href="qdragenterevent.html">TQDragEnterEvent</a> or <a href="qdragmoveevent.html">TQDragMoveEvent</a> sent to it. <p> The widget should use <a href="#data">data</a>() to extract the data in an appropriate @@ -91,7 +91,7 @@ supported. reference, for example, text/uri-list file lists (see <a href="quridrag.html">TQUriDrag</a>). <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQDropEvent"></a>TQDropEvent::TQDropEvent ( const <a href="qpoint.html">TQPoint</a> & pos, <a href="qevent.html#Type-enum">Type</a> typ = Drop ) +<h3 class=fn><a name="TQDropEvent"></a>TQDropEvent::TQDropEvent ( const <a href="ntqpoint.html">TQPoint</a> & pos, <a href="ntqevent.html#Type-enum">Type</a> typ = Drop ) </h3> <p> Constructs a drop event that drops a drop of type <em>typ</em> on point @@ -104,7 +104,7 @@ reference, for example, text/uri-list file lists (see <a href="quridrag.html">TQ which your widget processed. Set <em>y</em> to TRUE (the default) if your widget could process the data, otherwise set <em>y</em> to FALSE. To get the data, use <a href="#encodedData">encodedData</a>(), or preferably, the decode() -methods of existing <a href="qdragobject.html">TQDragObject</a> subclasses, such as +methods of existing <a href="ntqdragobject.html">TQDragObject</a> subclasses, such as <a href="qtextdrag.html#decode">TQTextDrag::decode</a>(), or your own subclasses. <p> <p>See also <a href="#acceptAction">acceptAction</a>(). @@ -142,7 +142,7 @@ is potentially very slow, so it's advisable to call this function only if you're sure that you will need the data in <em>format</em>. <p> The resulting data will have a size of 0 if the format was not available. -<p> <p>See also <a href="#format">format</a>() and <a href="qmemarray.html#size">TQByteArray::size</a>(). +<p> <p>See also <a href="#format">format</a>() and <a href="ntqmemarray.html#size">TQByteArray::size</a>(). <p>Reimplemented from <a href="qmimesource.html#encodedData">TQMimeSource</a>. <h3 class=fn>const char * <a name="format"></a>TQDropEvent::format ( int n = 0 ) const<tt> [virtual]</tt> @@ -174,7 +174,7 @@ returns FALSE. <p> Returns TRUE if the drop action was accepted by the drop site; otherwise returns FALSE. -<h3 class=fn>const <a href="qpoint.html">TQPoint</a> & <a name="pos"></a>TQDropEvent::pos () const +<h3 class=fn>const <a href="ntqpoint.html">TQPoint</a> & <a name="pos"></a>TQDropEvent::pos () const </h3> <p> Returns the position where the drop was made. @@ -195,14 +195,14 @@ returns FALSE. need to call this in your code: the <em>source</em> decides the action, not the target. -<h3 class=fn>void <a name="setPoint"></a>TQDropEvent::setPoint ( const <a href="qpoint.html">TQPoint</a> & np ) +<h3 class=fn>void <a name="setPoint"></a>TQDropEvent::setPoint ( const <a href="ntqpoint.html">TQPoint</a> & np ) </h3> <p> Sets the drop to happen at point <em>np</em>. You do not normally need to use this as it will be set internally before your widget receives the drop event. -<h3 class=fn><a href="qwidget.html">TQWidget</a> * <a name="source"></a>TQDropEvent::source () const +<h3 class=fn><a href="ntqwidget.html">TQWidget</a> * <a name="source"></a>TQDropEvent::source () const </h3> If the source of the drag operation is a widget in this application, this function returns that source, otherwise it @@ -210,7 +210,7 @@ returns 0. The source of the operation is the first parameter to drag object subclasses. <p> This is useful if your widget needs special behavior when dragging to itself, etc. -<p> See <a href="qdragobject.html#TQDragObject">TQDragObject::TQDragObject</a>() and subclasses. +<p> See <a href="ntqdragobject.html#TQDragObject">TQDragObject::TQDragObject</a>() and subclasses. <!-- eof --> <hr><p> |