0

我正在使用带有搜索按钮的 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 中提供的输入文件很大。

搜索到的文本被高亮显示,我如何通过提供单词索引来移动到搜索到的文本?

4

1 回答 1

3

不要移动现有的光标,而是设置一个新的:

self.ui_log.log_textEdit.setTextCursor(cursor);
于 2013-08-26T13:24:46.593 回答