PyQt4 QTableWidget 中的选择突出显示用全块颜色填充所选单元格的背景

Selection highlight in PyQt4 QTableWidget fill selected cell's background with full block color

我正在开发一个小型 PyQt4 任务管理器。在这里 提出了类似的问题。从这个 post,我尝试为选择背景颜色不透明度设置样式表,但突出显示仍然覆盖单元格背景颜色。有没有人可以帮我展示如何将其更改为边框颜色?

下图是我目前的结果

这就是我愿意实现的,如你所见,高亮选择只是覆盖背景色,而不是覆盖它。

最后,希望我的问题对大家来说够清楚了,如果有什么不明白或错误的地方,请告诉我,我会尽快解决! 谢谢!

更改颜色的一种方法是使用委托。

为此我们必须获取当前背景颜色,获取背景颜色的任务很繁琐,因为 QTableWidget 有自己的颜色作为其背景,它也有您添加到 QTableWidgets 和其他类型元素的颜色所以我的回答目前得到的支持有限,但这个想法是可扩展的。

要显示为所选元素背景的颜色是背景颜色和正确选择的颜色的平均值,在这种情况下我们选择颜色 #cbedff

我已经在以下 class:

中实现了以上所有内容
class TableWidget(QTableWidget):
    def __init__(self, *args, **kwargs):
        QTableWidget.__init__(self, *args, **kwargs)

        class StyleDelegateForQTableWidget(QStyledItemDelegate):
            color_default = QColor("#aaedff")

            def paint(self, painter, option, index):
                if option.state & QStyle.State_Selected:
                    option.palette.setColor(QPalette.HighlightedText, Qt.black)
                    color = self.combineColors(self.color_default, self.background(option, index))
                    option.palette.setColor(QPalette.Highlight, color)
                QStyledItemDelegate.paint(self, painter, option, index)

            def background(self, option, index):
                item = self.parent().itemFromIndex(index)
                if item:
                    if item.background() != QBrush():
                        return item.background().color()
                if self.parent().alternatingRowColors():
                    if index.row() % 2 == 1:
                        return option.palette.color(QPalette.AlternateBase)
                return option.palette.color(QPalette.Base)

            @staticmethod
            def combineColors(c1, c2):
                c3 = QColor()
                c3.setRed((c1.red() + c2.red()) / 2)
                c3.setGreen((c1.green() + c2.green()) / 2)
                c3.setBlue((c1.blue() + c2.blue()) / 2)

                return c3

        self.setItemDelegate(StyleDelegateForQTableWidget(self))

示例:

if __name__ == '__main__':
    app = QApplication(sys.argv)
    w = TableWidget()
    w.setColumnCount(10)
    w.setRowCount(10)
    for i in range(w.rowCount()):
        for j in range(w.columnCount()):
            w.setItem(i, j, QTableWidgetItem("{}".format(i * j)))
            if i < 8 and j < 8:
                color = QColor(qrand() % 256, qrand() % 256, qrand() % 256)
                w.item(i, j).setBackground(color)
    w.show()
    sys.exit(app.exec_())

取消选择:

已选择: