Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtCore.IQProcessSignals Interface Reference
Inheritance diagram for QtCore.IQProcessSignals:
Collaboration diagram for QtCore.IQProcessSignals:

Public Member Functions

void Started ()
 
 
void Finished (int exitCode)
 
 
void Finished (int exitCode, QProcess.ExitStatus exitStatus)
 
void Error (QProcess.ProcessError error)
 
 
void StateChanged (QProcess.ProcessState state)
 
 
void ReadyReadStandardOutput ()
 
 
void ReadyReadStandardError ()
 
 
- Public Member Functions inherited from QtCore.IQIODeviceSignals
void ReadyRead ()
 
 
void BytesWritten (long bytes)
 
 
void AboutToClose ()
 
 
void ReadChannelFinished ()
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtCore.IQProcessSignals.Error ( QProcess.ProcessError  error)

Returns the type of error that occurred last.

See also state().

void QtCore.IQProcessSignals.Finished ( int  exitCode)

This signal is emitted when the process finishes. exitCode is the exit code of the process, and exitStatus is the exit status. After the process has finished, the buffers in QProcess are still intact. You can still read any data that the process may have written before it finished.

See also exitStatus().

void QtCore.IQProcessSignals.Finished ( int  exitCode,
QProcess.ExitStatus  exitStatus 
)
void QtCore.IQProcessSignals.ReadyReadStandardError ( )

This signal is emitted when the process has made new data available through its standard error channel (stderr). It is emitted regardless of the current read channel.

See also readAllStandardError() and readChannel().

void QtCore.IQProcessSignals.ReadyReadStandardOutput ( )

This signal is emitted when the process has made new data available through its standard output channel (stdout). It is emitted regardless of the current read channel.

See also readAllStandardOutput() and readChannel().

void QtCore.IQProcessSignals.Started ( )

This signal is emitted by QProcess when the process has started, and state() returns Running.

void QtCore.IQProcessSignals.StateChanged ( QProcess.ProcessState  state)

This signal is emitted whenever the state of QProcess changes. The newState argument is the state QProcess changed to.