我有一个虚拟表视图实现,具有以下模型:
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的值,并且不想更新它。
我该如何解决?
答案 0 :(得分:1)
我在beginRemoveRows
方法中调用endRemoveRows
,beginInsertRows
,endInsertRows
,update
解决了这个问题