super fading
[dana/dcompmgr.git] / screen.c
index ada1b4f..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)
@@ -37,7 +42,6 @@ screen_new(struct d_display *dpy, int num, xcb_screen_t *xcb)
     sc->ref = 1;
     sc->dpy = dpy;
     sc->num = num;
-    sc->root = NULL;
 
     gettimeofday(&sc->next_repaint, NULL);
     sc->need_repaint = TRUE;
@@ -45,9 +49,7 @@ screen_new(struct d_display *dpy, int num, xcb_screen_t *xcb)
     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);
+    sc->plugin_data = list_new();
 
     return sc;
 }
@@ -62,12 +64,18 @@ void
 screen_unref(d_screen_t *sc)
 {
     if (sc && --sc->ref == 0) {
-        if (sc->root)
-            screen_remove_window(sc, sc->root);
+        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);
-        g_hash_table_unref(sc->plugin_data);
+        list_unref(sc->plugin_data);
         free(sc);
     }
 }
@@ -118,6 +126,7 @@ screen_register(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;
@@ -127,6 +136,7 @@ screen_register(d_screen_t *sc)
             ret = FALSE;
         }
     }
+    g_free(arep);
 
     xcb_ungrab_server(sc->dpy->conn);
     xcb_flush(sc->dpy->conn);
@@ -138,7 +148,6 @@ 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;
@@ -146,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,
@@ -169,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;
@@ -178,9 +209,41 @@ screen_init(d_screen_t *sc)
     xcb_change_window_attributes(sc->dpy->conn, sc->super.root,
                                  XCB_CW_EVENT_MASK, &mask);
 
+    screen_update_root_pixmap(sc);
+
     return TRUE;
 }
 
+void
+screen_update_root_pixmap(d_screen_t *sc)
+{
+    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;
+}
+
 d_window_t*
 screen_add_window(d_screen_t *sc, xcb_window_t wid)
 {
@@ -189,7 +252,9 @@ screen_add_window(d_screen_t *sc, xcb_window_t wid)
     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;
 }
 
@@ -199,8 +264,6 @@ screen_add_existing_windows(d_screen_t *sc)
     xcb_query_tree_cookie_t ck;
     xcb_query_tree_reply_t *rep;
 
-    sc->root = screen_add_window(sc, sc->super.root);
-
     ck = xcb_query_tree(sc->dpy->conn, sc->super.root);
     rep = xcb_query_tree_reply(sc->dpy->conn, ck, NULL);
     if (rep) {
@@ -217,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);
 }
 
@@ -263,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;
 }
 
@@ -288,6 +351,19 @@ screen_stacking_move_above(d_screen_t *sc, struct d_window *w,
     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)
 {
@@ -304,29 +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_configure = window_configure;
+    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)
+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;
 }