added cursor warping

This commit is contained in:
vaxerski 2021-11-19 23:08:59 +01:00
parent dcbf69f8b8
commit da91fa3c98
2 changed files with 21 additions and 1 deletions

View File

@ -60,7 +60,7 @@ bool WindowManager::handleEvent() {
break;
default:
Debug::log(WARN, "Unknown event: " + std::to_string(ev->response_type & ~0x80));
//Debug::log(WARN, "Unknown event: " + std::to_string(ev->response_type & ~0x80));
break;
}
@ -364,6 +364,22 @@ CWindow* getNeighborInDir(char dir) {
return nullptr;
}
// I don't know if this works, it might be an issue with my nested Xorg session I am using rn to test this.
// Will check later.
// TODO:
void WindowManager::warpCursorTo(Vector2D to) {
const auto POINTERCOOKIE = xcb_query_pointer(WindowManager::DisplayConnection, WindowManager::Screen->root);
xcb_query_pointer_reply_t* pointerreply = xcb_query_pointer_reply(WindowManager::DisplayConnection, POINTERCOOKIE, NULL);
if (!pointerreply) {
Debug::log(ERR, "Couldn't query pointer.");
return;
}
xcb_warp_pointer(WindowManager::DisplayConnection, XCB_NONE, WindowManager::Screen->root, 0, 0, 0, 0, (int)to.x, (int)to.y);
free(pointerreply);
}
void WindowManager::moveActiveWindowTo(char dir) {
const auto CURRENTWINDOW = WindowManager::getWindowFromDrawable(WindowManager::LastWindow);
@ -391,4 +407,7 @@ void WindowManager::moveActiveWindowTo(char dir) {
setEffectiveSizePosUsingConfig(neighbor);
setEffectiveSizePosUsingConfig(CURRENTWINDOW);
// finish by moving the cursor to the current window
WindowManager::warpCursorTo(CURRENTWINDOW->getPosition() + CURRENTWINDOW->getSize() / 2.f);
}

View File

@ -36,4 +36,5 @@ namespace WindowManager {
void fixWindowOnClose(CWindow*);
void moveActiveWindowTo(char);
void warpCursorTo(Vector2D);
};