]> git.sur5r.net Git - i3/i3/blob - include/xinerama.h
Implement Xinerama (workspaces have a specific screen)
[i3/i3] / include / xinerama.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include "data.h"
12
13 #ifndef _XINERAMA_H
14 #define _XINERAMA_H
15
16 TAILQ_HEAD(screens_head, Screen);
17 extern struct screens_head virtual_screens;
18
19 void initialize_xinerama(xcb_connection_t *conn);
20 i3Screen *get_screen_at(int x, int y);
21 i3Screen *get_screen_containing(int x, int y);
22
23 #endif