/** * Copyright (c) 2017-present, Status Research and Development GmbH. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #ifndef RCTSTATUS_H #define RCTSTATUS_H #include "moduleinterface.h" #include class RCTStatusPrivate; class RCTStatus : public QObject, public ModuleInterface { Q_OBJECT Q_INTERFACES(ModuleInterface) Q_DECLARE_PRIVATE(RCTStatus) public: Q_INVOKABLE RCTStatus(QObject* parent = 0); ~RCTStatus(); void setBridge(Bridge* bridge) override; QString moduleName() override; QList methodsToExport() override; QVariantMap constantsToExport() override; Q_INVOKABLE void startNode(QString configString); Q_INVOKABLE void shouldMoveToInternalStorage(double callbackId); Q_INVOKABLE void moveToInternalStorage(double callbackId); Q_INVOKABLE void stopNode(); Q_INVOKABLE void createAccount(QString password, double callbackId); Q_INVOKABLE void notifyUsers(QString token, QString payloadJSON, QString tokensJSON, double callbackId); Q_INVOKABLE void addPeer(QString enode, double callbackId); Q_INVOKABLE void recoverAccount(QString passphrase, QString password, double callbackId); Q_INVOKABLE void login(QString address, QString password, double callbackId); Q_INVOKABLE void approveSignRequests(QString hashes, QString password, double callbackId); Q_INVOKABLE void discardSignRequest(QString id); Q_INVOKABLE void setAdjustResize(); Q_INVOKABLE void setAdjustPan(); Q_INVOKABLE void setSoftInputMode(int i); Q_INVOKABLE void clearCookies(); Q_INVOKABLE void clearStorageAPIs(); Q_INVOKABLE void sendWeb3Request(QString payload, double callbackId); Q_INVOKABLE void sendWeb3PrivateRequest(QString payload, double callbackId); Q_INVOKABLE void closeApplication(); Q_INVOKABLE void getDeviceUUID(double callbackId); Q_INVOKABLE static bool JSCEnabled(); Q_INVOKABLE static void jailSignalEventCallback(const char* signal); void emitSignalEvent(const char* signal); Q_SIGNALS: void jailSignalEvent(const char* signal); private Q_SLOTS: void onJailSignalEvent(const char* signal); private: QScopedPointer d_ptr; }; #endif // RCTSTATUS_H