aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/bar.c
diff options
context:
space:
mode:
authorLibravatar David Eklov <david.eklov@gmail.com>2016-07-12 22:14:20 -0500
committerLibravatar David Eklov <david.eklov@gmail.com>2016-07-15 19:14:31 -0500
commite38d6b94b890b473141fb0d1cd3f4b3203ea7d81 (patch)
tree668520fe97250c4274c3749b7ffb870a3063e87f /swaybar/bar.c
parentEnable windows to register to get notified when the mouse wheel is scrolled (diff)
downloadsway-e38d6b94b890b473141fb0d1cd3f4b3203ea7d81.tar.gz
sway-e38d6b94b890b473141fb0d1cd3f4b3203ea7d81.tar.zst
sway-e38d6b94b890b473141fb0d1cd3f4b3203ea7d81.zip
Change workspace when mouse wheel is scrolled while hovering over the bar
Diffstat (limited to 'swaybar/bar.c')
-rw-r--r--swaybar/bar.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c
index c0aa85c7..82e136e4 100644
--- a/swaybar/bar.c
+++ b/swaybar/bar.c
@@ -89,6 +89,13 @@ static void mouse_button_notify(struct window *window, int x, int y, uint32_t bu
89 } 89 }
90} 90}
91 91
92static void mouse_scroll_notify(struct window *window, enum scroll_direction direction) {
93 sway_log(L_DEBUG, "Mouse wheel scrolled %s", direction == SCROLL_UP ? "up" : "down");
94
95 const char *workspace_name = direction == SCROLL_UP ? "prev_on_output" : "next_on_output";
96 ipc_send_workspace_command(workspace_name);
97}
98
92void bar_setup(struct bar *bar, const char *socket_path, const char *bar_id) { 99void bar_setup(struct bar *bar, const char *socket_path, const char *bar_id) {
93 /* initialize bar with default values */ 100 /* initialize bar with default values */
94 bar_init(bar); 101 bar_init(bar);
@@ -123,8 +130,9 @@ void bar_setup(struct bar *bar, const char *socket_path, const char *bar_id) {
123 /* set font */ 130 /* set font */
124 bar_output->window->font = bar->config->font; 131 bar_output->window->font = bar->config->font;
125 132
126 /* set font */ 133 /* set mouse event callbacks */
127 bar_output->window->pointer_input.notify_button = mouse_button_notify; 134 bar_output->window->pointer_input.notify_button = mouse_button_notify;
135 bar_output->window->pointer_input.notify_scroll = mouse_scroll_notify;
128 136
129 /* set window height */ 137 /* set window height */
130 set_window_height(bar_output->window, bar->config->height); 138 set_window_height(bar_output->window, bar->config->height);