blob: 80e7a1460a4f53854779435077743fd93885bd4f (
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
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (C) 2017 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QREMOTEOBJECTS_ABSTRACTITEMMODELREPLICA_H
#define QREMOTEOBJECTS_ABSTRACTITEMMODELREPLICA_H
#include <QtRemoteObjects/qtremoteobjectglobal.h>
#include <QtCore/qabstractitemmodel.h>
#include <QtCore/qitemselectionmodel.h>
QT_BEGIN_NAMESPACE
class QAbstractItemModelReplicaImplementation;
class Q_REMOTEOBJECTS_EXPORT QAbstractItemModelReplica : public QAbstractItemModel
{
Q_OBJECT
public:
~QAbstractItemModelReplica() override;
QItemSelectionModel* selectionModel() const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const final;
void multiData(const QModelIndex &index, QModelRoleDataSpan roleDataSpan) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
QModelIndex parent(const QModelIndex & index) const override;
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const override;
bool hasChildren(const QModelIndex & parent = QModelIndex()) const override;
int rowCount(const QModelIndex & parent = QModelIndex()) const override;
int columnCount(const QModelIndex & parent = QModelIndex()) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
QList<int> availableRoles() const;
QHash<int, QByteArray> roleNames() const override;
bool isInitialized() const;
bool hasData(const QModelIndex &index, int role) const;
size_t rootCacheSize() const;
void setRootCacheSize(size_t rootCacheSize);
Q_SIGNALS:
void initialized();
private:
explicit QAbstractItemModelReplica(QAbstractItemModelReplicaImplementation *rep, QtRemoteObjects::InitialAction action, const QList<int> &rolesHint);
QScopedPointer<QAbstractItemModelReplicaImplementation> d;
friend class QAbstractItemModelReplicaImplementation;
friend class QRemoteObjectNode;
};
QT_END_NAMESPACE
#endif // QREMOTEOBJECTS_ABSTRACTITEMMODELREPLICA_H
|