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

Public Member Functions

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

Member Function Documentation

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

This signal is emitted when an error occurs with the process. The specified error describes the type of error that occurred.

void QtCore.IQProcessSignals.Finished ( int  exitCode)

This is an overloaded function.

Use finished(int exitCode, QProcess::ExitStatus status) instead.

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

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