在Qt包中,是否可以通过编程方式实现QTreeView
中项目的突出显示(如用鼠标悬停时所见)?
我可以选择项目并给出类似的印象,但我不能使用此方法(因为我在其他地方使用选择)。
最后一个选项是在项目本身中存储一个标志,并从某个角色的data()方法返回背景或字体。但这种做法似乎很乏味。
答案 0 :(得分:0)
我最后听了vahancho的建议。
在我的模型中,我在data(QModelIndex index)
方法中添加了以下内容:
if (role == Qt::BackgroundColorRole)
{
if (HasHighlighted && (index == LastHighlightedIndex))
{
return qVariantFromValue(QColor(229, 243, 255)); //highlighting color, at least on Windows10
}
}
要突出显示我致电
void TreeModel::SetHighlighted(QModelIndex & index)
{
if (index != LastHighlightedIndex || !HasHighlighted)
{
if (HasHighlighted)
{
emit dataChanged(LastHighlightedIndex, LastHighlightedIndex); //clearing previous highlighted
}
LastHighlightedIndex = index;
HasHighlighted = true;
emit dataChanged(index, index);
}
}
在我的情况下,我使用代理,所以我需要获得正确的索引:使用GetModelIndex
方法
void CustomTreeView::SimulateHover(QModelIndex index)
{
TreeProxyModel *proxy = dynamic_cast<TreeProxyModel*>(this->model());
if (proxy != nullptr)
{
proxy->model()->SetHighlighted(proxy->GetModelIndex(index));
}
}
-
QModelIndex TreeProxyModel::GetModelIndex(QModelIndex & index)
{
return mapToSource(index);
}
除了清除最后一次悬停:
void CustomTreeView::ClearSimulatedHover()
{
TreeProxyModel *proxy = dynamic_cast<TreeProxyModel*>(this->model());
if (proxy != nullptr)
{
proxy->model()->ClearHighlighted();
}
}