PyQt5-更改光标下的字体颜色

时间:2019-03-01 07:11:24

标签: python pyqt5 qtextedit qtextbrowser qcursor

我正在尝试更改将突出显示的字体的颜色(红色)。我面临的问题是,当我突出显示第一个单词时, 随后的所有文本都变为红色。

def cursorPosition(self):
    logging.debug("Cursor Positiong changed")
    self.cursor = self.ui.captureWindow.textCursor()

    if self.cursor.hasSelection():
        fmt = QTextCharFormat()
        fmt.setForeground(Qt.red)

        logging.debug(self.cursor.selectedText())

        # We insert the new text, which will override the selected text
        self.cursor.insertText(self.cursor.selectedText(), fmt)
        # txt = '<p style="color:red;">' + self.cursor.selectedText() + '</p> '
        # self.cursor.insertHtml(txt)

        # And set the new cursor
        self.ui.captureWindow.setTextCursor(self.cursor)

我尝试使用insertTextinsertHtml这两种方法进行操作。 insertHtml 在结束标记后面是否有空格有效。删除该空格,其行为与insertText相同,在第一个高亮显示后所有内容将变为红色。

enter image description here

0 个答案:

没有答案