From 084d6f4e42396a5d2baf72877b5abf3ae6fef7be Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 24 Jan 2003 09:25:03 +0000 Subject: some intermediate stage. stacked focus cycling is very broken. dont try it. going to have to change how the python stuff works i think! --- src/bindings.cc | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'src/bindings.cc') diff --git a/src/bindings.cc b/src/bindings.cc index c5a9f896..aa9c288d 100644 --- a/src/bindings.cc +++ b/src/bindings.cc @@ -372,15 +372,21 @@ void Bindings::grabKeys(bool grab) } -bool Bindings::grabKeyboard(PyObject *callback) +bool Bindings::grabKeyboard(int screen, PyObject *callback) { assert(callback); if (_keybgrab_callback) return false; // already grabbed + + int i; + for (i = 0; i < openbox->screenCount(); ++i) + if (openbox->screen(screen)->number() == screen) + break; + if (i >= openbox->screenCount()) + return false; // couldn't find the screen.. it's not managed - int screen = openbox->screen(0)->number(); - Window root = otk::display->screenInfo(screen)->rootWindow(); + Window root = otk::display->screenInfo(i)->rootWindow(); if (XGrabKeyboard(**otk::display, root, false, GrabModeAsync, - GrabModeAsync, CurrentTime)) + GrabModeSync, CurrentTime)) return false; printf("****GRABBED****\n"); _keybgrab_callback = callback; @@ -563,7 +569,7 @@ void Bindings::grabButtons(bool grab, Client *client) void Bindings::fireButton(MouseData *data) { if (data->context == MC_Window) { - // Replay the event, so it goes to the client, and ungrab the device. + // Replay the event, so it goes to the client XAllowEvents(**otk::display, ReplayPointer, data->time); } -- cgit v1.2.3