API reference - Class QProcessNotation used in Ruby API documentation Description: Binding of QProcess Class hierarchy: QProcess » QIODevice » QObject Public constructors
Public methods
Public static methods and constants
Detailed description[static] QProcess_ExitStatus CrashExitDescription: Enum constant QProcess::CrashExit [static] QProcess_ProcessError CrashedDescription: Enum constant QProcess::Crashed [static] QProcess_ProcessError FailedToStartDescription: Enum constant QProcess::FailedToStart [static] QProcess_ProcessChannelMode ForwardedChannelsDescription: Enum constant QProcess::ForwardedChannels [static] QProcess_ProcessChannelMode MergedChannelsDescription: Enum constant QProcess::MergedChannels [static] QProcess_ExitStatus NormalExitDescription: Enum constant QProcess::NormalExit [static] QProcess_ProcessState NotRunningDescription: Enum constant QProcess::NotRunning [static] QProcess_ProcessError ReadErrorDescription: Enum constant QProcess::ReadError [static] QProcess_ProcessState RunningDescription: Enum constant QProcess::Running [static] QProcess_ProcessChannelMode SeparateChannelsDescription: Enum constant QProcess::SeparateChannels [static] QProcess_ProcessChannel StandardErrorDescription: Enum constant QProcess::StandardError [static] QProcess_ProcessChannel StandardOutputDescription: Enum constant QProcess::StandardOutput [static] QProcess_ProcessState StartingDescription: Enum constant QProcess::Starting [static] QProcess_ProcessError TimedoutDescription: Enum constant QProcess::Timedout [static] QProcess_ProcessError UnknownErrorDescription: Enum constant QProcess::UnknownError [static] QProcess_ProcessError WriteErrorDescription: Enum constant QProcess::WriteError [const] bool atEndDescription: Method bool QProcess::atEnd() This is a reimplementation of QIODevice::atEnd [const] long long bytesAvailableDescription: Method qint64 QProcess::bytesAvailable() This is a reimplementation of QIODevice::bytesAvailable [const] long long bytesToWriteDescription: Method qint64 QProcess::bytesToWrite() This is a reimplementation of QIODevice::bytesToWrite [const] bool canReadLineDescription: Method bool QProcess::canReadLine() This is a reimplementation of QIODevice::canReadLine void closeDescription: Method void QProcess::close() This is a reimplementation of QIODevice::close void closeReadChannel(const QProcess_ProcessChannel channel)Description: Method void QProcess::closeReadChannel(QProcess::ProcessChannel channel) void closeWriteChannelDescription: Method void QProcess::closeWriteChannel() void createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void destroyDescription: Explicitly destroy the object Explicitly destroy the object on C++ side if it was owned by the Ruby interpreter. Subsequent access to this object will throw an exception. If the object is not owned by Ruby, this method will do nothing. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] string[] environmentDescription: Method QStringList QProcess::environment() void environment=(string[] environment)Description: Method void QProcess::setEnvironment(const QStringList &environment) [const] QProcess_ProcessError errorDescription: Method QProcess::ProcessError QProcess::error() [static] int execute(string program,string[] arguments)Description: Static method int QProcess::execute(const QString &program, const QStringList &arguments) This method is static and can be called without an instance. [static] int execute(string program)Description: Static method int QProcess::execute(const QString &program) This method is static and can be called without an instance. [const] int exitCodeDescription: Method int QProcess::exitCode() [const] QProcess_ExitStatus exitStatusDescription: Method QProcess::ExitStatus QProcess::exitStatus() [const] bool isSequentialDescription: Method bool QProcess::isSequential() This is a reimplementation of QIODevice::isSequential [const] bool isSequential?Description: Method bool QProcess::isSequential() This is a reimplementation of QIODevice::isSequential [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. void killDescription: Method void QProcess::kill() [static] new QProcess new(QObject ptr parent = 0)Description: Constructor QProcess::QProcess(QObject *parent) This method creates an object of class QProcess. [const] long long pidDescription: Method Q_PID QProcess::pid() [const] QProcess_ProcessChannelMode processChannelModeDescription: Method QProcess::ProcessChannelMode QProcess::processChannelMode() void processChannelMode=(const QProcess_ProcessChannelMode mode)Description: Method void QProcess::setProcessChannelMode(QProcess::ProcessChannelMode mode) [const] QProcessEnvironment processEnvironmentDescription: Method QProcessEnvironment QProcess::processEnvironment() void processEnvironment=(const QProcessEnvironment environment)Description: Method void QProcess::setProcessEnvironment(const QProcessEnvironment &environment) string readAllStandardErrorDescription: Method QByteArray QProcess::readAllStandardError() string readAllStandardOutputDescription: Method QByteArray QProcess::readAllStandardOutput() [const] QProcess_ProcessChannel readChannelDescription: Method QProcess::ProcessChannel QProcess::readChannel() void readChannel=(const QProcess_ProcessChannel channel)Description: Method void QProcess::setReadChannel(QProcess::ProcessChannel channel) [const] QProcess_ProcessChannelMode readChannelModeDescription: Method QProcess::ProcessChannelMode QProcess::readChannelMode() void readChannelMode=(const QProcess_ProcessChannelMode mode)Description: Method void QProcess::setReadChannelMode(QProcess::ProcessChannelMode mode) void setEnvironment(string[] environment)Description: Method void QProcess::setEnvironment(const QStringList &environment) void setProcessChannelMode(const QProcess_ProcessChannelMode mode)Description: Method void QProcess::setProcessChannelMode(QProcess::ProcessChannelMode mode) void setProcessEnvironment(const QProcessEnvironment environment)Description: Method void QProcess::setProcessEnvironment(const QProcessEnvironment &environment) void setReadChannel(const QProcess_ProcessChannel channel)Description: Method void QProcess::setReadChannel(QProcess::ProcessChannel channel) void setReadChannelMode(const QProcess_ProcessChannelMode mode)Description: Method void QProcess::setReadChannelMode(QProcess::ProcessChannelMode mode) void setStandardErrorFile(string fileName,const QIODevice_QFlags_OpenModeFlag mode = QIODevice::Truncate)Description: Method void QProcess::setStandardErrorFile(const QString &fileName, QFlags<QIODevice::OpenModeFlag> mode) void setStandardInputFile(string fileName)Description: Method void QProcess::setStandardInputFile(const QString &fileName) void setStandardOutputFile(string fileName,const QIODevice_QFlags_OpenModeFlag mode = QIODevice::Truncate)Description: Method void QProcess::setStandardOutputFile(const QString &fileName, QFlags<QIODevice::OpenModeFlag> mode) void setStandardOutputProcess(QProcess ptr destination)Description: Method void QProcess::setStandardOutputProcess(QProcess *destination) void setWorkingDirectory(string dir)Description: Method void QProcess::setWorkingDirectory(const QString &dir) void start(string program,string[] arguments,const QIODevice_QFlags_OpenModeFlag mode = QIODevice::ReadWrite)Description: Method void QProcess::start(const QString &program, const QStringList &arguments, QFlags<QIODevice::OpenModeFlag> mode) void start(string program,const QIODevice_QFlags_OpenModeFlag mode = QIODevice::ReadWrite)Description: Method void QProcess::start(const QString &program, QFlags<QIODevice::OpenModeFlag> mode) [static] bool startDetached(string program,string[] arguments,string workingDirectory,long long ptr pid = 0)Description: Static method bool QProcess::startDetached(const QString &program, const QStringList &arguments, const QString &workingDirectory, qint64 *pid) This method is static and can be called without an instance. [static] bool startDetached(string program,string[] arguments)Description: Static method bool QProcess::startDetached(const QString &program, const QStringList &arguments) This method is static and can be called without an instance. [static] bool startDetached(string program)Description: Static method bool QProcess::startDetached(const QString &program) This method is static and can be called without an instance. [const] QProcess_ProcessState stateDescription: Method QProcess::ProcessState QProcess::state() [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. [static] string[] systemEnvironmentDescription: Static method QStringList QProcess::systemEnvironment() This method is static and can be called without an instance. void terminateDescription: Method void QProcess::terminate() [static] string tr(string s,string c = 0)Description: Static method QString QProcess::tr(const char *s, const char *c) This method is static and can be called without an instance. [static] string tr(string s,string c,int n)Description: Static method QString QProcess::tr(const char *s, const char *c, int n) This method is static and can be called without an instance. [static] string trUtf8(string s,string c = 0)Description: Static method QString QProcess::trUtf8(const char *s, const char *c) This method is static and can be called without an instance. [static] string trUtf8(string s,string c,int n)Description: Static method QString QProcess::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. bool waitForBytesWritten(int msecs = 30000)Description: Method bool QProcess::waitForBytesWritten(int msecs) This is a reimplementation of QIODevice::waitForBytesWritten bool waitForFinished(int msecs = 30000)Description: Method bool QProcess::waitForFinished(int msecs) bool waitForReadyRead(int msecs = 30000)Description: Method bool QProcess::waitForReadyRead(int msecs) This is a reimplementation of QIODevice::waitForReadyRead bool waitForStarted(int msecs = 30000)Description: Method bool QProcess::waitForStarted(int msecs) [const] string workingDirectoryDescription: Method QString QProcess::workingDirectory() void workingDirectory=(string dir)Description: Method void QProcess::setWorkingDirectory(const QString &dir) |