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

20 lines
361 B
C
Raw Normal View History

2021-03-18 11:49:52 +08:00
#ifndef DORICMOUSEAREABRIDGE_H
#define DORICMOUSEAREABRIDGE_H
#include <QObject>
#include <QVariant>
2021-05-18 16:15:28 +08:00
#include "DoricExport.h"
class DORIC_EXPORT DoricMouseAreaBridge : public QObject {
2021-03-18 11:49:52 +08:00
Q_OBJECT
public:
explicit DoricMouseAreaBridge(QObject *parent = nullptr);
Q_INVOKABLE
2021-04-06 16:14:43 +08:00
void onClick(QString pointer);
2021-03-18 11:49:52 +08:00
signals:
};
#endif // DORICMOUSEAREABRIDGE_H