QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
qmlrestreply.h
1 #ifndef QTRESTCLIENT_QMLRESTREPLY_H
2 #define QTRESTCLIENT_QMLRESTREPLY_H
3 
4 #include <QtCore/QPointer>
5 
6 #include <QtRestClient/RestReply>
7 
8 #include <QtQml/QJSValue>
9 #include <QtQml/QJSEngine>
10 
11 #ifdef DOXYGEN_RUN
13 
22 class RestReply
23 #else
24 namespace QtRestClient {
25 
26 class QmlRestReply : public QObject
27 #endif
28 {
29  Q_OBJECT
30 
40  Q_PROPERTY(QtRestClient::RestReply *reply MEMBER _reply CONSTANT)
41 
42 public:
44  explicit QmlRestReply(RestReply *reply,
45  QJSEngine *engine,
46  QObject *parent = nullptr);
47 
48 public Q_SLOTS:
56  void addCompletedHandler(const QJSValue &completedHandler);
65  void addSucceededHandler(const QJSValue &succeededHandler);
74  void addFailedHandler(const QJSValue &failedHandler);
84  void addErrorHandler(const QJSValue &errorHandler);
85 
86 private:
87  QPointer<RestReply> _reply;
88  QJSEngine *_engine;
89 
90  bool checkOk(const QJSValue &fn) const;
91 };
92 
93 }
94 
95 #endif // QMLRESTREPLY_H
QPointer
de::skycoder42::QtRestClient::RestReply::addFailedHandler
void addFailedHandler(const QJSValue &failedHandler)
Add a method to be called if the request has failed.
QtRestClient
The Namespace containing all classes of the QtRestClient module.
Definition: genericrestreply.h:14
de::skycoder42::QtRestClient::RestReply
The QML version of QtRestClient::RestReply.
Definition: qmlrestreply.h:22
de::skycoder42::QtRestClient
The QML import for the QtRestClient QML module.
Definition: qmlgenericrestreply.h:14
de::skycoder42::QtRestClient::RestReply::reply
QtRestClient::RestReply reply
The original QtRestClient::RestReply that this one wrapps.
Definition: qmlrestreply.h:40
de::skycoder42::QtRestClient::RestReply::addCompletedHandler
void addCompletedHandler(const QJSValue &completedHandler)
Add a method to be called when the request has been completed.
de::skycoder42::QtRestClient::RestReply::addSucceededHandler
void addSucceededHandler(const QJSValue &succeededHandler)
Add a method to be called when the request has been completed successfully.
QJSEngine
de::skycoder42::QtRestClient::RestReply::addErrorHandler
void addErrorHandler(const QJSValue &errorHandler)
Add a method to be called if an error occured.
QJSValue
QObject