]> git.sur5r.net Git - i3/i3/blobdiff - include/xinerama.h
ipc/parser: commands can now return custom JSON replies
[i3/i3] / include / xinerama.h
index b8a591c13e141194e810cd4bb63b33c179b354a4..600b77f338d44068bcb775d36792d132a99e76eb 100644 (file)
@@ -3,7 +3,7 @@
  *
  * i3 - an improved dynamic tiling window manager
  *
- * (c) 2009 Michael Stapelberg and contributors
+ * © 2009-2010 Michael Stapelberg and contributors
  *
  * See file LICENSE for license information.
  *
 #ifndef _XINERAMA_H
 #define _XINERAMA_H
 
-TAILQ_HEAD(screens_head, Screen);
-extern struct screens_head *virtual_screens;
-
-void initialize_xinerama(xcb_connection_t *conn);
-void xinerama_requery_screens(xcb_connection_t *conn);
-i3Screen *get_screen_at(int x, int y, struct screens_head *screenlist);
-i3Screen *get_screen_containing(int x, int y);
-i3Screen *get_screen_most(direction_t direction);
+/**
+ * We have just established a connection to the X server and need the initial
+ * Xinerama information to setup workspaces for each screen.
+ *
+ */
+void xinerama_init();
 
 #endif