X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmouse.c;h=850fb337cb99e964ae9144bf3525aad97652cc6f;hb=0c8c23e8fdef2936d2ca425dcbf35e4eb7dd7edf;hp=96cb0660eaaf70691ef28871591db5be5a82bcd2;hpb=9014cf7c4e2a8ca5ccb9735f2b75438433130d13;p=chaz%2Fopenbox diff --git a/openbox/mouse.c b/openbox/mouse.c index 96cb0660..850fb337 100644 --- a/openbox/mouse.c +++ b/openbox/mouse.c @@ -48,7 +48,8 @@ typedef struct { static GSList *bound_contexts[OB_FRAME_NUM_CONTEXTS]; ObFrameContext mouse_button_frame_context(ObFrameContext context, - guint button) + guint button, + guint state) { GSList *it; ObFrameContext x = context; @@ -56,7 +57,7 @@ ObFrameContext mouse_button_frame_context(ObFrameContext context, for (it = bound_contexts[context]; it; it = g_slist_next(it)) { ObMouseBinding *b = it->data; - if (b->button == button) + if (b->button == button && b->state == state) return context; } @@ -70,6 +71,9 @@ ObFrameContext mouse_button_frame_context(ObFrameContext context, case OB_FRAME_CONTEXT_LEFT: case OB_FRAME_CONTEXT_RIGHT: break; + case OB_FRAME_CONTEXT_ROOT: + x = OB_FRAME_CONTEXT_DESKTOP; + break; case OB_FRAME_CONTEXT_BOTTOM: case OB_FRAME_CONTEXT_BLCORNER: case OB_FRAME_CONTEXT_BRCORNER: @@ -90,7 +94,11 @@ ObFrameContext mouse_button_frame_context(ObFrameContext context, g_assert_not_reached(); } - return x; + /* allow for multiple levels of fall-through */ + if (x != context) + return mouse_button_frame_context(x, button, state); + else + return x; } void mouse_grab_for_client(ObClient *client, gboolean grab) @@ -192,7 +200,8 @@ void mouse_event(ObClient *client, XEvent *e) case ButtonPress: context = frame_context(client, e->xbutton.window, e->xbutton.x, e->xbutton.y); - context = mouse_button_frame_context(context, e->xbutton.button); + context = mouse_button_frame_context(context, e->xbutton.button, + e->xbutton.state); px = e->xbutton.x_root; py = e->xbutton.y_root; @@ -222,7 +231,8 @@ void mouse_event(ObClient *client, XEvent *e) case ButtonRelease: /* use where the press occured in the window */ context = frame_context(client, e->xbutton.window, pwx, pwy); - context = mouse_button_frame_context(context, e->xbutton.button); + context = mouse_button_frame_context(context, e->xbutton.button, + e->xbutton.state); if (e->xbutton.button == button) pwx = pwy = -1; @@ -289,7 +299,7 @@ void mouse_event(ObClient *client, XEvent *e) case MotionNotify: if (button) { context = frame_context(client, e->xmotion.window, pwx, pwy); - context = mouse_button_frame_context(context, button); + context = mouse_button_frame_context(context, button, state); if (ABS(e->xmotion.x_root - px) >= config_mouse_threshold || ABS(e->xmotion.y_root - py) >= config_mouse_threshold) {