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/ntqprocess.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/ntqprocess.html')
-rw-r--r-- | doc/html/ntqprocess.html | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/html/ntqprocess.html b/doc/html/ntqprocess.html index df4d6e7b8..a8d076a05 100644 --- a/doc/html/ntqprocess.html +++ b/doc/html/ntqprocess.html @@ -235,7 +235,7 @@ Constructs a TQProcess object. The <em>parent</em> and <em>name</em> parameters are passed to the <a href="tqobject.html">TQObject</a> constructor. <p> <p>See also <a href="#setArguments">setArguments</a>(), <a href="#addArgument">addArgument</a>(), and <a href="#start">start</a>(). -<h3 class=fn><a name="TQProcess-2"></a>TQProcess::TQProcess ( const <a href="ntqstring.html">TQString</a> & arg0, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQProcess-2"></a>TQProcess::TQProcess ( const <a href="tqstring.html">TQString</a> & arg0, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Constructs a TQProcess with <em>arg0</em> as the command to be executed. The <em>parent</em> and <em>name</em> parameters are passed to the <a href="tqobject.html">TQObject</a> @@ -244,7 +244,7 @@ constructor. start the process. <p> <p>See also <a href="#setArguments">setArguments</a>(), <a href="#addArgument">addArgument</a>(), and <a href="#start">start</a>(). -<h3 class=fn><a name="TQProcess-3"></a>TQProcess::TQProcess ( const <a href="ntqstringlist.html">TQStringList</a> & args, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQProcess-3"></a>TQProcess::TQProcess ( const <a href="tqstringlist.html">TQStringList</a> & args, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Constructs a TQProcess with <em>args</em> as the arguments of the process. The first element in the list is the command to be @@ -266,7 +266,7 @@ want the process to be terminated automatically when the instance is destroyed. <p> <p>See also <a href="#tryTerminate">tryTerminate</a>() and <a href="#kill">kill</a>(). -<h3 class=fn>void <a name="addArgument"></a>TQProcess::addArgument ( const <a href="ntqstring.html">TQString</a> & arg )<tt> [virtual]</tt> +<h3 class=fn>void <a name="addArgument"></a>TQProcess::addArgument ( const <a href="tqstring.html">TQString</a> & arg )<tt> [virtual]</tt> </h3> Adds <em>arg</em> to the end of the list of arguments. <p> The first element in the list of arguments is the command to be @@ -274,7 +274,7 @@ executed; the following elements are the command's arguments. <p> <p>See also <a href="#arguments">arguments</a>() and <a href="#setArguments">setArguments</a>(). <p>Example: <a href="ntqprocess.html#x2122">process/process.cpp</a>. -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="arguments"></a>TQProcess::arguments () const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="arguments"></a>TQProcess::arguments () const </h3> Returns the list of arguments that are set for the process. Arguments can be specified with the constructor or with the @@ -282,7 +282,7 @@ functions <a href="#setArguments">setArguments</a>() and <a href="#addArgument"> <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqstringlist.html">TQStringList</a> list = myProcess.arguments(); + <a href="tqstringlist.html">TQStringList</a> list = myProcess.arguments(); TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); @@ -360,7 +360,7 @@ has finished. When the process terminates, the <a href="#processExited">processE signal is emitted. <p> <p>See also <a href="#tryTerminate">tryTerminate</a>() and <a href="#processExited">processExited</a>(). -<h3 class=fn>bool <a name="launch"></a>TQProcess::launch ( const <a href="qbytearray.html">TQByteArray</a> & buf, <a href="ntqstringlist.html">TQStringList</a> * env = 0 )<tt> [virtual]</tt> +<h3 class=fn>bool <a name="launch"></a>TQProcess::launch ( const <a href="qbytearray.html">TQByteArray</a> & buf, <a href="tqstringlist.html">TQStringList</a> * env = 0 )<tt> [virtual]</tt> </h3> Runs the process and writes the data <em>buf</em> to the process's standard input. If all the data is written to standard input, @@ -396,11 +396,11 @@ emitted after all the data has been written to standard input. If the start failed, then this signal is emitted immediately. <p> <p>See also <a href="#start">start</a>() and <a href="#launchFinished">launchFinished</a>(). -<h3 class=fn>bool <a name="launch-2"></a>TQProcess::launch ( const <a href="ntqstring.html">TQString</a> & buf, <a href="ntqstringlist.html">TQStringList</a> * env = 0 )<tt> [virtual]</tt> +<h3 class=fn>bool <a name="launch-2"></a>TQProcess::launch ( const <a href="tqstring.html">TQString</a> & buf, <a href="tqstringlist.html">TQStringList</a> * env = 0 )<tt> [virtual]</tt> </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> The data <em>buf</em> is written to standard input with <a href="#writeToStdin">writeToStdin</a>() -using the <a href="ntqstring.html#local8Bit">TQString::local8Bit</a>() representation of the strings. +using the <a href="tqstring.html#local8Bit">TQString::local8Bit</a>() representation of the strings. <h3 class=fn>void <a name="launchFinished"></a>TQProcess::launchFinished ()<tt> [signal]</tt> </h3> @@ -438,21 +438,21 @@ process belongs to this object. struct, or 0 if no process is belongs to this object. <p> Use of this function's return value is likely to be non-portable. -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="readLineStderr"></a>TQProcess::readLineStderr ()<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="readLineStderr"></a>TQProcess::readLineStderr ()<tt> [virtual]</tt> </h3> Reads a line of text from standard error, excluding any trailing newline or carriage return characters and returns it. Returns -<a href="ntqstring.html#TQString-null">TQString::null</a> if <a href="#canReadLineStderr">canReadLineStderr</a>() returns FALSE. +<a href="tqstring.html#TQString-null">TQString::null</a> if <a href="#canReadLineStderr">canReadLineStderr</a>() returns FALSE. <p> By default, the text is interpreted to be in Latin-1 encoding. If you need other codecs, you can set a different codec with <a href="ntqtextcodec.html#setCodecForCStrings">TQTextCodec::setCodecForCStrings</a>(). <p> <p>See also <a href="#canReadLineStderr">canReadLineStderr</a>(), <a href="#readyReadStderr">readyReadStderr</a>(), <a href="#readStderr">readStderr</a>(), and <a href="#readLineStdout">readLineStdout</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="readLineStdout"></a>TQProcess::readLineStdout ()<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="readLineStdout"></a>TQProcess::readLineStdout ()<tt> [virtual]</tt> </h3> Reads a line of text from standard output, excluding any trailing newline or carriage return characters, and returns it. Returns -<a href="ntqstring.html#TQString-null">TQString::null</a> if <a href="#canReadLineStdout">canReadLineStdout</a>() returns FALSE. +<a href="tqstring.html#TQString-null">TQString::null</a> if <a href="#canReadLineStdout">canReadLineStdout</a>() returns FALSE. <p> By default, the text is interpreted to be in Latin-1 encoding. If you need other codecs, you can set a different codec with <a href="ntqtextcodec.html#setCodecForCStrings">TQTextCodec::setCodecForCStrings</a>(). @@ -500,7 +500,7 @@ at that moment to make sure that you don't lose any data. <p> <p>See also <a href="#readStdout">readStdout</a>(), <a href="#readLineStdout">readLineStdout</a>(), and <a href="#readyReadStderr">readyReadStderr</a>(). <p>Example: <a href="ntqprocess.html#x2123">process/process.cpp</a>. -<h3 class=fn>void <a name="setArguments"></a>TQProcess::setArguments ( const <a href="ntqstringlist.html">TQStringList</a> & args )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setArguments"></a>TQProcess::setArguments ( const <a href="tqstringlist.html">TQStringList</a> & args )<tt> [virtual]</tt> </h3> Sets <em>args</em> as the arguments for the process. The first element in the list is the command to be executed. The other elements in @@ -538,7 +538,7 @@ afterwards are affected. that try to access files with relative paths. <p> <p>See also <a href="#workingDirectory">workingDirectory</a>() and <a href="#start">start</a>(). -<h3 class=fn>bool <a name="start"></a>TQProcess::start ( <a href="ntqstringlist.html">TQStringList</a> * env = 0 )<tt> [virtual]</tt> +<h3 class=fn>bool <a name="start"></a>TQProcess::start ( <a href="tqstringlist.html">TQStringList</a> * env = 0 )<tt> [virtual]</tt> </h3> Tries to run a process for the command and arguments that were specified with <a href="#setArguments">setArguments</a>(), <a href="#addArgument">addArgument</a>() or that were @@ -603,11 +603,11 @@ the data. As a result, wroteToStdin() may be emitted before the running process has actually read all the data. <p> <p>See also <a href="#wroteToStdin">wroteToStdin</a>(), <a href="#closeStdin">closeStdin</a>(), <a href="#readStdout">readStdout</a>(), and <a href="#readStderr">readStderr</a>(). -<h3 class=fn>void <a name="writeToStdin-2"></a>TQProcess::writeToStdin ( const <a href="ntqstring.html">TQString</a> & buf )<tt> [virtual slot]</tt> +<h3 class=fn>void <a name="writeToStdin-2"></a>TQProcess::writeToStdin ( const <a href="tqstring.html">TQString</a> & buf )<tt> [virtual slot]</tt> </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> The string <em>buf</em> is handled as text using the -<a href="ntqstring.html#local8Bit">TQString::local8Bit</a>() representation. +<a href="tqstring.html#local8Bit">TQString::local8Bit</a>() representation. <h3 class=fn>void <a name="wroteToStdin"></a>TQProcess::wroteToStdin ()<tt> [signal]</tt> </h3> |