summaryrefslogtreecommitdiffstats
path: root/doc/html/qdragmoveevent.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-07 13:06:00 +0900
committerMichele Calgaro <[email protected]>2024-07-07 13:06:00 +0900
commit628b0bb74c3fc327efff8add9c73ada04b1cbea2 (patch)
tree16062922d35b5e0153b9f866e440f36603bd4f55 /doc/html/qdragmoveevent.html
parent7552c6d73043b1040139033f6864db48ae5446cf (diff)
downloadtqt3-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/html/qdragmoveevent.html')
-rw-r--r--doc/html/qdragmoveevent.html105
1 files changed, 0 insertions, 105 deletions
diff --git a/doc/html/qdragmoveevent.html b/doc/html/qdragmoveevent.html
deleted file mode 100644
index 8d6dcbd5c..000000000
--- a/doc/html/qdragmoveevent.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<!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&nbsp;Classes</font></a>
- | <a href="mainclasses.html">
-<font color="#004faf">Main&nbsp;Classes</font></a>
- | <a href="annotated.html">
-<font color="#004faf">Annotated</font></a>
- | <a href="groups.html">
-<font color="#004faf">Grouped&nbsp;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 &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt>
-<p>Inherits <a href="qdropevent.html">TQDropEvent</a>.
-<p>Inherited by <a href="qdragenterevent.html">TQDragEnterEvent</a>.
-<p><a href="qdragmoveevent-members.html">List of all member functions.</a>
-<h2>Public Members</h2>
-<ul>
-<li class=fn><a href="#TQDragMoveEvent"><b>TQDragMoveEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos, Type&nbsp;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&nbsp;TQRect&nbsp;&amp;&nbsp;r )</li>
-<li class=fn>void <a href="#ignore"><b>ignore</b></a> ( const&nbsp;TQRect&nbsp;&amp;&nbsp;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="qdropevent.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="qdropevent.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&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos, <a href="ntqevent.html#Type-enum">Type</a>&nbsp;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&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;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&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;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 &copy; 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 &copy; 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>