You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
672 B
C
28 lines
672 B
C
3 years ago
|
#include <QProcess>
|
||
|
#include <QVariant>
|
||
|
|
||
|
class Process : public QProcess {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Process(QObject *parent = 0) : QProcess(parent) { }
|
||
|
|
||
|
Q_INVOKABLE void start(const QString &program, const QVariantList &arguments) {
|
||
|
QStringList args;
|
||
|
|
||
|
// convert QVariantList from QML to QStringList for QProcess
|
||
|
|
||
|
for (int i = 0; i < arguments.length(); i++)
|
||
|
args << arguments[i].toString();
|
||
|
|
||
|
QProcess::start(program, args);
|
||
|
}
|
||
|
|
||
|
Q_INVOKABLE QByteArray readAll() {
|
||
|
return QProcess::readAll();
|
||
|
}
|
||
|
Q_INVOKABLE QByteArray readAllStandardError() {
|
||
|
return QProcess::readAllStandardError();
|
||
|
}
|
||
|
};
|