我想通过进度条告知用户过滤QML地图上的点的过程。这个过程分三个阶段进行: filterAcceptsRow调用rowCount然后调用数据。数据返回的值与过滤器进行比较并验证与否。
这里是filterAcceptsRow():
bool NavaidsFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
{
if(!m_boundaryZone.isValid()){
return false;
}
QModelIndex ix = sourceModel()->index(sourceRow, 0, sourceParent);
QGeoCoordinate pos = ix.data(NavaidsModel::PositionRole).value<QGeoCoordinate>();
return m_boundaryZone.contains(pos);
}
这是rowCount():
Q_INVOKABLE int rowCount(const QModelIndex & parent = QModelIndex()) const{
Q_UNUSED(parent)
return mPoints.count();
}
这是data(),实现了错误的QProgressDialog:
QVariant data(const QModelIndex & index, int role=Qt::DisplayRole) const {
QProgressDialog filterDialog;
filterDialog.setMinimum(0);
filterDialog.setMaximum(mPoints.count());
filterDialog.show();
filterDialog.setValue(index.row());
const NavaidsPoint &point = mPoints[index.row()];
if (role == PositionRole){
return QVariant::fromValue(point.position());}
else if (role == OACICodeRole){
return point.oaciCode();}
else if (role == CountryCodeRole){
return point.countryCode();}
return QVariant();
}
数据在我看来是代码的好部分,我们通过index.row()知道当前值的索引,并通过rowCount()知道值的总和。
通过比较两个数字来了解进度是显而易见的,但是在进度条中显示它并不像我编码那样有效。
我尝试使用QFutureWatcher来完成这项工作,但没有成功。
您对要实施的解决方案有所了解吗?
提前致谢
答案 0 :(得分:0)
如果要监控进度,则必须实施async worker。它必须完成一步,暂停,通知GUI,给它时间来反映变化,然后才进行下一步,直到完成。
如果你在一个紧凑的循环中这样做,这绝对会影响你的表现,所以你必须注意它不是太细粒度。像进度条这样的东西每秒不应超过10次更新。
它不起作用的原因是在完成工作时胎面被阻挡,因此在完成所有工作之前,进度条无法更新。