]> Dogcows Code - chaz/openbox/blobdiff - src/bindings.cc
some intermediate stage. stacked focus cycling is very broken. dont try it. going...
[chaz/openbox] / src / bindings.cc
index c5a9f8961bea07dfa48761f05cbc9f4dcea71a2f..aa9c288d670f341c077bb859548548e914bf8d1c 100644 (file)
@@ -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);
   }
   
This page took 0.024135 seconds and 4 git commands to generate.