QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
qmlrestclientglobal.h
1 #ifndef QTRESTCLIENT_QMLRESTCLIENTGLOBAL_H
2 #define QTRESTCLIENT_QMLRESTCLIENTGLOBAL_H
3 
4 #include <QtCore/QObject>
5 #include <QtRestClient/qtrestclient_global.h>
6 
7 #include "qmlrestclass.h"
8 #include "qmlpaging.h"
9 
10 #ifdef DOXYGEN_RUN
12 
19 #else
20 namespace QtRestClient {
21 
22 class QmlRestClientGlobal : public QObject
23 #endif
24 {
25  Q_OBJECT
26 
27 public:
29  explicit QmlRestClientGlobal(QJSEngine *engine, QObject *parent = nullptr);
30 
32  Q_INVOKABLE bool addGlobalApi(const QString &name, QtRestClient::RestClient *client);
34  Q_INVOKABLE void removeGlobalApi(const QString &name, bool deleteClient = true);
36  Q_INVOKABLE QtRestClient::RestClient *apiClient(const QString &name);
37 #ifdef DOXYGEN_RUN
38  Q_INVOKABLE RestClass *apiRootClass(const QString &name, QObject *parent = nullptr);
40 #else
41  Q_INVOKABLE QtRestClient::QmlRestClass *apiRootClass(const QString &name, QObject *parent = nullptr);
42 #endif
43 #ifdef DOXYGEN_RUN
44  Q_INVOKABLE RestClass *createApiClass(const QString &name, const QString &path, QObject *parent = nullptr);
46 #else
47  Q_INVOKABLE QtRestClient::QmlRestClass *createApiClass(const QString &name, const QString &path, QObject *parent = nullptr);
48 #endif
49 
50 #ifdef DOXYGEN_RUN
51  Q_INVOKABLE Paging createPaging(QtRestClient::RestClient *client, const QVariantMap &data);
53 #else
54  Q_INVOKABLE QtRestClient::QmlPaging createPaging(QtRestClient::RestClient *client, const QVariantMap &data);
55 #endif
56 
57 private:
58  QJSEngine *_engine;
59 };
60 
61 }
62 
63 #endif // QTRESTCLIENT_QMLRESTCLIENTGLOBAL_H
de::skycoder42::QtRestClient::RestClient
The QML version of QtRestClient::RestClient.
Definition: qmlrestclient.h:16
QtRestClient
The Namespace containing all classes of the QtRestClient module.
Definition: genericrestreply.h:14
de::skycoder42::QtRestClient::QtRestClient::removeGlobalApi
Q_INVOKABLE void removeGlobalApi(const QString &name, bool deleteClient=true)
Removes a previously added API from the global list.
de::skycoder42::QtRestClient
The QML import for the QtRestClient QML module.
Definition: qmlgenericrestreply.h:14
de::skycoder42::QtRestClient::QtRestClient::apiRootClass
Q_INVOKABLE RestClass * apiRootClass(const QString &name, QObject *parent=nullptr)
Returns the clients root class for the given API name.
de::skycoder42::QtRestClient::RestClass
The QML version of QtRestClient::RestClass.
Definition: qmlrestclass.h:22
de::skycoder42::QtRestClient::QtRestClient::createApiClass
Q_INVOKABLE RestClass * createApiClass(const QString &name, const QString &path, QObject *parent=nullptr)
Creates a new API class based on the client for the given API name.
QString
de::skycoder42::QtRestClient::QtRestClient::createPaging
Q_INVOKABLE Paging createPaging(QtRestClient::RestClient *client, const QVariantMap &data)
Creates a new QML Paging object for the given client from the given object.
QJSEngine
de::skycoder42::QtRestClient::QtRestClient::apiClient
Q_INVOKABLE QtRestClient::RestClient * apiClient(const QString &name)
Returns the client for given API name.
de::skycoder42::QtRestClient::QtRestClient::addGlobalApi
Q_INVOKABLE bool addGlobalApi(const QString &name, QtRestClient::RestClient *client)
Makes the given API available under the given name.
de::skycoder42::QtRestClient::Paging
The QML version of QtRestClient::Paging.
Definition: qmlpaging.h:18
QObject