diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/quridrag.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/quridrag.html')
-rw-r--r-- | doc/html/quridrag.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/quridrag.html b/doc/html/quridrag.html index 33b8b0181..45c406bba 100644 --- a/doc/html/quridrag.html +++ b/doc/html/quridrag.html @@ -80,7 +80,7 @@ You can also decode URIs from a mimesource into a list with <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQUriDrag"></a>TQUriDrag::TQUriDrag ( <a href="ntqstrlist.html">TQStrList</a> uris, <a href="tqwidget.html">TQWidget</a> * dragSource = 0, const char * name = 0 ) +<h3 class=fn><a name="TQUriDrag"></a>TQUriDrag::TQUriDrag ( <a href="tqstrlist.html">TQStrList</a> uris, <a href="tqwidget.html">TQWidget</a> * dragSource = 0, const char * name = 0 ) </h3> Constructs an object to drag the list of URIs in <em>uris</em>. The <em>dragSource</em> and <em>name</em> arguments are passed on to <a href="qstoreddrag.html">TQStoredDrag</a>. Note that URIs are always in escaped UTF8 encoding. @@ -100,7 +100,7 @@ Destroys the object. Returns TRUE if <a href="#decode">decode</a>() would be able to decode <em>e</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="decode"></a>TQUriDrag::decode ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="ntqstrlist.html">TQStrList</a> & l )<tt> [static]</tt> +<h3 class=fn>bool <a name="decode"></a>TQUriDrag::decode ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="tqstrlist.html">TQStrList</a> & l )<tt> [static]</tt> </h3> Decodes URIs from <em>e</em>, placing the result in <em>l</em> (which is first cleared). @@ -108,7 +108,7 @@ cleared). returns FALSE. <p>Example: <a href="dirview-example.html#x1707">dirview/dirview.cpp</a>. -<h3 class=fn>bool <a name="decodeLocalFiles"></a>TQUriDrag::decodeLocalFiles ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="ntqstringlist.html">TQStringList</a> & l )<tt> [static]</tt> +<h3 class=fn>bool <a name="decodeLocalFiles"></a>TQUriDrag::decodeLocalFiles ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="tqstringlist.html">TQStringList</a> & l )<tt> [static]</tt> </h3> Decodes URIs from the mime source event <em>e</em>, converts them to local files if they refer to local files, and places them in <em>l</em> @@ -117,7 +117,7 @@ local files if they refer to local files, and places them in <em>l</em> returns FALSE. The list will be empty if no URIs were local files. <p>Example: <a href="fileiconview-example.html#x873">fileiconview/qfileiconview.cpp</a>. -<h3 class=fn>bool <a name="decodeToUnicodeUris"></a>TQUriDrag::decodeToUnicodeUris ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="ntqstringlist.html">TQStringList</a> & l )<tt> [static]</tt> +<h3 class=fn>bool <a name="decodeToUnicodeUris"></a>TQUriDrag::decodeToUnicodeUris ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="tqstringlist.html">TQStringList</a> & l )<tt> [static]</tt> </h3> Decodes URIs from the mime source event <em>e</em>, converts them to Unicode URIs (only useful for displaying to humans), placing them @@ -125,41 +125,41 @@ in <em>l</em> (which is first cleared). <p> Returns TRUE if <em>contained</em> a valid list of URIs; otherwise returns FALSE. -<h3 class=fn><a href="ntqcstring.html">TQCString</a> <a name="localFileToUri"></a>TQUriDrag::localFileToUri ( const <a href="ntqstring.html">TQString</a> & filename )<tt> [static]</tt> +<h3 class=fn><a href="ntqcstring.html">TQCString</a> <a name="localFileToUri"></a>TQUriDrag::localFileToUri ( const <a href="tqstring.html">TQString</a> & filename )<tt> [static]</tt> </h3> Returns the URI equivalent to the absolute local file <em>filename</em>. <p> <p>See also <a href="#uriToLocalFile">uriToLocalFile</a>(). -<h3 class=fn>void <a name="setFileNames"></a>TQUriDrag::setFileNames ( const <a href="ntqstringlist.html">TQStringList</a> & fnames ) +<h3 class=fn>void <a name="setFileNames"></a>TQUriDrag::setFileNames ( const <a href="tqstringlist.html">TQStringList</a> & fnames ) </h3> Sets the URIs to be the local-file URIs equivalent to <em>fnames</em>. <p> <p>See also <a href="#localFileToUri">localFileToUri</a>() and <a href="#setUris">setUris</a>(). <p>Example: <a href="dirview-example.html#x1708">dirview/dirview.cpp</a>. -<h3 class=fn>void <a name="setFilenames"></a>TQUriDrag::setFilenames ( const <a href="ntqstringlist.html">TQStringList</a> & fnames ) +<h3 class=fn>void <a name="setFilenames"></a>TQUriDrag::setFilenames ( const <a href="tqstringlist.html">TQStringList</a> & fnames ) </h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. <p> Use <a href="#setFileNames">setFileNames</a>() instead (notice the N). -<h3 class=fn>void <a name="setUnicodeUris"></a>TQUriDrag::setUnicodeUris ( const <a href="ntqstringlist.html">TQStringList</a> & uuris ) +<h3 class=fn>void <a name="setUnicodeUris"></a>TQUriDrag::setUnicodeUris ( const <a href="tqstringlist.html">TQStringList</a> & uuris ) </h3> Sets the URIs in <em>uuris</em> to be the Unicode URIs (only useful for displaying to humans). <p> <p>See also <a href="#localFileToUri">localFileToUri</a>() and <a href="#setUris">setUris</a>(). -<h3 class=fn>void <a name="setUris"></a>TQUriDrag::setUris ( <a href="ntqstrlist.html">TQStrList</a> uris )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setUris"></a>TQUriDrag::setUris ( <a href="tqstrlist.html">TQStrList</a> uris )<tt> [virtual]</tt> </h3> Changes the list of <em>uris</em> to be dragged. <p> Note that URIs are always in escaped UTF8 encoding. -<h3 class=fn><a href="ntqcstring.html">TQCString</a> <a name="unicodeUriToUri"></a>TQUriDrag::unicodeUriToUri ( const <a href="ntqstring.html">TQString</a> & uuri )<tt> [static]</tt> +<h3 class=fn><a href="ntqcstring.html">TQCString</a> <a name="unicodeUriToUri"></a>TQUriDrag::unicodeUriToUri ( const <a href="tqstring.html">TQString</a> & uuri )<tt> [static]</tt> </h3> Returns the URI equivalent of the Unicode URI given in <em>uuri</em> (only useful for displaying to humans). <p> <p>See also <a href="#uriToLocalFile">uriToLocalFile</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="uriToLocalFile"></a>TQUriDrag::uriToLocalFile ( const char * uri )<tt> [static]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="uriToLocalFile"></a>TQUriDrag::uriToLocalFile ( const char * uri )<tt> [static]</tt> </h3> Returns the name of a local file equivalent to <em>uri</em> or a null string if <em>uri</em> is not a local file. @@ -167,7 +167,7 @@ string if <em>uri</em> is not a local file. <p> <p>See also <a href="#localFileToUri">localFileToUri</a>(). <p>Example: <a href="dirview-example.html#x1709">dirview/dirview.cpp</a>. -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="uriToUnicodeUri"></a>TQUriDrag::uriToUnicodeUri ( const char * uri )<tt> [static]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="uriToUnicodeUri"></a>TQUriDrag::uriToUnicodeUri ( const char * uri )<tt> [static]</tt> </h3> Returns the Unicode URI (only useful for displaying to humans) equivalent of <em>uri</em>. |