I have a custom model (extends QAbstractTableModel
) where row data is added pragmatically. For performance reasons, I am using the fetch functionality (canFetchMore
, fetchMore
) to avoid UI lag when items are not visible.
When a new row is inserted, I do not want to trigger QAbstractItemModel::rowsInserted
. But if those rows would be visible in the view, I'd like them to appear automatically. They do appear if the user interacts with the view, e.g. selecting the last item (the view calls 'canFetchMore' and will call fetchMore
only if those items would be visible).
How do I signal to the view that more rows are available to display, but need to be fetched?
Solution for Qt 5.6.1 - untested for other versions!
After digging around in the sources of
QAbstractItemView
, I found the simplest way to triggerfetchMore
is to start theQAbstractItemViewPrivate's
internal and undocumentedfetchMoreTimer
.This is heavily implementation dependent and may change in future Qt versions!
Subclass your
QAbstractItemView
derivate (e.g.QListView
, ...) to get access to one of the protected functions starting the timer:Now, after adding items to your model, you can call
view->CheckFetchMore();
Edit
It might be possible to override
rowsInserted(...)
and only call the base implementation if the newly added rows would be visible.But that seems kludgy as well.
(I love how the comment in the Qt code pinpoints your problem...)