我有一个具有以下模型的虚拟表视图实现:
class MyModel: public QAbstractListModel
{
int columnCount (const QModelIndex & parent = QModelIndex() ) const { return 2; }
int rowCount (const QModelIndex & parent = QModelIndex() ) const { return count; }
QModelIndex parent (const QModelIndex & index ) const { return QModelIndex(); }
QModelIndex index (int row, int column, const QModelIndex & parent = QModelIndex() ) const { return createIndex(row, column); }
QVariant data(const QModelIndex & index, int role) const
{
int col = index.column();
int row = index.row();
if (role == Qt::DecorationRole && col == 0)
{
return getIcon(row); // icons in the first column
}
else if (role == Qt::DisplayRole && col == 1)
{
return getText(row); // text in the second column
}
else
{
return QVariant();
}
}
void update()
{
getNewText();
getNewIcons();
emit dataChanged((index(0,0)), index(count-1,1));
}
}
在第一次创建表视图并分配模型后,一切正常:我在表视图中得到了 10 个项目。
但后来我更新了模型,现在它有 12 个项目。仅显示其中的前 10 个。看起来它缓存了 10 的值并且不想更新它。
我该如何解决?