X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=event.c;h=1454b0b767fd243ea8efe045ce8cd973ebe5bbf6;hb=154497541d1378d3aded02df06029de94d8af586;hp=1da9a6ba3ffd4d0d2d865135c597022cd0d5dcde;hpb=ff957d1eaca73800e59f640351dce35e3ab67f9e;p=dwm.git diff --git a/event.c b/event.c index 1da9a6b..1454b0b 100644 --- a/event.c +++ b/event.c @@ -135,15 +135,19 @@ buttonpress(XEvent *e) { else toggleview(buf); } + else if(ev->button == Button4) + shiftview("-1"); + else if(ev->button == Button5) + shiftview("1"); return; } } - if(ev->x < x + blw) - switch(ev->button) { - case Button1: - setlayout(NULL); - break; - } + if(ev->x < x + blw && ev->button == Button1) + setlayout(NULL); + else if(ev->button == Button4) + focusclient("-1"); + else if(ev->button == Button5) + focusclient("1"); } else if((c = getclient(ev->window))) { focus(c); @@ -225,19 +229,6 @@ configurenotify(XEvent *e) { } static void -createnotify(XEvent *e) { - static XWindowAttributes wa; - XCreateWindowEvent *ev = &e->xcreatewindow; - - if(!XGetWindowAttributes(dpy, ev->window, &wa)) - return; - if(wa.override_redirect) - return; - if(!getclient(ev->window) && (wa.map_state == IsViewable)) - manage(ev->window, &wa); -} - -static void destroynotify(XEvent *e) { Client *c; XDestroyWindowEvent *ev = &e->xdestroywindow; @@ -363,7 +354,6 @@ void (*handler[LASTEvent]) (XEvent *) = { [ButtonPress] = buttonpress, [ConfigureRequest] = configurerequest, [ConfigureNotify] = configurenotify, -/* [CreateNotify] = createnotify, */ [DestroyNotify] = destroynotify, [EnterNotify] = enternotify, [LeaveNotify] = leavenotify,