]> Dogcows Code - chaz/openbox/commitdiff
count the EnterNotify events and tell openbox to ignore them when ungrabbing the...
authorDana Jansens <danakj@orodu.net>
Sun, 21 Sep 2003 18:09:48 +0000 (18:09 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 21 Sep 2003 18:09:48 +0000 (18:09 +0000)
openbox/grab.c

index a53fe5e8241039a92ccfe4c8067740cfd5989ae3..9c6065a745fb92b980f953558bc76a7a8b098241 100644 (file)
@@ -78,8 +78,38 @@ gboolean grab_pointer(gboolean grab, ObCursor cur)
         else
             ret = TRUE;
     } else if (pgrabs > 0) {
-        if (--pgrabs == 0)
+        if (--pgrabs == 0) {
             XUngrabPointer(ob_display, event_lasttime);
+
+            /* ignore all enter events caused by ungrabbing the pointer */
+            {
+                GSList *saved = NULL, *it;
+                XEvent *e;
+                guint n = 0;
+                
+                XSync(ob_display, FALSE);
+
+                /* count the events */
+                while (TRUE) {
+                    e = g_new(XEvent, 1);
+                    if (XCheckTypedEvent(ob_display, EnterNotify, e)) {
+                        saved = g_slist_append(saved, e);
+                        ++n;
+                    } else {
+                        g_free(e);
+                        break;
+                    }
+                }
+                /* put the events back */
+                for (it = saved; it; it = g_slist_next(it)) {
+                    XPutBackEvent(ob_display, it->data);
+                    g_free(it->data);
+                }
+                g_slist_free(saved);
+                /* ignore the events */
+                event_ignore_enter_focus(n);
+            }
+        }
         ret = TRUE;
     }
     return ret;
This page took 0.032072 seconds and 4 git commands to generate.