From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/ntqprocess.html | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'doc/html/ntqprocess.html') 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 parent and name parameters are passed to the TQObject constructor.

See also setArguments(), addArgument(), and start(). -

TQProcess::TQProcess ( const TQString & arg0, TQObject * parent = 0, const char * name = 0 ) +

TQProcess::TQProcess ( const TQString & arg0, TQObject * parent = 0, const char * name = 0 )

Constructs a TQProcess with arg0 as the command to be executed. The parent and name parameters are passed to the TQObject @@ -244,7 +244,7 @@ constructor. start the process.

See also setArguments(), addArgument(), and start(). -

TQProcess::TQProcess ( const TQStringList & args, TQObject * parent = 0, const char * name = 0 ) +

TQProcess::TQProcess ( const TQStringList & args, TQObject * parent = 0, const char * name = 0 )

Constructs a TQProcess with args 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.

See also tryTerminate() and kill(). -

void TQProcess::addArgument ( const TQString & arg ) [virtual] +

void TQProcess::addArgument ( const TQString & arg ) [virtual]

Adds arg to the end of the list of arguments.

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.

See also arguments() and setArguments().

Example: process/process.cpp. -

TQStringList TQProcess::arguments () const +

TQStringList TQProcess::arguments () const

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 setArguments() and

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

-    TQStringList list = myProcess.arguments();
+    TQStringList list = myProcess.arguments();
     TQStringList::Iterator it = list.begin();
     while( it != list.end() ) {
         myProcessing( *it );
@@ -360,7 +360,7 @@ has finished. When the process terminates, the processE
 signal is emitted.
 

See also tryTerminate() and processExited(). -

bool TQProcess::launch ( const TQByteArray & buf, TQStringList * env = 0 ) [virtual] +

bool TQProcess::launch ( const TQByteArray & buf, TQStringList * env = 0 ) [virtual]

Runs the process and writes the data buf 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.

See also start() and launchFinished(). -

bool TQProcess::launch ( const TQString & buf, TQStringList * env = 0 ) [virtual] +

bool TQProcess::launch ( const TQString & buf, TQStringList * env = 0 ) [virtual]

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

The data buf is written to standard input with writeToStdin() -using the TQString::local8Bit() representation of the strings. +using the TQString::local8Bit() representation of the strings.

void TQProcess::launchFinished () [signal]

@@ -438,21 +438,21 @@ process belongs to this object. struct, or 0 if no process is belongs to this object.

Use of this function's return value is likely to be non-portable. -

TQString TQProcess::readLineStderr () [virtual] +

TQString TQProcess::readLineStderr () [virtual]

Reads a line of text from standard error, excluding any trailing newline or carriage return characters and returns it. Returns -TQString::null if canReadLineStderr() returns FALSE. +TQString::null if canReadLineStderr() returns FALSE.

By default, the text is interpreted to be in Latin-1 encoding. If you need other codecs, you can set a different codec with TQTextCodec::setCodecForCStrings().

See also canReadLineStderr(), readyReadStderr(), readStderr(), and readLineStdout(). -

TQString TQProcess::readLineStdout () [virtual] +

TQString TQProcess::readLineStdout () [virtual]

Reads a line of text from standard output, excluding any trailing newline or carriage return characters, and returns it. Returns -TQString::null if canReadLineStdout() returns FALSE. +TQString::null if canReadLineStdout() returns FALSE.

By default, the text is interpreted to be in Latin-1 encoding. If you need other codecs, you can set a different codec with TQTextCodec::setCodecForCStrings(). @@ -500,7 +500,7 @@ at that moment to make sure that you don't lose any data.

See also readStdout(), readLineStdout(), and readyReadStderr().

Example: process/process.cpp. -

void TQProcess::setArguments ( const TQStringList & args ) [virtual] +

void TQProcess::setArguments ( const TQStringList & args ) [virtual]

Sets args 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.

See also workingDirectory() and start(). -

bool TQProcess::start ( TQStringList * env = 0 ) [virtual] +

bool TQProcess::start ( TQStringList * env = 0 ) [virtual]

Tries to run a process for the command and arguments that were specified with setArguments(), addArgument() 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.

See also wroteToStdin(), closeStdin(), readStdout(), and readStderr(). -

void TQProcess::writeToStdin ( const TQString & buf ) [virtual slot] +

void TQProcess::writeToStdin ( const TQString & buf ) [virtual slot]

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

The string buf is handled as text using the -TQString::local8Bit() representation. +TQString::local8Bit() representation.

void TQProcess::wroteToStdin () [signal]

-- cgit v1.2.1