私はあなたが期待したことをする非常にミニマルなプログラムを書きました。以下はコードです:
mainwindow.hpp
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
#include <QtGui>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
private slots:
void onReadyRead();
void onPushButtonClicked();
private:
QPushButton* pushButton;
QProcess *shell;
};
#endif // MAINWINDOW_HPP
main.cpp
#include <QtCore>
#include <QtGui>
#include <QDebug>
#include "mainwindow.hpp"
MainWindow::MainWindow(QWidget* parent)
: QMainWindow(parent)
{
pushButton = new QPushButton("Execute");
connect(pushButton, SIGNAL(clicked()),
this, SLOT(onPushButtonClicked()));
setCentralWidget(pushButton);
}
void MainWindow::onPushButtonClicked()
{
shell = new QProcess(this);
connect(shell, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
shell->start("python");
if (!shell->waitForStarted())
exit(1);
shell->write("print 'hello!'\n");
shell->closeWriteChannel();
if (!shell->waitForFinished())
exit(1);
qDebug() << "Shell error code:" << shell->error();
}
void MainWindow::onReadyRead()
{
QString text = shell->readAll();
qDebug() << text;
}
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
MainWindow win;
win.show();
return app.exec();
}
実装上の注意:
- を追加して同期APIを使用しました
QProces::waitFor...()
。
- で通信チャネルを閉じました
QProcess::closeWriteChannel()
。
- いくつかのデバッグ出力を追加しました。特にのエラーコード
QProcess
は非常に役立ちます。
hello!
これらのものは一緒に押しボタンが押されたときにやる気を起こさせることを示しています。