1 #ifndef QTRESTCLIENT_QMLPAGING_H
2 #define QTRESTCLIENT_QMLPAGING_H
4 #include <QtCore/QObject>
5 #include <QtQml/QJSValue>
6 #include <QtRestClient/IPaging>
7 #include <QtRestClient/RestReply>
8 #include <QtRestClient/RestClient>
35 Q_PROPERTY(
bool valid READ isValid CONSTANT)
45 Q_PROPERTY(QVariantList items READ items CONSTANT)
55 Q_PROPERTY(
int total READ total CONSTANT)
65 Q_PROPERTY(
int offset READ offset CONSTANT)
75 Q_PROPERTY(
bool hasNext READ hasNext CONSTANT)
85 Q_PROPERTY(
QUrl nextUrl READ nextUrl CONSTANT)
95 Q_PROPERTY(
bool hasPrevious READ hasPrevious CONSTANT)
105 Q_PROPERTY(
QUrl previousUrl READ previousUrl CONSTANT)
115 Q_PROPERTY(QVariantMap properties READ properties CONSTANT)
119 explicit QmlPaging() = default;
127 bool isValid() const;
135 QVariantList items() const;
141 bool hasNext() const;
143 QUrl nextUrl() const;
145 bool hasPrevious() const;
147 QUrl previousUrl() const;
149 QVariantMap properties() const;
161 int to = -1,
int from = 0);
175 int to = -1,
int from = 0);
182 int internalIterate(
QJSValue iterator,
int from,
int to) const;
189 #endif // QTRESTCLIENT_QMLPAGING_H