“全部替换”之后撤消

时间:2019-08-12 21:07:25

标签: python pyqt pyqt5 undo qtextedit

我已经实现了“全部替换”功能,当按下“查找并替换”窗口上的全部替换按钮时会触发该功能。 但是,如果我尝试使用内置撤消功能撤消更改,则什么也不会发生。

显示对话框窗口时,我的文本编辑器没有对准焦点吗?

def handle_replace_all():
    old = find_win.line_edit_find.text() # text to replace
    new = find_win.line_edit_replace.text() # new text

    cursor = self.text_edit.textCursor()
    cursor.beginEditBlock()

    current_text = self.text_edit.toPlainText()
    replaced_text = current_text.replace(old, new)
    self.text_edit.setPlainText(replaced_text)

    cursor.endEditBlock()


find_window.button_replace_all.clicked.connect(handle_replace_all)

为什么会这样? 感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

如果要使用撤消重做功能,则必须仅使用QTextCursor进行修改:

def handle_replace_all(self):
    old = find_win.line_edit_find.text() # text to replace
    new = find_win.line_edit_replace.text() # new text

    current_text = self.text_edit.toPlainText()
    replaced_text = current_text.replace(old, new)

    cursor = self.text_edit.textCursor()
    cursor.beginEditBlock()
    cursor.select(QtGui.QTextCursor.Document)
    cursor.removeSelectedText()
    cursor.insertText(replaced_text)
    cursor.endEditBlock()