3

该代码创建了QTextBrowser填充文本行的窗口。我想选择所有匹配“Long Line”的单词如何实现呢?

在此处输入图像描述

from PyQt4 import QtCore, QtGui
app = QtGui.QApplication([])

view = QtGui.QTextBrowser() 
for i in range(25):
    view.append(10*('Long Line of text # %004d '%i) )
view.setLineWrapMode(0)

view.find('Long Line')

view.show()
app.exec_()
4

1 回答 1

3

您可以使用QTextEdit.setExtraSelections

import sys
from PyQt4.QtGui import (QApplication, QTextEdit, QTextBrowser, QTextCursor,
                         QTextCharFormat, QPalette)

app = QApplication(sys.argv)
view = QTextBrowser()
for i in range(25):
    view.append(10*('Long Line of text # %004d '%i) )
view.setLineWrapMode(0)
line_to_find = 'Long Line'

# get default selection format from view's palette
palette = view.palette()
text_format = QTextCharFormat()
text_format.setBackground(palette.brush(QPalette.Normal, QPalette.Highlight))
text_format.setForeground(palette.brush(QPalette.Normal, QPalette.HighlightedText))

# find all occurrences of the text
doc = view.document()
cur = QTextCursor()
selections = []
while 1:
    cur = doc.find(line_to_find, cur)
    if cur.isNull():
        break
    sel = QTextEdit.ExtraSelection()
    sel.cursor = cur
    sel.format = text_format
    selections.append(sel)
view.setExtraSelections(selections)

view.show()
app.exec_()

结果如下:

win7上的QTextBrowser

或者尝试QSyntaxHighlighter.

于 2017-01-19T22:22:04.187 回答