Selectable mouse type on Linux, part 1

This commit is contained in:
richardg867
2022-04-20 20:51:39 -03:00
committed by GitHub
parent 0208555e8c
commit a62e3aff23

View File

@@ -64,6 +64,11 @@ public:
rendererWindow->onResize(width, height);
}
void (*mouse_init)() = nullptr;
void (*mouse_poll)() = nullptr;
void (*mouse_capture)(QWindow *window) = nullptr;
void (*mouse_uncapture)() = nullptr;
signals:
void blitToRenderer(int buf_idx, int x, int y, int w, int h);
void rendererChanged();