Allow for multiple actions with same button

Adds ability to write multiple cmds if there are overlapping areas with the same button
This commit is contained in:
rootcoma 2014-08-07 02:12:59 -07:00
parent 1a1caf7268
commit cceba87770

16
bar.c
View File

@ -214,14 +214,14 @@ set_attribute (const char modifier, const char attribute)
} }
area_t * void
area_get (xcb_window_t win, const int x, const int button) area_get (xcb_window_t win, const int x, const int button)
{ {
for (int i = 0; i < astack.pos; i++) for (int i = 0; i < astack.pos; i++)
if (astack.slot[i].window == win && x > astack.slot[i].begin && x < astack.slot[i].end && button == astack.slot[i].button) if (astack.slot[i].window == win && x > astack.slot[i].begin && x < astack.slot[i].end && button == astack.slot[i].button) {
return &astack.slot[i]; write(STDOUT_FILENO, astack.slot[i].cmd, strlen(astack.slot[i].cmd));
write(STDOUT_FILENO, "\n", 1);
return NULL; }
} }
int int
@ -1177,12 +1177,8 @@ main (int argc, char **argv)
case XCB_BUTTON_PRESS: case XCB_BUTTON_PRESS:
press_ev = (xcb_button_press_event_t *)ev; press_ev = (xcb_button_press_event_t *)ev;
{ {
area_t *area = area_get(press_ev->event, press_ev->event_x, press_ev->detail);
/* Respond to the click */ /* Respond to the click */
if (area) { area_get(press_ev->event, press_ev->event_x, press_ev->detail);
write(STDOUT_FILENO, area->cmd, strlen(area->cmd));
write(STDOUT_FILENO, "\n", 1);
}
} }
break; break;
} }