]> git.sur5r.net Git - i3/i3/blob - include/click.h
Merge branch 'tree' into next
[i3/i3] / include / click.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2011 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #ifndef _CLICK_H
12 #define _CLICK_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);
23
24 #endif