summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqclipboard.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqclipboard.html')
-rw-r--r--doc/html/ntqclipboard.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/ntqclipboard.html b/doc/html/ntqclipboard.html
index f4d4374d3..0b9109da7 100644
--- a/doc/html/ntqclipboard.html
+++ b/doc/html/ntqclipboard.html
@@ -79,7 +79,7 @@ The TQClipboard class provides access to the window system clipboard.
<p> The clipboard offers a simple mechanism to copy and paste data
between applications.
-<p> TQClipboard supports the same data types that <a href="ntqdragobject.html">TQDragObject</a> does, and
+<p> TQClipboard supports the same data types that <a href="tqdragobject.html">TQDragObject</a> does, and
uses similar mechanisms. For advanced clipboard usage
read <a href="dnd.html">the drag-and-drop documentation</a>.
<p> There is a single TQClipboard object in an application, and you can
@@ -102,7 +102,7 @@ access it using <a href="ntqapplication.html#clipboard">TQApplication::clipboard
types: <a href="#setText">setText</a>() allows the exchange of Unicode text and
<a href="#setPixmap">setPixmap</a>() and <a href="#setImage">setImage</a>() allows the exchange of TQPixmaps
and TQImages between applications. The <a href="#setData">setData</a>() function is the
-ultimate in flexibility: it allows you to add any <a href="qmimesource.html">TQMimeSource</a> into the
+ultimate in flexibility: it allows you to add any <a href="tqmimesource.html">TQMimeSource</a> into the
clipboard. There are corresponding getters for each of these, e.g.
<a href="#text">text</a>(), <a href="#image">image</a>() and <a href="#pixmap">pixmap</a>().
<p> You can clear the clipboard by calling <a href="#clear">clear</a>().
@@ -177,9 +177,9 @@ determined by the return value of <a href="#selectionModeEnabled">selectionModeE
If selectionModeEnabled() returns TRUE, the mode argument is
TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard.
-<h3 class=fn><a href="qmimesource.html">TQMimeSource</a>&nbsp;* <a name="data"></a>TQClipboard::data ( <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) const
+<h3 class=fn><a href="tqmimesource.html">TQMimeSource</a>&nbsp;* <a name="data"></a>TQClipboard::data ( <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) const
</h3>
-Returns a reference to a <a href="qmimesource.html">TQMimeSource</a> representation of the current
+Returns a reference to a <a href="tqmimesource.html">TQMimeSource</a> representation of the current
clipboard data.
<p> The <em>mode</em> argument is used to control which part of the system
clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the
@@ -188,7 +188,7 @@ TQClipboard::Selection, the data is retrieved from the global
mouse selection.
<p> <p>See also <a href="#setData">setData</a>().
-<h3 class=fn><a href="qmimesource.html">TQMimeSource</a>&nbsp;* <a name="data-2"></a>TQClipboard::data () const
+<h3 class=fn><a href="tqmimesource.html">TQMimeSource</a>&nbsp;* <a name="data-2"></a>TQClipboard::data () const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> This function uses the <a href="#data">TQClipboard::data</a>() function which takes
@@ -273,7 +273,7 @@ which take a TQClipboard::Mode argument.
<p> Returns the selection mode.
<p> <p>See also <a href="#setSelectionMode">setSelectionMode</a>() and <a href="#supportsSelection">supportsSelection</a>().
-<h3 class=fn>void <a name="setData"></a>TQClipboard::setData ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src, <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode )
+<h3 class=fn>void <a name="setData"></a>TQClipboard::setData ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src, <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode )
</h3>
Sets the clipboard data to <em>src</em>. Ownership of the data is
transferred to the clipboard. If you want to remove the data
@@ -283,17 +283,17 @@ clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the
data is retrieved from the global clipboard. If <em>mode</em> is
TQClipboard::Selection, the data is retrieved from the global
mouse selection.
-<p> The <a href="ntqdragobject.html">TQDragObject</a> subclasses are reasonable objects to put into the
-clipboard (but do not try to call <a href="ntqdragobject.html#drag">TQDragObject::drag</a>() on the same
+<p> The <a href="tqdragobject.html">TQDragObject</a> subclasses are reasonable objects to put into the
+clipboard (but do not try to call <a href="tqdragobject.html#drag">TQDragObject::drag</a>() on the same
object). Any TQDragObject placed in the clipboard should have a
-parent of 0. Do not put <a href="qdragmoveevent.html">TQDragMoveEvent</a> or <a href="qdropevent.html">TQDropEvent</a> subclasses in
+parent of 0. Do not put <a href="tqdragmoveevent.html">TQDragMoveEvent</a> or <a href="tqdropevent.html">TQDropEvent</a> subclasses in
the clipboard, as they do not belong to the event handler which
receives them.
<p> The <a href="#setText">setText</a>(), <a href="#setImage">setImage</a>() and <a href="#setPixmap">setPixmap</a>() functions are simpler
wrappers for setting text, image and pixmap data respectively.
<p> <p>See also <a href="#data">data</a>().
-<h3 class=fn>void <a name="setData-2"></a>TQClipboard::setData ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src )
+<h3 class=fn>void <a name="setData-2"></a>TQClipboard::setData ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> This function uses the <a href="#setData">TQClipboard::setData</a>() function which takes