我已经在我的代码中实现了这个答案,我希望它能做我想做的事。但是,我正在通过 a 上的连接运行一个方法QPushButton
,并且我想将此方法中发生的事情通过管道传输到 GUI。
我第一次单击按钮时,会stdout
出现在解释器窗口中;但是,在随后按下按钮时,stdout
出现在- 我认为 print 语句或我不明白QTextEdit
的一些复杂性- 如果有人可以给出我需要开始更改代码的任何指针我'QPushButton
将永远感激不尽!
我认为这是我可以用来演示问题的最少代码量..
import os, sys
from PyQt4 import QtCore, QtGui
def main():
app = QtGui.QApplication(sys.argv)
w = MyWindow()
w.show()
sys.exit(app.exec_())
class MyWindow(QtGui.QWidget):
def __init__(self, *args):
QtGui.QWidget.__init__(self, *args)
self.runBtn = QtGui.QPushButton('Run!', self)
self.runBtn.clicked.connect(self.runCmd)
self.te = QtGui.QTextEdit()
layout = QtGui.QVBoxLayout(self)
layout.addWidget(self.runBtn)
layout.addWidget(self.te)
self.setLayout(layout)
def runCmd(self):
print "here"
print sys.stdout
sys.stdout = EmittingStream(textWritten=self.normalOutputWritten)
def __del__(self):
sys.stdout = sys.__stdout__
def normalOutputWritten(self, text):
cursor = self.te.textCursor()
cursor.movePosition(QtGui.QTextCursor.End)
cursor.insertText(text)
self.te.setTextCursor(cursor)
self.te.ensureCursorVisible()
class EmittingStream(QtCore.QObject):
textWritten = QtCore.pyqtSignal(str)
def write(self, text):
self.textWritten.emit(str(text))
if __name__ == "__main__":
main()