This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/example/doric/utils/DoricMouseAreaBridge.h
2021-05-20 18:27:45 +08:00

20 lines
361 B
C++

#ifndef DORICMOUSEAREABRIDGE_H
#define DORICMOUSEAREABRIDGE_H
#include <QObject>
#include <QVariant>
#include "DoricExport.h"
class DORIC_EXPORT DoricMouseAreaBridge : public QObject {
Q_OBJECT
public:
explicit DoricMouseAreaBridge(QObject *parent = nullptr);
Q_INVOKABLE
void onClick(QString pointer);
signals:
};
#endif // DORICMOUSEAREABRIDGE_H