From 65fe4e8933ff4916fe40df3027c495f0e19f17a3 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 4 Jan 2008 13:04:34 +0100 Subject: [PATCH] add support for right/left statusbar position and clicks --- widgets/tasklist.c | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/widgets/tasklist.c b/widgets/tasklist.c index 4cd733bb..0477a891 100644 --- a/widgets/tasklist.c +++ b/widgets/tasklist.c @@ -150,22 +150,27 @@ tasklist_button_press(Widget *widget, XButtonPressedEvent *ev) box_width = widget->width / n; if(ev->button == Button1 && CLEANMASK(ev->state) == NoSymbol) + { if(widget->statusbar->position == BarTop || widget->statusbar->position == BarBot) - { ci = (ev->x - widget->location) / box_width; + else if(widget->statusbar->position == BarRight) + ci = (ev->y - widget->location) / box_width; + else + ci = ((widget->statusbar->width - ev->y) - widget->location) / box_width; - /* found first visible client */ - for(c = globalconf.clients; - c && !ISVISIBLE_ON_TB(c, widget->statusbar->screen); - c = c->next); - /* found ci-th visible client */ - for(; c && i < ci; c = c->next) - if(ISVISIBLE_ON_TB(c, widget->statusbar->screen)) - i++; + /* found first visible client */ + for(c = globalconf.clients; + c && !ISVISIBLE_ON_TB(c, widget->statusbar->screen); + c = c->next); + /* found ci-th visible client */ + for(; c && i < ci; c = c->next) + if(ISVISIBLE_ON_TB(c, widget->statusbar->screen)) + i++; - focus(c, True, widget->statusbar->screen); - } + focus(c, True, widget->statusbar->screen); + return; + } } for(b = widget->buttons; b; b = b->next)