2017-05-13 11:03:46 +02:00
|
|
|
#ifndef U32BACKEND_HPP
|
|
|
|
#define U32BACKEND_HPP
|
|
|
|
|
|
|
|
#include <QPixmap>
|
2017-06-06 01:26:26 +02:00
|
|
|
#include <windows.h>
|
2017-05-13 11:03:46 +02:00
|
|
|
|
2017-06-27 11:33:11 +02:00
|
|
|
#define PLATFORM_CAPABILITY_PID
|
|
|
|
#define PLATFORM_CAPABILITY_ACTIVEWINDOW
|
|
|
|
#define PLATFORM_CAPABILITY_CURSOR
|
|
|
|
|
2017-05-13 11:03:46 +02:00
|
|
|
class PlatformBackend {
|
2017-06-06 01:26:26 +02:00
|
|
|
public:
|
2017-05-13 23:33:36 +02:00
|
|
|
std::tuple<QPoint, QPixmap> getCursor();
|
2017-06-06 01:26:26 +02:00
|
|
|
DWORD pid();
|
2017-05-13 11:03:46 +02:00
|
|
|
static PlatformBackend &inst() {
|
|
|
|
static PlatformBackend inst;
|
|
|
|
return inst;
|
|
|
|
}
|
2017-06-27 15:45:02 +02:00
|
|
|
WId getActiveWID();
|
2017-05-13 11:03:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // U32BACKEND_HPP
|