Allow clicking and mousewheeling on the battery panel

This commit is the same as vimishor's original [*] except that I have
added middle-click and up/down mousewheel actions. In order to fix a
ftbs I also added guards to panel.c, panel.h & tint.c

The following configuration settings have been created :-

battery_lclick_command
battery_mclick_command
battery_rclick_command
battery_uwheel_command
battery_dwheel_command

[*] c78732c46a
This commit is contained in:
berkley4
2015-07-13 04:16:02 +01:00
parent e84d963ab6
commit fd78e6d886
6 changed files with 124 additions and 0 deletions

View File

@@ -456,6 +456,18 @@ int tint2_handles_click(Panel* panel, XButtonEvent* e)
else
return 0;
}
#ifdef ENABLE_BATTERY
if (click_battery(panel, e->x, e->y)) {
if ( (e->button == 1 && battery_lclick_command) ||
(e->button == 2 && battery_mclick_command) ||
(e->button == 3 && battery_rclick_command) ||
(e->button == 4 && battery_uwheel_command) ||
(e->button == 5 && battery_dwheel_command) )
return 1;
else
return 0;
}
#endif
return 0;
}
@@ -603,6 +615,16 @@ void event_button_release (XEvent *e)
return;
}
#ifdef ENABLE_BATTERY
if (click_battery(panel, e->xbutton.x, e->xbutton.y)) {
battery_action(e->xbutton.button);
if (panel_layer == BOTTOM_LAYER)
XLowerWindow (server.dsp, panel->main_win);
task_drag = 0;
return;
}
#endif
if (e->xbutton.button == 1 && click_launcher(panel, e->xbutton.x, e->xbutton.y)) {
LauncherIcon *icon = click_launcher_icon(panel, e->xbutton.x, e->xbutton.y);
if (icon) {