super fading
[dana/dcompmgr.git] / screen.c
index 55ee082..af7772d 100644 (file)
--- a/screen.c
+++ b/screen.c
@@ -1,5 +1,8 @@
+#include "efence.h"
+
 #include "screen.h"
 #include "display.h"
+#include "plugin.h"
 #include "list.h"
 #include "time.h"
 #include "window.h"
@@ -8,9 +11,11 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <xcb/composite.h>
+#include <xcb/xfixes.h>
 
 #define ROOT_MASK      (XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | \
-                        XCB_EVENT_MASK_STRUCTURE_NOTIFY)
+                        XCB_EVENT_MASK_STRUCTURE_NOTIFY | \
+                        XCB_EVENT_MASK_PROPERTY_CHANGE)
 
 #define SELECTION_MASK (XCB_EVENT_MASK_STRUCTURE_NOTIFY | \
                         XCB_EVENT_MASK_PROPERTY_CHANGE)
@@ -20,8 +25,63 @@ static xcb_timestamp_t screen_timestamp(d_screen_t *sc);
 static void screen_add_existing_windows(d_screen_t *sc);
 static void screen_set_next_repaint(d_screen_t *sc);
 
+static guint
+xcb_window_hash(xcb_window_t *w) { return *w; }
+
+static gboolean
+xcb_window_equal(xcb_window_t *w1, xcb_window_t *w2) { return *w1 == *w2; }
+
+
+d_screen_t*
+screen_new(struct d_display *dpy, int num, xcb_screen_t *xcb)
+{
+    d_screen_t *sc;
+
+    sc = malloc(sizeof(d_screen_t));
+    sc->super = *xcb;
+    sc->ref = 1;
+    sc->dpy = dpy;
+    sc->num = num;
+
+    gettimeofday(&sc->next_repaint, NULL);
+    sc->need_repaint = TRUE;
+
+    sc->winhash = g_hash_table_new((GHashFunc)xcb_window_hash,
+                                   (GEqualFunc)xcb_window_equal);
+    sc->stacking = list_new();
+    sc->plugin_data = list_new();
+
+    return sc;
+}
+
+void
+screen_ref(d_screen_t *sc)
+{
+    ++sc->ref;
+}
+
+void
+screen_unref(d_screen_t *sc)
+{
+    if (sc && --sc->ref == 0) {
+        d_list_it_t *it, *next;
+
+        /* clean up pending requests */
+        screen_get_root_pixmap(sc);
+
+        g_hash_table_unref(sc->winhash);
+        for (it = list_top(sc->stacking); it; it = next) {
+            next = it->next;
+            window_unref(it->data);
+        }
+        list_unref(sc->stacking);
+        list_unref(sc->plugin_data);
+        free(sc);
+    }
+}
+
 gboolean
-screen_register(struct d_display *dpy, int num, d_screen_t *sc)
+screen_register(d_screen_t *sc)
 {
     char *name;
     xcb_window_t w;
@@ -32,8 +92,6 @@ screen_register(struct d_display *dpy, int num, d_screen_t *sc)
     uint32_t event_mask;
     gboolean taken, ret;
 
-    sc->dpy = dpy;
-    sc->num = num;
     w = xcb_generate_id(sc->dpy->conn);
     event_mask = SELECTION_MASK;
     xcb_create_window(sc->dpy->conn, XCB_COPY_FROM_PARENT, w, sc->super.root,
@@ -68,6 +126,7 @@ screen_register(struct d_display *dpy, int num, d_screen_t *sc)
         sck = xcb_get_selection_owner(sc->dpy->conn, arep->atom);
         srep = xcb_get_selection_owner_reply(sc->dpy->conn, sck, NULL);
         taken = srep->owner == w;
+        free(srep);
         if (taken && screen_init(sc)) {
             screen_add_existing_windows(sc);
             ret = TRUE;
@@ -77,23 +136,18 @@ screen_register(struct d_display *dpy, int num, d_screen_t *sc)
             ret = FALSE;
         }
     }
+    g_free(arep);
 
     xcb_ungrab_server(sc->dpy->conn);
     xcb_flush(sc->dpy->conn);
+
     return ret;
 }
 
-static guint
-xcb_window_hash(xcb_window_t *w) { return *w; }
-
-static gboolean
-xcb_window_equal(xcb_window_t *w1, xcb_window_t *w2) { return *w1 == *w2; }
-
 static gboolean
 screen_init(d_screen_t *sc)
 {
     uint32_t mask;
-#if DO_COMP
     xcb_generic_error_t *err;
     xcb_void_cookie_t redir_ck;
     xcb_composite_get_overlay_window_cookie_t overlay_ck;
@@ -101,6 +155,11 @@ screen_init(d_screen_t *sc)
 
     redir_ck =
         xcb_composite_redirect_subwindows(sc->dpy->conn, sc->super.root,
+                                          XCB_COMPOSITE_REDIRECT_AUTOMATIC);
+
+#if 1
+    redir_ck =
+        xcb_composite_redirect_subwindows(sc->dpy->conn, sc->super.root,
                                           XCB_COMPOSITE_REDIRECT_MANUAL);
 
     overlay_ck = xcb_composite_get_overlay_window(sc->dpy->conn,
@@ -124,6 +183,23 @@ screen_init(d_screen_t *sc)
     }
     sc->overlay = overlay_rep->overlay_win;
     free(overlay_rep);
+
+    /* make the overlay window click-through */
+    if (sc->overlay) {
+        xcb_xfixes_region_t region;
+
+        region = xcb_generate_id(sc->dpy->conn);
+        xcb_xfixes_create_region(sc->dpy->conn, region, 0, NULL);
+        xcb_xfixes_set_window_shape_region(sc->dpy->conn,
+                                           sc->overlay,
+                                           XCB_SHAPE_SK_BOUNDING,
+                                           0, 0, XCB_NONE);
+        xcb_xfixes_set_window_shape_region(sc->dpy->conn,
+                                           sc->overlay,
+                                           XCB_SHAPE_SK_INPUT,
+                                           0, 0, region);
+        xcb_xfixes_destroy_region(sc->dpy->conn, region);
+    }
 #endif
 
     mask = SELECTION_MASK;
@@ -133,36 +209,53 @@ screen_init(d_screen_t *sc)
     xcb_change_window_attributes(sc->dpy->conn, sc->super.root,
                                  XCB_CW_EVENT_MASK, &mask);
 
-    gettimeofday(&sc->next_repaint, NULL);
-
-    sc->winhash = g_hash_table_new((GHashFunc)xcb_window_hash,
-                                   (GEqualFunc)xcb_window_equal);
-    sc->stacking = list_new();
-    sc->plugin_data = g_hash_table_new_full((GHashFunc)g_str_hash,
-                                            (GEqualFunc)g_str_equal,
-                                            g_free, NULL);
+    screen_update_root_pixmap(sc);
 
     return TRUE;
 }
 
-void screen_free(d_screen_t *sc)
+void
+screen_update_root_pixmap(d_screen_t *sc)
 {
-    g_hash_table_unref(sc->winhash);
-    list_unref(sc->stacking);
-    g_hash_table_unref(sc->plugin_data);
+    if (sc->root_pixmap_waiting) {
+        xcb_get_property_reply_t *rep;
+        rep = xcb_get_property_reply(sc->dpy->conn, sc->root_pixmap_ck[0],
+                                     NULL);
+        if (rep) free(rep);
+        rep = xcb_get_property_reply(sc->dpy->conn, sc->root_pixmap_ck[1],
+                                     NULL);
+        if (rep) free(rep);
+        rep = xcb_get_property_reply(sc->dpy->conn, sc->root_pixmap_ck[2],
+                                     NULL);
+        if (rep) free(rep);
+    }
+    sc->root_pixmap_ck[0] =
+        xcb_get_property_unchecked(sc->dpy->conn, FALSE,
+                                   sc->super.root, sc->dpy->a.xrootpmap_id,
+                                   sc->dpy->a.pixmap, 0, 1);
+    sc->root_pixmap_ck[1] =
+        xcb_get_property_unchecked(sc->dpy->conn, FALSE,
+                                   sc->super.root, sc->dpy->a.esetroot_pmap_id,
+                                   sc->dpy->a.pixmap, 0, 1);
+    sc->root_pixmap_ck[2] =
+        xcb_get_property_unchecked(sc->dpy->conn, FALSE,
+                                   sc->super.root, sc->dpy->a.xsetroot_id,
+                                   sc->dpy->a.pixmap, 0, 1);
+    sc->root_pixmap_waiting = TRUE;
 }
 
-void
+d_window_t*
 screen_add_window(d_screen_t *sc, xcb_window_t wid)
 {
     d_window_t *w;
 
-    /* XXX xgetwindowattributes - size and tings */
-
     w = window_new(wid, sc);
     g_hash_table_insert(sc->winhash, &w->id, w);
 
-    printf("screen added window 0x%x\n", w->id);
+    window_create_damage(w);
+
+    //printf("screen added window 0x%x\n", w->id);
+    return w;
 }
 
 static void
@@ -176,7 +269,6 @@ screen_add_existing_windows(d_screen_t *sc)
     if (rep) {
         xcb_window_iterator_t it;
 
-        printf("query\n");
         it = xcb_query_tree_children_iterator(rep);
         for (; it.rem; xcb_window_next(&it))
             screen_add_window(sc, *it.data);
@@ -188,10 +280,10 @@ screen_add_existing_windows(d_screen_t *sc)
 void
 screen_remove_window(d_screen_t *sc, struct d_window *w)
 {
-    printf("screen removed window 0x%x\n", w->id);
+    //printf("screen removed window 0x%x\n", w->id);
 
+    window_destroy_damage(w);
     g_hash_table_remove(sc->winhash, &w->id);
-    sc->window_become_zombie(w);
     window_unref(w);
 }
 
@@ -234,7 +326,7 @@ screen_timestamp(d_screen_t *sc)
             break;
         }
     }
-    printf("created timestamp %lu\n", (unsigned long) time);
+    //printf("created timestamp %lu\n", (unsigned long) time);
     return time;
 }
 
@@ -250,12 +342,35 @@ screen_stacking_remove(d_screen_t *sc, struct d_window *w)
     list_remove(sc->stacking, w);
 }
 
+void
+screen_stacking_move_above(d_screen_t *sc, struct d_window *w,
+                           struct d_window *above)
+{
+    d_list_it_t *wit = list_find(sc->stacking, w);
+    d_list_it_t *ait = list_find(sc->stacking, above);
+    list_move_before(sc->stacking, wit, ait);
+}
+
+void screen_stacking_move_to_top(d_screen_t *sc, struct d_window *w)
+{
+    d_list_it_t *wit = list_find(sc->stacking, w);
+    d_list_it_t *ait = list_top(sc->stacking);
+    list_move_before(sc->stacking, wit, ait);
+}
+
+void screen_stacking_move_to_bottom(d_screen_t *sc, struct d_window *w)
+{
+    d_list_it_t *wit = list_find(sc->stacking, w);
+    list_move_before(sc->stacking, wit, NULL);
+}
+
 static void
 screen_set_next_repaint(d_screen_t *sc)
 {
     gettimeofday(&sc->next_repaint, NULL);
     /* add time for the refresh rate (60 hz) */
     time_add(&sc->next_repaint, 1000000/60);
+    sc->need_repaint = FALSE;
 }
 
 void
@@ -265,24 +380,59 @@ screen_setup_default_functions(d_screen_t *sc)
     sc->window_show = window_show;
     sc->window_hide = window_hide;
     sc->window_become_zombie = window_become_zombie;
-
+    sc->window_zombie_dead = window_zombie_dead;
+    sc->window_move = window_move;
+    sc->window_resize = window_resize;
+    sc->window_reshape = window_reshape;
+    sc->window_opacity_change = window_opacity_change;
+    sc->screen_root_pixmap_change = screen_update_root_pixmap;
 }
 
 void
-screen_add_plugin_data(d_screen_t *sc, const char *key, void *data)
+screen_add_plugin_data(d_screen_t *sc, int id, void *data)
 {
-    char *skey = g_strdup(key);
-    g_hash_table_insert(sc->plugin_data, skey, data);
+    plugin_data_add(sc->plugin_data, id, data);
 }
 
 void*
-screen_find_plugin_data(d_screen_t *sc, const char *key)
+screen_find_plugin_data(d_screen_t *sc, int id)
 {
-    return g_hash_table_lookup(sc->plugin_data, key);
+    return plugin_data_find(sc->plugin_data, id);
 }
 
 void
-screen_remove_plugin_data(d_screen_t *sc, const char *key)
+screen_remove_plugin_data(d_screen_t *sc, int id)
 {
-    g_hash_table_remove(sc->plugin_data, key);
+    plugin_data_remove(sc->plugin_data, id);
+}
+
+void
+screen_refresh(d_screen_t *sc)
+{
+    sc->need_repaint = TRUE;
+    //printf("*** need repaint! ***\n");
+}
+
+xcb_pixmap_t
+screen_get_root_pixmap(d_screen_t *sc)
+{
+    if (sc->root_pixmap_waiting) {
+        xcb_get_property_reply_t *rep;
+        int i;
+
+        sc->root_pixmap = XCB_NONE;
+        for (i = 2; i >= 0; --i) {
+            rep = xcb_get_property_reply(sc->dpy->conn, sc->root_pixmap_ck[i],
+                                         NULL);
+            if (rep) {
+                if (rep->type == sc->dpy->a.pixmap && rep->length >= 1) {
+                    sc->root_pixmap =
+                        ((xcb_pixmap_t*)xcb_get_property_value(rep))[0];
+                    //printf("got root pixmap 0x%x\n", sc->root_pixmap);
+                }
+                free(rep);
+            }
+        }
+    }
+    return sc->root_pixmap;
 }