为什么不能使用setData()在QTreeView中设置Cell的背景颜色?

时间:2017-08-17 11:19:49

标签: c++ qt

我使用以下代码尝试更改给定QModelIndex的单元格的背景颜色。

ui->TreeView->model()->setData(index, QVariant(QBrush (QColor(Qt::green))) , Qt::BackgroundRole);

其中indexdataChanged()信号给出。

这不起作用。有什么想法吗?

这是我重新实现的setData功能。

bool TreeModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
    TreeItem *item = getItem(index); //gets item a given index
    bool result = item->setData(index.column(), value);

if (result)
    emit dataChanged(index, index);

return result;
}

以下是基础setData的{​​{1}}方法:

item

1 个答案:

答案 0 :(得分:2)

对模糊问题道歉。我已经设法自己解决了这个问题,所以我会在这里发帖,以防任何人遇到类似的问题。

对我来说问题是我没有重新实现QAbstractItemView的data()方法来解释新角色。

QVariant TreeModel::data(const QModelIndex &index, int role) const
{
TreeItem *item = getItem(index);

if (role == Qt::BackgroundRole)
     return item->data(index.column());
//and so on...

AFAIK data()方法为树视图提供了它需要呈现的模型的数据。在这个方法中,我没有考虑role == Qt::BackgroundRole时的情况,因此从未向模型提供适当的信息。