PyQt/QTextEdit/HighlightText.py

60 lines
1.9 KiB
Python
Raw Normal View History

2018-09-05 15:02:18 +08:00
import sys
2018-12-26 23:04:56 +08:00
from PyQt5.QtGui import QTextCharFormat, QTextDocument, QTextCursor
2018-09-05 15:02:18 +08:00
from PyQt5.QtWidgets import (QApplication, QMainWindow, QTextEdit,
2018-12-26 23:04:56 +08:00
QToolBar, QLineEdit, QPushButton, QColorDialog, QHBoxLayout, QWidget)
2018-09-05 15:02:18 +08:00
class TextEdit(QMainWindow):
def __init__(self, parent=None):
super(TextEdit, self).__init__(parent)
self.textEdit = QTextEdit(self)
self.setCentralWidget(self.textEdit)
2018-12-26 23:04:56 +08:00
2018-09-05 15:02:18 +08:00
widget = QWidget(self)
vb = QHBoxLayout(widget)
vb.setContentsMargins(0, 0, 0, 0)
self.findText = QLineEdit(self)
self.findText.setText('self')
2018-12-26 23:04:56 +08:00
findBtn = QPushButton('高亮', self)
2018-09-05 15:02:18 +08:00
findBtn.clicked.connect(self.highlight)
vb.addWidget(self.findText)
vb.addWidget(findBtn)
2018-12-26 23:04:56 +08:00
2018-09-05 15:02:18 +08:00
tb = QToolBar(self)
tb.addWidget(widget)
2018-12-26 23:04:56 +08:00
def setText(self, text):
2018-09-05 15:02:18 +08:00
self.textEdit.setPlainText(text)
2018-12-26 23:04:56 +08:00
2018-09-05 15:02:18 +08:00
def mergeFormatOnWordOrSelection(self, format):
cursor = self.textEdit.textCursor()
if not cursor.hasSelection():
cursor.select(QTextCursor.WordUnderCursor)
cursor.mergeCharFormat(format)
self.textEdit.mergeCurrentCharFormat(format)
2018-12-26 23:04:56 +08:00
2018-09-05 15:02:18 +08:00
def highlight(self):
2018-12-26 23:04:56 +08:00
text = self.findText.text() # 输入框中的文字
2018-09-05 15:02:18 +08:00
if not text:
return
col = QColorDialog.getColor(self.textEdit.textColor(), self)
if not col.isValid():
return
fmt = QTextCharFormat()
fmt.setForeground(col)
2018-12-26 23:04:56 +08:00
# 先把光标移动到开头
2018-09-05 15:02:18 +08:00
self.textEdit.moveCursor(QTextCursor.Start)
2018-12-26 23:04:56 +08:00
while self.textEdit.find(text, QTextDocument.FindWholeWords): # 查找所有文字
2018-09-05 15:02:18 +08:00
self.mergeFormatOnWordOrSelection(fmt)
2018-12-26 23:04:56 +08:00
2018-09-05 15:02:18 +08:00
if __name__ == '__main__':
app = QApplication(sys.argv)
textEdit = TextEdit()
textEdit.resize(800, 600)
textEdit.show()
2018-12-26 23:04:56 +08:00
textEdit.setText(open(sys.argv[0], 'rb').read().decode())
2018-09-05 15:02:18 +08:00
2018-12-26 23:04:56 +08:00
sys.exit(app.exec_())