索引由模型提供,而不是由视图提供。该视图提供了rootIndex()
以指示它认为模型中的哪个节点为根;它可能是一个无效的索引。否则与数据无关。你必须遍历模型本身——你可以从view->model()
.
这是一个深度优先的模型:
void iterate(const QModelIndex & index, const QAbstractItemModel * model,
const std::function<void(const QModelIndex&, int)> & fun,
int depth = 0)
{
if (index.isValid())
fun(index, depth);
if (!model->hasChildren(index) || (index.flags() & Qt::ItemNeverHasChildren)) return;
auto rows = model->rowCount(index);
auto cols = model->columnCount(index);
for (int i = 0; i < rows; ++i)
for (int j = 0; j < cols; ++j)
iterate(model->index(i, j, index), model, fun, depth+1);
}
模型中的每个项目都会调用仿函数fun
,从根开始并按深度-行-列顺序进行。
例如
void dumpData(QAbstractItemView * view) {
iterate(view->rootIndex(), view->model(), [](const QModelIndex & idx, int depth){
qDebug() << depth << ":" << idx.row() << "," << idx.column() << "=" << idx.data();
});
}