first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#ifndef RM_TESTING_H
#define RM_TESTING_H
#if (RM_TESTING)
#include <QObject>
#include <QPoint>
#include <QElapsedTimer>
class RMTesting : public QObject
{
Q_OBJECT
public:
explicit RMTesting(QObject *parent = nullptr);
static RMTesting* instance()
{
static RMTesting * _instance = 0;
if ( _instance == 0 ) {
_instance = new RMTesting();
}
return _instance;
}
private:
QElapsedTimer mouseFilterTimer;
QPoint mouse;
protected:
bool eventFilter(QObject* object, QEvent* event);
signals:
public slots:
};
#endif // RM_TESTING
#endif // RM_TESTING_H