diff options
Diffstat (limited to 'doc/html/tqdragmoveevent.html')
-rw-r--r-- | doc/html/tqdragmoveevent.html | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/doc/html/tqdragmoveevent.html b/doc/html/tqdragmoveevent.html new file mode 100644 index 000000000..f435e197b --- /dev/null +++ b/doc/html/tqdragmoveevent.html @@ -0,0 +1,105 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdnd_x11.cpp:1391 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>TQDragMoveEvent Class</title> +<style type="text/css"><!-- +fn { margin-left: 1cm; text-indent: -1cm; } +a:link { color: #004faf; text-decoration: none } +a:visited { color: #672967; text-decoration: none } +body { background: #ffffff; color: black; } +--></style> +</head> +<body> + +<table border="0" cellpadding="0" cellspacing="0" width="100%"> +<tr bgcolor="#E5E5E5"> +<td valign=center> + <a href="index.html"> +<font color="#004faf">Home</font></a> + | <a href="classes.html"> +<font color="#004faf">All Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped Classes</font></a> + | <a href="functions.html"> +<font color="#004faf">Functions</font></a> +</td> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>TQDragMoveEvent Class Reference</h1> + +<p>The TQDragMoveEvent class provides an event which is sent while a drag and drop is in progress. +<a href="#details">More...</a> +<p><tt>#include <<a href="qevent-h.html">ntqevent.h</a>></tt> +<p>Inherits <a href="tqdropevent.html">TQDropEvent</a>. +<p>Inherited by <a href="tqdragenterevent.html">TQDragEnterEvent</a>. +<p><a href="tqdragmoveevent-members.html">List of all member functions.</a> +<h2>Public Members</h2> +<ul> +<li class=fn><a href="#TQDragMoveEvent"><b>TQDragMoveEvent</b></a> ( const TQPoint & pos, Type type = DragMove )</li> +<li class=fn>TQRect <a href="#answerRect"><b>answerRect</b></a> () const</li> +<li class=fn>void <a href="#accept"><b>accept</b></a> ( const TQRect & r )</li> +<li class=fn>void <a href="#ignore"><b>ignore</b></a> ( const TQRect & r )</li> +</ul> +<hr><a name="details"></a><h2>Detailed Description</h2> + + + + +The TQDragMoveEvent class provides an event which is sent while a drag and drop is in progress. +<p> When a widget <a href="tqwidget.html#setAcceptDrops">accepts drop + events</a>, it will receive this event repeatedly while the +drag is within the widget's boundaries. The widget should examine +the event to see what data it <a href="tqdropevent.html#provides">provides</a>, and <a href="#accept">accept</a>() the drop if appropriate. +<p> Note that this class inherits most of its functionality from +<a href="tqdropevent.html">TQDropEvent</a>. +<p>See also <a href="draganddrop.html">Drag And Drop Classes</a> and <a href="events.html">Event Classes</a>. + +<hr><h2>Member Function Documentation</h2> +<h3 class=fn><a name="TQDragMoveEvent"></a>TQDragMoveEvent::TQDragMoveEvent ( const <a href="ntqpoint.html">TQPoint</a> & pos, <a href="ntqevent.html#Type-enum">Type</a> type = DragMove ) +</h3> + +<p> Creates a TQDragMoveEvent for which the mouse is at point <em>pos</em>, +and the event is of type <em>type</em>. +<p> <b>Warning:</b> Do not create a TQDragMoveEvent yourself since these +objects rely on TQt's internal state. + +<h3 class=fn>void <a name="accept"></a>TQDragMoveEvent::accept ( const <a href="ntqrect.html">TQRect</a> & r ) +</h3> + +<p> The same as <a href="#accept">accept</a>(), but also notifies that future moves will +also be acceptable if they remain within the rectangle <em>r</em> on the +widget: this can improve performance, but may also be ignored by +the underlying system. +<p> If the rectangle is <a href="ntqrect.html#isEmpty">empty</a>, then +drag move events will be sent continuously. This is useful if the +source is scrolling in a timer event. + +<p>Examples: <a href="desktop-example.html#x1727">desktop/desktop.cpp</a> and <a href="dirview-example.html#x1668">dirview/dirview.cpp</a>. +<h3 class=fn><a href="ntqrect.html">TQRect</a> <a name="answerRect"></a>TQDragMoveEvent::answerRect () const +</h3> + +<p> Returns the rectangle for which the acceptance of the move event +applies. + +<h3 class=fn>void <a name="ignore"></a>TQDragMoveEvent::ignore ( const <a href="ntqrect.html">TQRect</a> & r ) +</h3> + +<p> The opposite of <a href="#accept">accept</a>(const <a href="ntqrect.html">TQRect</a>&), i.e. says that moves within +rectangle <em>r</em> are not acceptable (will be ignored). + +<p>Example: <a href="dirview-example.html#x1669">dirview/dirview.cpp</a>. +<!-- eof --> +<hr><p> +This file is part of the <a href="index.html">TQt toolkit</a>. +Copyright © 1995-2007 +<a href="http://www.trolltech.com/">Trolltech</a>. All Rights Reserved.<p><address><hr><div align=center> +<table width=100% cellspacing=0 border=0><tr> +<td>Copyright © 2007 +<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> +<td align=right><div align=right>TQt 3.3.8</div> +</table></div></address></body> +</html> |