summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar akokshar@redhat.com <akokshar@redhat.com>2017-08-29 11:19:43 +0200
committerLibravatar akokshar@redhat.com <akokshar@redhat.com>2017-08-29 11:19:43 +0200
commit65022e1cbf0ccf8764dcef7e2a738feb3331deeb (patch)
tree2b08e4aa1a186ffe3cd990887ad18322756bbfc6 /include
parentMerge pull request #1247 from clarcharr/master (diff)
downloadsway-65022e1cbf0ccf8764dcef7e2a738feb3331deeb.tar.gz
sway-65022e1cbf0ccf8764dcef7e2a738feb3331deeb.tar.zst
sway-65022e1cbf0ccf8764dcef7e2a738feb3331deeb.zip
click_events as documented at https://i3wm.org/docs/i3bar-protocol.html
Diffstat (limited to 'include')
-rw-r--r--include/swaybar/bar.h1
-rw-r--r--include/swaybar/status_line.h10
2 files changed, 11 insertions, 0 deletions
diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h
index 010e1f84..50d36e76 100644
--- a/include/swaybar/bar.h
+++ b/include/swaybar/bar.h
@@ -14,6 +14,7 @@ struct bar {
14 int ipc_event_socketfd; 14 int ipc_event_socketfd;
15 int ipc_socketfd; 15 int ipc_socketfd;
16 int status_read_fd; 16 int status_read_fd;
17 int status_write_fd;
17 pid_t status_command_pid; 18 pid_t status_command_pid;
18}; 19};
19 20
diff --git a/include/swaybar/status_line.h b/include/swaybar/status_line.h
index 9b77e8a7..0664ddee 100644
--- a/include/swaybar/status_line.h
+++ b/include/swaybar/status_line.h
@@ -13,6 +13,7 @@ struct status_line {
13 list_t *block_line; 13 list_t *block_line;
14 const char *text_line; 14 const char *text_line;
15 command_protocol protocol; 15 command_protocol protocol;
16 bool click_events;
16}; 17};
17 18
18struct status_block { 19struct status_block {
@@ -31,6 +32,10 @@ struct status_block {
31 int border_bottom; 32 int border_bottom;
32 int border_left; 33 int border_left;
33 int border_right; 34 int border_right;
35
36 // Set during rendering
37 int x;
38 int width;
34}; 39};
35 40
36/** 41/**
@@ -44,6 +49,11 @@ struct status_line *init_status_line();
44bool handle_status_line(struct bar *bar); 49bool handle_status_line(struct bar *bar);
45 50
46/** 51/**
52 * Handle mouse clicks.
53 */
54bool status_line_mouse_event(struct bar *bar, int x, int y, uint32_t button);
55
56/**
47 * Free status line struct. 57 * Free status line struct.
48 */ 58 */
49void free_status_line(struct status_line *line); 59void free_status_line(struct status_line *line);