我有这个带有自定义模型和委托的 QTableView,我如何在编辑后更改单元格的背景颜色?
我应该在代表处这样做setModelData()
吗?
index.model.setData(index, QVariant(True),Qt.UserRole)
后来在模型的data()
# 它调用自己?
if role == Qt.BackgroundColorRole:
if index.model().data(index,Qt.UserRole).toBool():
return QVariant(QColor(Qt.darkBlue))
在模型中,setData()
我没有任何代码,例如:
if role==Qt.UserRole:
....
这样做的正确方法是什么?
编辑:这是我setData()
在自定义模型中的整个方法
def setData(self, index, value, role=Qt.EditRole):
if index.isValid() and 0 <= index.row() < len(self.particles):
particle = self.particles[index.row()]
column = index.column()
if column == ID:
value,ok= value.toInt()
if ok:
particle.id =value
elif column == CYCLEIDANDNAME:
cycleId,cycleName= value.toString().split(' ')
particle.cycleId =cycleId
# also need to set cycleName
for name in self.cycleNames:
if name.endsWith(cycleName):
particle.cycleFrameNormalized=particle.cycleName = name
break
elif column == CYCLEFRAME:
value,ok= value.toInt()
if ok:
print 'set new val to :',value
particle.cycleFrame =value
# self.setData(index,QVariant(QColor(Qt.red)),Qt.BackgroundRole)
elif column == CLASSID:
value,ok= value.toInt()
if ok:
particle.classId =value
elif column == VARIATIONID:
value,ok= value.toInt()
if ok:
particle.variationId =value
self.emit(SIGNAL("dataChanged(QModelIndex,QModelIndex)"),
index, index)
return True
return False
抱歉仍然没有线索,我将粘贴快速 gui 开发书示例中的完整代码:我在这里发布了我的代码 http://pastebin.com/ShgRRMcY
编辑单元格后如何更改代码以使单元格背景颜色发生变化?