I have QSortFilterProxyModel and QModelIndex of item in the model that is set as source to QSortFilterProxyModel. I need to know is this QModelIndex included in the SortFilterProxyModel model with current filtering settings or not. How can I do this?

有帮助吗?

解决方案

QSortFilterProxyModel * fm;
QModelIndex      sourceIndex;

if (fm->mapFromSource(sourceIndex).isValid()) {
 // element in filter proxy
} else {
 // element is not in filter proxy
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top