你好我的PyQT QTextEdit遇到了一个相当奇怪的问题。当我从我的QLineEdit输入一个字符串时,它会添加它但是说我输入另一个字符串消失了我假设那是因为我没有附加文本。知道我怎么能这样做吗?
这是相关代码
self.mytext.setText(str(self.user) + ": " + str(self.line.text()) + "\n")
和重要的一个
self.mySignal.emit(self.decrypt_my_message(str(msg)).strip() + "\n")
编辑*
我想通了我需要使用QTextCursor
self.cursor = QTextCursor(self.mytext.document())
self.cursor.insertText(str(self.user) + ": " + str(self.line.text()) + "\n")
*欢呼声
答案 0 :(得分:9)
setText()
方法会替换所有当前文本,因此您只需使用append()
方法。 (请注意,这两种方法都会自动添加尾随换行符。)
import sys
from PyQt4 import QtGui
class Window(QtGui.QWidget):
def __init__(self):
QtGui.QWidget.__init__(self)
layout = QtGui.QVBoxLayout(self)
self.button = QtGui.QPushButton('Test')
self.edit = QtGui.QTextEdit()
layout.addWidget(self.edit)
layout.addWidget(self.button)
self.button.clicked.connect(self.handleTest)
def handleTest(self):
self.edit.append('spam: spam spam spam spam')
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
win = Window()
win.show()
sys.exit(app.exec_())