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
321 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
void onClick(qint64 pointer);
2021-03-18 11:49:52 +08:00
signals:
};
#endif // DORICMOUSEAREABRIDGE_H