这是一种从我的 textedit 中复制一个单词并将其设置为我的 tableview 的新行的方法。我需要的是:如何更改我在文本编辑中选择的单词的颜色?我的文本编辑的名称是“编辑器”,当我复制单词时,我需要更改该单词的颜色,但我不知道该怎么做。请帮忙 :)。请举个例子~~
def addLineTable(self):
row = self.model.rowCount() #create a line into my tableview
self.model.insertRows(row)
column = 0
index = self.model.index(row, column)
tableView = self.TABLE
tableView.setFocus()
tableView.setCurrentIndex(index)
cursor = self.editor.textCursor()
textSelected = cursor.selectedText() #set text to cursor
self.model.setData(index, QVariant(textSelected)) #set text to new tableview line