blob: 2f2c369f15b5289551e1bed51af8377626228bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef THREADEDFETCHMOREMODEL_H
#define THREADEDFETCHMOREMODEL_H
#include <fetchworker.h>
#include <QAbstractListModel>
#include <QThread>
#include <QtQml/qqmlregistration.h>
class ThreadedFetchMoreModel : public QAbstractListModel
{
Q_OBJECT
QML_ELEMENT
public:
ThreadedFetchMoreModel();
~ThreadedFetchMoreModel();
Q_INVOKABLE int rowCount(const QModelIndex &parent = QModelIndex()) const override;
Q_INVOKABLE QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
Q_INVOKABLE void fetchMore(const QModelIndex &parent) override;
Q_INVOKABLE bool canFetchMore(const QModelIndex &parent) const override;
QHash<int, QByteArray> roleNames() const override;
signals:
void fetchDataBlock();
protected:
enum class Role { Title = Qt::ItemDataRole::UserRole, Subtitle, Number, LoadingElement };
private slots:
void dataReceived(const QList<FetchWorker::DataBlock> &items);
void noMoreToFetch();
private:
void addLoadingItem();
void removeLoadingItem();
QList<FetchWorker::DataBlock> m_dataList;
QThread m_workerThread;
bool m_fetchOngoing{false};
bool m_hasUnfetchedItems{true};
};
#endif // UNTHREADEDFETCHMOREMODEL_H
|