aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/incrementalmodel.h
blob: f61d38a3d187db80b022aeb56ff6cbb13ad04786 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef IncrementalModel_H
#define IncrementalModel_H

#include <QAbstractListModel>
#include <QList>
#include <QStringList>

class IncrementalModel : public QAbstractListModel
{
    Q_OBJECT

public:
    IncrementalModel(QObject *parent = nullptr);

    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;

protected:
    bool canFetchMore(const QModelIndex &parent) const override;
    void fetchMore(const QModelIndex &parent) override;

private:
    QStringList list;
    int count;
};

#endif