diff options
author | okan | 2013-11-01 14:07:19 +0000 |
---|---|---|
committer | okan | 2013-11-01 14:07:19 +0000 |
commit | e4b5901c10d212bdbb50b7a60bba17400c0cd04f (patch) | |
tree | 50c6d911c3adb18fe63e41ad03253245732a1538 /client.c | |
parent | db6a72259f627ccc7d656002c79d9420be7dfc3a (diff) | |
download | cwm-e4b5901c10d212bdbb50b7a60bba17400c0cd04f.tar.gz |
re-add support for WM_TAKE_FOCUS, and additionally this time only call
XSetInputFocus() for clients that have the InputHint; latter fix
discovered by Valery Masiutsin with a PoC patch - solves keyboard input
focus loss for java apps.
Diffstat (limited to '')
-rw-r--r-- | client.c | 27 |
1 files changed, 18 insertions, 9 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: client.c,v 1.142 2013/10/25 19:46:16 okan Exp $ + * $OpenBSD: client.c,v 1.143 2013/11/01 14:07:19 okan Exp $ */ #include <sys/param.h> @@ -99,17 +99,22 @@ client_init(Window win, struct screen_ctx *sc, int mapped) cc->geom.h = wattr.height; cc->colormap = wattr.colormap; + if ((wmhints = XGetWMHints(X_Dpy, cc->win)) != NULL) { + if (wmhints->flags & InputHint) { + if (wmhints->input == 1) + cc->flags |= CLIENT_INPUT; + } + } if (wattr.map_state != IsViewable) { client_placecalc(cc); client_move(cc); - if ((wmhints = XGetWMHints(X_Dpy, cc->win)) != NULL) { - if (wmhints->flags & StateHint) { - cc->state = wmhints->initial_state; - xu_set_wm_state(cc->win, cc->state); - } - XFree(wmhints); + if ((wmhints) && (wmhints->flags & StateHint)) { + cc->state = wmhints->initial_state; + xu_set_wm_state(cc->win, cc->state); } } + if (wmhints) + XFree(wmhints); client_draw_border(cc); if (xu_get_wm_state(cc->win, &state) < 0) @@ -208,8 +213,12 @@ client_setactive(struct client_ctx *cc, int fg) if (fg) { XInstallColormap(X_Dpy, cc->colormap); - XSetInputFocus(X_Dpy, cc->win, - RevertToPointerRoot, CurrentTime); + if (cc->flags & CLIENT_INPUT) { + XSetInputFocus(X_Dpy, cc->win, + RevertToPointerRoot, CurrentTime); + } + if (cc->xproto & _WM_TAKE_FOCUS) + client_msg(cc, cwmh[WM_TAKE_FOCUS]); conf_grab_mouse(cc->win); /* * If we're in the middle of alt-tabbing, don't change |