Mercurial > dwm-meillo
changeset 399:74739798b0b2
simplified buttonpress
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Fri, 01 Sep 2006 15:31:59 +0200 (2006-09-01) |
parents | 9c703e528e58 |
children | 052657ff2e7b |
files | event.c |
diffstat | 1 files changed, 12 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- a/event.c Fri Sep 01 10:32:50 2006 +0200 +++ b/event.c Fri Sep 01 15:31:59 2006 +0200 @@ -109,19 +109,17 @@ for(a.i = 0; a.i < ntags; a.i++) { x += textw(tags[a.i]); if(ev->x < x) { - switch(ev->button) { - case Button1: + if(ev->button == Button1) { if(ev->state & MODKEY) tag(&a); else view(&a); - break; - case Button3: + } + else if(ev->button == Button3) { if(ev->state & MODKEY) toggletag(&a); else toggleview(&a); - break; } return; } @@ -133,26 +131,17 @@ } else if((c = getclient(ev->window))) { focus(c); - if(CLEANMASK(ev->state) != MODKEY) + if(c->ismax || CLEANMASK(ev->state) != MODKEY) return; - switch(ev->button) { - default: - break; - case Button1: - if(!c->ismax && (arrange == dofloat || c->isfloat)) { - restack(c); - movemouse(c); - } - break; - case Button2: + if((ev->button == Button1) && ((arrange == dofloat) || c->isfloat)) { + restack(c); + movemouse(c); + } + else if(ev->button == Button2) zoom(NULL); - break; - case Button3: - if(!c->ismax && (arrange == dofloat || c->isfloat)) { - restack(c); - resizemouse(c); - } - break; + else if(ev->button == Button3 && ((arrange == dofloat) || c->isfloat)) { + restack(c); + resizemouse(c); } } }