48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
/**
|
|
* 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 GESTUREHANDLER_H
|
|
#define GESTUREHANDLER_H
|
|
|
|
#include "moduleinterface.h"
|
|
|
|
#include <QVariantMap>
|
|
|
|
class GestureHandlerModulePrivate;
|
|
class GestureHandlerModule : public QObject, public ModuleInterface {
|
|
Q_OBJECT
|
|
Q_INTERFACES(ModuleInterface)
|
|
|
|
Q_DECLARE_PRIVATE(GestureHandlerModule)
|
|
|
|
public:
|
|
Q_INVOKABLE GestureHandlerModule(QObject* parent = 0);
|
|
~GestureHandlerModule();
|
|
|
|
void setBridge(Bridge* bridge) override;
|
|
|
|
QString moduleName() override;
|
|
QList<ModuleMethod*> methodsToExport() override;
|
|
QVariantMap constantsToExport() override;
|
|
|
|
Q_INVOKABLE void handleSetJSResponder(int viewTag, void* blockNativeResponder);
|
|
Q_INVOKABLE void handleClearJSResponder();
|
|
Q_INVOKABLE void createGestureHandler(const QString& handlerName, int handlerTag, void* config);
|
|
Q_INVOKABLE void attachGestureHandler(int handlerTag, int viewTag);
|
|
Q_INVOKABLE void updateGestureHandler(int handlerTag, void* config);
|
|
Q_INVOKABLE void dropGestureHandler(int handlerTag);
|
|
|
|
|
|
private:
|
|
QScopedPointer<GestureHandlerModulePrivate> d_ptr;
|
|
};
|
|
|
|
#endif // GESTUREHANDLER_H
|