我正在使用带搜索按钮的Qtextedit。这是代码。
format = QTextCharFormat()
format.setBackground(QBrush(QColor("Gray")))
regex = QRegExp(pattern)
if (self.ui_log.checkBox_case.isChecked()==False):
regex.setCaseSensitivity(False)
pos = 0
index = regex.indexIn(self.ui_log.log_textEdit.toPlainText(), pos)
while (index != -1):
cursor.setPosition(index)
cursor.movePosition(QTextCursor.EndOfWord, 1)
cursor.mergeCharFormat(format)
pos = index + regex.matchedLength()
self.ui_log.log_textEdit.moveCursor(??????)
index = regex.indexIn(self.ui_log.log_textEdit.toPlainText(), pos)
Qtextedit有一个滚动条作为我在qtextedit中提供的输入文件很大..
搜索到的文字高亮显示,如何通过提供单词索引来移动到搜索文本?
答案 0 :(得分:2)
不要移动现有光标,而是设置一个新光标:
self.ui_log.log_textEdit.setTextCursor(cursor);