]> git.sur5r.net Git - i3/i3/blob - include/click.h
don’t use reversed identifiers for include guards (Thanks Markus)
[i3/i3] / include / click.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * click.c: Button press (mouse click) events.
8  *
9  */
10 #ifndef I3_CLICK_H
11 #define I3_CLICK_H
12
13 /**
14  * The button press X callback. This function determines whether the floating
15  * modifier is pressed and where the user clicked (decoration, border, inside
16  * the window).
17  *
18  * Then, route_click is called on the appropriate con.
19  *
20  */
21 int handle_button_press(xcb_button_press_event_t *event);
22
23 #endif