handle configure notify events
[dana/dcompmgr.git] / screen.h
1 #ifndef dc__screen_h
2 #define dc__screen_h
3
4 #include <xcb/xcb.h>
5 #include <glib.h>
6 #include <sys/time.h>
7
8 struct d_window;
9 struct d_display;
10 struct d_list;
11
12 /* inherits from xcb_screen_t */
13 typedef struct d_screen {
14     xcb_screen_t      super;
15     int               ref;
16     struct d_display *dpy;
17     int               num;
18
19     xcb_window_t      selwin;  /* for the selection */
20     xcb_atom_t        selatom; /* ditto.. */
21
22     xcb_window_t      overlay;
23     struct d_window  *root;
24
25     struct timeval    next_repaint;
26     gboolean          need_repaint;
27
28     GHashTable       *winhash;
29     struct d_list    *stacking;
30     GHashTable       *plugin_data;
31
32     void (*screen_paint)(struct d_screen *sc);
33     void (*window_show)(struct d_window *w);
34     void (*window_hide)(struct d_window *w);
35     void (*window_become_zombie)(struct d_window *w);
36     void (*window_configure)(struct d_window *w, int x, int y,
37                              int width, int height, int border_width);
38 } d_screen_t;
39
40 d_screen_t* screen_new(struct d_display *dpy, int num, xcb_screen_t *xcb);
41
42 void screen_ref(d_screen_t *sc);
43 void screen_unref(d_screen_t *sc);
44
45 /*! Tries to register on the screen given by @sc.  If it succeeds, it fills
46     in @sc and returns TRUE, otherwise it returns FALSE.
47 */
48 gboolean screen_register(d_screen_t *sc);
49
50 struct d_window* screen_add_window(d_screen_t *sc, xcb_window_t wid);
51 void screen_remove_window(d_screen_t *sc, struct d_window *w);
52
53 struct d_window* screen_find_window(d_screen_t *sc, xcb_window_t id);
54
55 void screen_stacking_add(d_screen_t *sc, struct d_window *w);
56 void screen_stacking_remove(d_screen_t *sc, struct d_window *w);
57 void screen_stacking_move_above(d_screen_t *sc, struct d_window *w,
58                                 struct d_window *above);
59
60 void screen_setup_default_functions(d_screen_t *sc);
61
62 void  screen_add_plugin_data(d_screen_t *sc, const char *key, void *data);
63 void* screen_find_plugin_data(d_screen_t *sc, const char *key);
64 void  screen_remove_plugin_data(d_screen_t *sc, const char *key);
65
66 void screen_refresh(d_screen_t *sc);
67
68 #endif