小编New*_*eBR的帖子

PyQt5 - 滚动到 QTextEdit 的光标

我正在使用 PyQt5 开发一个文本编辑器,并且正在实现“查找下一个...”功能。用户输入他想要搜索的字符串。每次他单击“查找下一个”按钮时,下一个匹配的字符串就会突出显示。 像这样

我已经使用 QTextEdit.textCursor() 完成了这一点,如下所示:

...
textarea = QTextEdit()
cursor = textarea.textCursor()

#This function returns an array: [start index of the matched string, end index of the matched string]
matched_string_indexes = findText(text_to_find, text,...) 

#So now I can use setPosition to select the matched string
cursor.setPosition(array[0], QTextEdit.MoveAnchor)
cursor.setPosition(array[1], QTextEdit.KeepAnchor)

#Now that the matched string is seleted I can highlight it
highlightText(cursor) 
Run Code Online (Sandbox Code Playgroud)

问题是如果匹配的字符串位于页面底部(在视图之外),我希望文本区域自动向下(或向上)滚动。我尝试使用 QTextEdit 的 EnsureCursorVisible() 方法,但它不起作用。

一个强力的解决方案是计算当前行的 y 坐标(以像素为单位),然后使用scrollbar.setValue() 方法滚动到该行。

python pyqt pyqt4 pyqt5

2
推荐指数
1
解决办法
2030
查看次数

标签 统计

pyqt ×1

pyqt4 ×1

pyqt5 ×1

python ×1