我使用以下代码尝试更改给定QModelIndex
的单元格的背景颜色。
ui->TreeView->model()->setData(index, QVariant(QBrush (QColor(Qt::green))) , Qt::BackgroundRole);
其中index
由dataChanged()
信号给出。
这不起作用。有什么想法吗?
这是我重新实现的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
答案 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
时的情况,因此从未向模型提供适当的信息。