]> git.sur5r.net Git - i3/i3/blob - include/click.h
Merge branch 'release-4.16.1'
[i3/i3] / include / click.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * click.c: Button press (mouse click) events.
8  *
9  */
10 #pragma once
11
12 #include <config.h>
13
14 /**
15  * The button press X callback. This function determines whether the floating
16  * modifier is pressed and where the user clicked (decoration, border, inside
17  * the window).
18  *
19  * Then, route_click is called on the appropriate con.
20  *
21  */
22 int handle_button_press(xcb_button_press_event_t *event);