更改QTableWidget默认选择颜色,并使其半透明

时间:2017-02-14 12:55:26

标签: python pyqt qtablewidget

我正在尝试更改QTableWidget中的选择的默认颜色,但我需要使其透明,以便我仍然可以看到底层单元格的颜色。

我用过:

self.setStyleSheet("QTableView{ selection-background-color: rgba(255, 0, 0, 50);  }")
self.setSelectionBehavior(QAbstractItemView.SelectRows)

所以现在选择颜色有点红色,但有些单元格定义为:

cell.setBackgroundColor(color)
...
self.setItem(i, j, cell)

仍然是选择颜色覆盖了细胞的颜色(没有混合,只有粉红色选择)。我尝试为单元格而不是背景颜色设置前景色:

brush = QBrush(color, Qt.SolidPattern)
cell.setForeground(brush)

但它没有改变任何东西。 那么有一个简单的方法,或者我应该手工处理选择? (用我自己的颜色重绘所选行) 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我有几乎相同的情况,但是insetead我在单元格中有文本并且我想要完全透明的选择(因此,背景颜色没有变化) 如果您设置透明颜色,它将是纯色(在qt中出错?),所以我将文本设置为粗体(=选中)并选择样式 这里的代码,也许会帮忙

//.h
#include <QStyledItemDelegate>
class SelectionControlDelegate : public QStyledItemDelegate
{
    public:
        SelectionControlDelegate(QObject* parent = 0);
        void initStyleOption(QStyleOptionViewItem* option, const QModelIndex& index) const override;
};

//.cpp
SelectionControlDelegate::SelectionControlDelegate(QObject* parent) : QStyledItemDelegate(parent)
{
}

void SelectionControlDelegate::initStyleOption(QStyleOptionViewItem* option, const QModelIndex& index) const
{
    QStyledItemDelegate::initStyleOption(option, index);
    const bool selected = option->state & QStyle::State_Selected;
    option->font.setBold(selected); // this will represent selected state
    if (selected)
    {
        option->state = option->state & ~QStyle::State_Selected; // this will block selection-style = no highlight
    }
}

// in widget class
...
_ui->tableView->setItemDelegate(new SelectionControlDelegate(this));
...


// when setting cell background, i would change also text color 
QColor textColor = backgroundColor.value() <= 120 ? Qt::white : Qt::black;  // if it is dark, text would be white otherwise black
// or you can compute invert color... 

这是我的可视化:选择了5%和25%的项目

选择演示