summaryrefslogtreecommitdiffstats
path: root/doc/html/dnd.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/dnd.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt-397b7afa.tar.gz
tqt-397b7afa.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/dnd.html')
-rw-r--r--doc/html/dnd.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/dnd.html b/doc/html/dnd.html
index 48e511348..b5bc53181 100644
--- a/doc/html/dnd.html
+++ b/doc/html/dnd.html
@@ -141,14 +141,14 @@ information on the clipboard:
<pre>
void MyWidget::copy()
{
- TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()-&gt;setData(
+ TQApplication::<a href="tqapplication.html#clipboard">clipboard</a>()-&gt;setData(
new <a href="tqtextdrag.html">TQTextDrag</a>(myHighlightedText()) );
}
void MyWidget::paste()
{
<a href="tqstring.html">TQString</a> text;
- if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>(TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()-&gt;data(), text) )
+ if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>(TQApplication::<a href="tqapplication.html#clipboard">clipboard</a>()-&gt;data(), text) )
insertText( text );
}
</pre>
@@ -318,12 +318,12 @@ void MyWidget::dragMoveEvent(TQDragMoveEvent* event)
feedback as the drag progresses, to start timers, to scroll the
window, or whatever is appropriate (don't forget to stop the scrolling
and timers in a dragLeaveEvent() though).
-<p> The <a href="ntqapplication.html">TQApplication</a> object (available as the <tt>tqApp</tt> global) also
+<p> The <a href="tqapplication.html">TQApplication</a> object (available as the <tt>tqApp</tt> global) also
provides some drag and drop related functions:
-<a href="ntqapplication.html#setStartDragTime">TQApplication::setStartDragTime</a>(),
-<a href="ntqapplication.html#setStartDragDistance">TQApplication::setStartDragDistance</a>(), and their corresponding
-getters, <a href="ntqapplication.html#startDragTime">TQApplication::startDragTime</a>() and
-<a href="ntqapplication.html#startDragDistance">TQApplication::startDragDistance</a>().
+<a href="tqapplication.html#setStartDragTime">TQApplication::setStartDragTime</a>(),
+<a href="tqapplication.html#setStartDragDistance">TQApplication::setStartDragDistance</a>(), and their corresponding
+getters, <a href="tqapplication.html#startDragTime">TQApplication::startDragTime</a>() and
+<a href="tqapplication.html#startDragDistance">TQApplication::startDragDistance</a>().
<p> <h2> Inter-operating with Other Applications
</h2>
<a name="7"></a><p> On X11, the public <a class="r"