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/doric/utils/DoricMouseAreaBridge.h

18 lines
322 B
C
Raw Normal View History

2021-03-18 11:49:52 +08:00
#ifndef DORICMOUSEAREABRIDGE_H
#define DORICMOUSEAREABRIDGE_H
#include <QObject>
#include <QVariant>
class DoricMouseAreaBridge : public QObject {
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