Add listener interfaces for output and input_device objects.
diff --git a/flower.c b/flower.c
index e944532..d3a21df 100644
--- a/flower.c
+++ b/flower.c
@@ -111,25 +111,31 @@
 };
 
 static void
-move_flower(struct flower *flower)
+handle_acknowledge(void *data,
+			  struct wl_compositor *compositor,
+			  uint32_t key, uint32_t frame)
 {
-	wl_surface_map(flower->surface, 
-		       flower->x + cos(flower->i / 31.0) * 400 - flower->width / 2,
-		       flower->y + sin(flower->i / 27.0) * 300 - flower->height / 2,
-		       flower->width, flower->height);
-	flower->i++;
-	wl_compositor_commit(flower->compositor, 0);
 }
 
 static void
-event_handler(struct wl_display *display,
-	      uint32_t object, uint32_t opcode,
-	      uint32_t size, uint32_t *p, void *data)
+handle_frame(void *data,
+		    struct wl_compositor *compositor,
+		    uint32_t frame, uint32_t timestamp)
 {
-	if (object == 2 && opcode == 1)
-		move_flower(data);
+	struct flower *flower = data;
+
+	wl_surface_map(flower->surface, 
+		       flower->x + cos(timestamp / 400.0) * 400 - flower->width / 2,
+		       flower->y + sin(timestamp / 320.0) * 300 - flower->height / 2,
+		       flower->width, flower->height);
+	wl_compositor_commit(flower->compositor, 0);
 }
 
+static const struct wl_compositor_listener compositor_listener = {
+	handle_acknowledge,
+	handle_frame,
+};
+
 int main(int argc, char *argv[])
 {
 	struct wl_display *display;
@@ -177,8 +183,11 @@
 	wl_surface_attach(flower.surface,
 			  buffer->name, flower.width, flower.height,
 			  buffer->stride, visual);
-	wl_display_set_event_handler(display, event_handler, &flower);
-	move_flower(&flower);
+
+	wl_compositor_add_listener(flower.compositor,
+				   &compositor_listener, &flower);
+
+	wl_compositor_commit(flower.compositor, 0);
 
 	g_main_loop_run(loop);
 
diff --git a/gears.c b/gears.c
index 4bf5475..276c339 100644
--- a/gears.c
+++ b/gears.c
@@ -299,7 +299,9 @@
 }
 
 static void
-acknowledge_handler(struct window *window, uint32_t key, void *data)
+handle_acknowledge(void *data,
+		   struct wl_compositor *compositor,
+		   uint32_t key, uint32_t frame)
 {
 	struct gears *gears = data;
 
@@ -313,7 +315,9 @@
 }
 
 static void
-frame_handler(struct window *window, uint32_t frame, uint32_t timestamp, void *data)
+handle_frame(void *data,
+	     struct wl_compositor *compositor,
+	     uint32_t frame, uint32_t timestamp)
 {
 	struct gears *gears = data;
 
@@ -323,9 +327,14 @@
 
 	wl_compositor_commit(gears->compositor, 0);
 
-	gears->angle += 1;
+	gears->angle = timestamp / 20.0;
 }
 
+static const struct wl_compositor_listener compositor_listener = {
+	handle_acknowledge,
+	handle_frame,
+};
+
 static struct gears *
 gears_create(struct wl_display *display, int fd)
 {
@@ -384,11 +393,12 @@
 
 	draw_gears(gears);
 
-	frame_handler(gears->window, 0, 0, gears);
+	handle_frame(gears, gears->compositor, 0, 0);
 
 	window_set_resize_handler(gears->window, resize_handler, gears);
-	window_set_frame_handler(gears->window, frame_handler, gears);
-	window_set_acknowledge_handler(gears->window, acknowledge_handler, gears);
+
+	wl_compositor_add_listener(gears->compositor,
+				   &compositor_listener, gears);
 
 	return gears;
 }
diff --git a/terminal.c b/terminal.c
index 1010836..61d5697 100644
--- a/terminal.c
+++ b/terminal.c
@@ -397,12 +397,15 @@
 }
 
 static void
-acknowledge_handler(struct window *window, uint32_t key, void *data)
+handle_acknowledge(void *data,
+		   struct wl_compositor *compositor,
+		   uint32_t key, uint32_t frame)
 {
 	struct terminal *terminal = data;
 
 	terminal->redraw_scheduled = 0;
-	buffer_destroy(terminal->buffer, terminal->fd);
+	if (key == 0)
+		buffer_destroy(terminal->buffer, terminal->fd);
 
 	if (terminal->redraw_pending) {
 		terminal->redraw_pending = 0;
@@ -410,6 +413,18 @@
 	}
 }
 
+static void
+handle_frame(void *data,
+	     struct wl_compositor *compositor,
+	     uint32_t frame, uint32_t timestamp)
+{
+}
+
+static const struct wl_compositor_listener compositor_listener = {
+	handle_acknowledge,
+	handle_frame,
+};
+
 struct key {
 	int code[4];
 } evdev_keymap[] = {
@@ -549,7 +564,10 @@
 	terminal->compositor = wl_display_get_compositor(display);
 	window_set_fullscreen(terminal->window, terminal->fullscreen);
 	window_set_resize_handler(terminal->window, resize_handler, terminal);
-	window_set_acknowledge_handler(terminal->window, acknowledge_handler, terminal);
+
+	wl_compositor_add_listener(terminal->compositor,
+				   &compositor_listener, terminal);
+
 	window_set_key_handler(terminal->window, key_handler, terminal);
 
 	terminal_draw(terminal);
diff --git a/wayland-client.c b/wayland-client.c
index 3d82c50..5412dcf 100644
--- a/wayland-client.c
+++ b/wayland-client.c
@@ -44,31 +44,26 @@
 	uint32_t id;
 	char *interface;
 	uint32_t version;
+	struct wl_proxy *proxy;
+	struct wl_list link;
+};
+
+struct wl_global_listener {
+	wl_display_global_func_t handler;
+	void *data;
+	struct wl_list link;
+};
+
+struct wl_listener {
+	void (**implementation)(void);
+	void *data;
 	struct wl_list link;
 };
 
 struct wl_proxy {
 	struct wl_object base;
 	struct wl_display *display;
-};
-
-struct wl_display {
-	struct wl_proxy proxy;
-	struct wl_connection *connection;
-	int fd;
-	uint32_t id, id_count, next_range;
-	uint32_t mask;
-	struct wl_hash *objects;
-	struct wl_list global_list;
-	struct wl_list visual_list;
-
-	wl_display_update_func_t update;
-	void *update_data;
-
-	wl_display_event_func_t event_handler;
-	void *event_handler_data;
-
-	struct wl_output *output;
+	struct wl_list listener_list;
 };
 
 struct wl_compositor {
@@ -81,14 +76,42 @@
 
 struct wl_visual {
 	struct wl_proxy proxy;
-	struct wl_list link;
 };
 
 struct wl_output {
 	struct wl_proxy proxy;
+	struct wl_listener listener;
 	int32_t width, height;
 };
 
+struct wl_input_device {
+	struct wl_proxy proxy;
+};
+
+struct wl_display {
+	struct wl_proxy proxy;
+	struct wl_connection *connection;
+	int fd;
+	uint32_t id, id_count, next_range;
+	uint32_t mask;
+	struct wl_hash *objects;
+	struct wl_list global_list;
+	struct wl_listener listener;
+	struct wl_list global_listener_list;
+
+	struct wl_visual *argb_visual;
+	struct wl_visual *premultiplied_argb_visual;
+	struct wl_visual *rgb_visual;
+
+	wl_display_update_func_t update;
+	void *update_data;
+
+	wl_display_global_func_t global_handler;
+	void *global_handler_data;
+
+	struct wl_compositor *compositor;
+};
+
 static int
 connection_update(struct wl_connection *connection,
 		  uint32_t mask, void *data)
@@ -103,46 +126,117 @@
 	return 0;
 }
 
-static void
-output_handle_geometry(struct wl_display *display,
-		       struct wl_output *output, int32_t width, int32_t height)
+WL_EXPORT int
+wl_object_implements(struct wl_object *object,
+		     const char *interface, int version)
 {
-	output->width = width;
-	output->height = height;
+	return strcmp(object->interface->name, interface) == 0 &&
+		object->interface->version >= version;
 }
 
-struct wl_output_listener {
-	void (*geometry)(struct wl_display *display,
-			 struct wl_output *output,
-			 int32_t width, int32_t height);
-};
-
-static const struct wl_output_listener output_listener = {
-	output_handle_geometry
-};
-
-static void
-add_output(struct wl_display *display, struct wl_global *global)
+WL_EXPORT struct wl_global_listener *
+wl_display_add_global_listener(struct wl_display *display,
+			       wl_display_global_func_t handler, void *data)
 {
-	struct wl_output *output;
+	struct wl_global_listener *listener;
+	struct wl_global *global;
 
-	output = malloc(sizeof *output);
-	if (output == NULL)
-		return;
+	listener = malloc(sizeof *listener);
+	if (listener == NULL)
+		return NULL;
 
-	output->proxy.base.interface = &wl_output_interface;
-	output->proxy.base.implementation = (void(**)(void)) &output_listener;
-	output->proxy.base.id = global->id;
-	output->proxy.display = display;
-	display->output = output;
-	wl_hash_insert(display->objects, &output->proxy.base);
+	listener->handler = handler;
+	listener->data = data;
+	wl_list_insert(display->global_listener_list.prev, &listener->link);
+
+	/* FIXME: Need a destructor for void *data? */
+
+	global = container_of(display->global_list.next,
+			      struct wl_global, link);
+	while (&global->link != &display->global_list) {
+		if (global->proxy != NULL)
+			(*handler)(display, &global->proxy->base, data);
+
+		global = container_of(global->link.next,
+				      struct wl_global, link);
+	}
+
+	return listener;
 }
 
 WL_EXPORT void
-wl_display_get_geometry(struct wl_display *display, int32_t *width, int32_t *height)
+wl_display_remove_global_listener(struct wl_display *display,
+				  struct wl_global_listener *listener)
 {
-	*width = display->output->width;
-	*height = display->output->height;
+	wl_list_remove(&listener->link);
+	free(listener);
+}
+
+static struct wl_proxy *
+wl_proxy_create_for_global(struct wl_display *display,
+			   struct wl_global *global,
+			   const struct wl_interface *interface)
+{
+	struct wl_proxy *proxy;
+	struct wl_global_listener *listener;
+
+	proxy = malloc(sizeof *proxy);
+	if (proxy == NULL)
+		return NULL;
+
+	proxy->base.interface = interface;
+	proxy->base.id = global->id;
+	proxy->display = display;
+	global->proxy = proxy;
+	wl_list_init(&proxy->listener_list);
+	wl_hash_insert(display->objects, &proxy->base);
+
+	listener = container_of(display->global_listener_list.next,
+				struct wl_global_listener, link);
+	while (&listener->link != &display->global_listener_list) {
+		(*listener->handler)(display, &proxy->base, listener->data);
+		listener = container_of(listener->link.next,
+					struct wl_global_listener, link);
+	}
+
+	return proxy;
+}
+
+static int
+wl_proxy_add_listener(struct wl_proxy *proxy, void (**implementation)(void), void *data)
+{
+	struct wl_listener *listener;
+
+	listener = malloc(sizeof *listener);
+	if (listener == NULL)
+		return -1;
+
+	listener->implementation = (void (**)(void)) implementation;
+	listener->data = data;
+	wl_list_insert(proxy->listener_list.prev, &listener->link);
+
+	return 0;
+}
+
+static void
+wl_proxy_marshal(struct wl_proxy *proxy, uint32_t opcode, ...)
+{
+	va_list ap;
+
+	va_start(ap, opcode);
+	wl_connection_vmarshal(proxy->display->connection,
+			       &proxy->base, opcode, ap,
+			       &proxy->base.interface->methods[opcode]);
+	va_end(ap);
+}
+
+WL_EXPORT int
+wl_output_add_listener(struct wl_output *output,
+		       const struct wl_output_listener *listener,
+		       void *data)
+{
+	return wl_proxy_add_listener(&output->proxy,
+				     (void (**)(void)) listener, data);
 }
 
 static void
@@ -150,66 +244,69 @@
 {
 	struct wl_visual *visual;
 
-	visual = malloc(sizeof *visual);
-	if (visual == NULL)
-		return;
-
-	visual->proxy.base.interface = &wl_visual_interface;
-	visual->proxy.base.id = global->id;
-	visual->proxy.base.implementation = NULL;
-	visual->proxy.display = display;
-	wl_list_insert(display->visual_list.prev, &visual->link);
-	wl_hash_insert(display->objects, &visual->proxy.base);
+	visual = (struct wl_visual *)
+		wl_proxy_create_for_global(display, global,
+					   &wl_visual_interface);
+	if (display->argb_visual == NULL)
+		display->argb_visual = visual;
+	else if (display->premultiplied_argb_visual == NULL)
+		display->premultiplied_argb_visual = visual;
+	else
+		display->rgb_visual = visual;
 }
 
 WL_EXPORT struct wl_visual *
 wl_display_get_argb_visual(struct wl_display *display)
 {
-	return container_of(display->visual_list.next,
-			    struct wl_visual, link);
+	return display->argb_visual;
 }
 
 WL_EXPORT struct wl_visual *
 wl_display_get_premultiplied_argb_visual(struct wl_display *display)
 {
-	return container_of(display->visual_list.next->next,
-			    struct wl_visual, link);
+	return display->premultiplied_argb_visual;
 }
 
 WL_EXPORT struct wl_visual *
 wl_display_get_rgb_visual(struct wl_display *display)
 {
-	/* FIXME: Where's cddar when you need it... */
+	return display->rgb_visual;
+}
 
-	return container_of(display->visual_list.next->next->next,
-			    struct wl_visual, link);
+WL_EXPORT int
+wl_input_device_add_listener(struct wl_input_device *input_device,
+			     const struct wl_input_device_listener *listener,
+			     void *data)
+{
+	return wl_proxy_add_listener(&input_device->proxy,
+				     (void (**)(void)) listener, data);
 }
 
 static void
-display_handle_invalid_object(struct wl_display *display,
-			      struct wl_object *object, uint32_t id)
+display_handle_invalid_object(void *data,
+			      struct wl_display *display, uint32_t id)
 {
 	fprintf(stderr, "sent request to invalid object\n");
 }
 			      
 static void
-display_handle_invalid_method(struct wl_display *display,
-			      struct wl_object *object,
+display_handle_invalid_method(void *data, 
+			      struct wl_display *display,
 			      uint32_t id, uint32_t opcode)
 {
 	fprintf(stderr, "sent invalid request opcode\n");
 }
 
 static void
-display_handle_no_memory(struct wl_display *display,
-			 struct wl_object *object)
+display_handle_no_memory(void *data,
+			 struct wl_display *display)
 {
 	fprintf(stderr, "server out of memory\n");
 }
 
 static void
-display_handle_global(struct wl_display *display,
-		      struct wl_object *object,
+display_handle_global(void *data,
+		      struct wl_display *display,
 		      uint32_t id, const char *interface, uint32_t version)
 {
 	struct wl_global *global;
@@ -222,32 +319,41 @@
 	global->interface = strdup(interface);
 	global->version = version;
 	wl_list_insert(display->global_list.prev, &global->link);
+
 	if (strcmp(global->interface, "display") == 0)
 		wl_hash_insert(display->objects, &display->proxy.base);
-	if (strcmp(global->interface, "visual") == 0)
+	else if (strcmp(global->interface, "compositor") == 0)
+		display->compositor = (struct wl_compositor *) 
+			wl_proxy_create_for_global(display, global,
+						   &wl_compositor_interface);
+	else if (strcmp(global->interface, "visual") == 0)
 		add_visual(display, global);
 	else if (strcmp(global->interface, "output") == 0)
-		add_output(display, global);
+		wl_proxy_create_for_global(display, global,
+					   &wl_output_interface);
+	else if (strcmp(global->interface, "input_device") == 0)
+		wl_proxy_create_for_global(display, global,
+					   &wl_input_device_interface);
 }
 
 static void
-display_handle_range(struct wl_display *display,
-		     struct wl_object *object, uint32_t range)
+display_handle_range(void *data,
+		     struct wl_display *display, uint32_t range)
 {
 	display->next_range = range;
 }
 
 struct wl_display_listener {
-	void (*invalid_object)(struct wl_display *display,
-			       struct wl_object *object, uint32_t id);
-	void (*invalid_method)(struct wl_display *display,
-			       struct wl_object *object,
+	void (*invalid_object)(void *data,
+			       struct wl_display *display, uint32_t id);
+	void (*invalid_method)(void *data, struct wl_display *display,
 			       uint32_t id, uint32_t opcode);
-	void (*no_memory)(struct wl_display *display, struct wl_object *object);
-	void (*global)(struct wl_display *display, struct wl_object *object,
+	void (*no_memory)(void *data,
+			  struct wl_display *display);
+	void (*global)(void *data, struct wl_display *display,
 		       uint32_t id, const char *interface, uint32_t version);
-	void (*range)(struct wl_display *display,
-		      struct wl_object *object, uint32_t range);
+	void (*range)(void *data,
+		      struct wl_display *display, uint32_t range);
 };
 
 static const struct wl_display_listener display_listener = {
@@ -289,12 +395,15 @@
 
 	display->objects = wl_hash_create();
 	wl_list_init(&display->global_list);
-	wl_list_init(&display->visual_list);
+	wl_list_init(&display->global_listener_list);
 
 	display->proxy.base.interface = &wl_display_interface;
-	display->proxy.base.implementation = (void(**)(void)) &display_listener;
 	display->proxy.base.id = 1;
 	display->proxy.display = display;
+	wl_list_init(&display->proxy.listener_list);
+
+	display->listener.implementation = (void(**)(void)) &display_listener;
+	wl_list_insert(display->proxy.listener_list.prev, &display->listener.link);
 
 	display->connection = wl_connection_create(display->fd,
 						   connection_update,
@@ -351,26 +460,37 @@
 	     uint32_t id, uint32_t opcode, uint32_t size)
 {
 	uint32_t p[32];
-	struct wl_object *object;
+	struct wl_listener *listener;
+	struct wl_proxy *proxy;
 
 	wl_connection_copy(display->connection, p, size);
 	if (id == 1)
-		object = &display->proxy.base;
+		proxy = &display->proxy;
 	else
-		object = wl_hash_lookup(display->objects, id);
+		proxy = (struct wl_proxy *) wl_hash_lookup(display->objects, id);
 
-	if (object != NULL)
-		wl_connection_demarshal(display->connection,
-					size,
-					display->objects,
-					object->implementation[opcode],
-					display,
-					object, 
-					&object->interface->events[opcode]);
-	else if (display->event_handler != NULL)
-		display->event_handler(display, id,
-				       opcode, size, p + 2,
-				       display->event_handler_data);
+	if (proxy != NULL) {
+		if (wl_list_empty(&proxy->listener_list)) {
+			printf("proxy found for object %d, opcode %d, but no listeners\n",
+			       id, opcode);
+		}
+
+		listener = container_of(proxy->listener_list.next,
+					struct wl_listener, link);
+		while (&listener->link != &proxy->listener_list) {
+
+			wl_connection_demarshal(display->connection,
+						size,
+						display->objects,
+						listener->implementation[opcode],
+						listener->data,
+						&proxy->base, 
+						&proxy->base.interface->events[opcode]);
+
+			listener = container_of(listener->link.next,
+						struct wl_listener, link);
+		}
+	}
 
 	wl_connection_consume(display->connection, size);
 }
@@ -403,16 +523,6 @@
 	}
 }
 
-WL_EXPORT void
-wl_display_set_event_handler(struct wl_display *display,
-			     wl_display_event_func_t handler,
-			     void *data)
-{
-	/* FIXME: This needs something more generic... */
-	display->event_handler = handler;
-	display->event_handler_data = data;
-}
-
 WL_EXPORT uint32_t
 wl_display_allocate_id(struct wl_display *display)
 {
@@ -435,32 +545,16 @@
 WL_EXPORT struct wl_compositor *
 wl_display_get_compositor(struct wl_display *display)
 {
-	struct wl_compositor *compositor;
-	uint32_t id;
-
-	id = wl_display_get_object_id(display, "compositor", 1);
-	if (id == 0)
-		return NULL;
-
-	compositor = malloc(sizeof *compositor);
-	compositor->proxy.base.interface = &wl_compositor_interface;
-	compositor->proxy.base.id = id;
-	compositor->proxy.display = display;
-
-	return compositor;
+	return display->compositor;
 }
 
-static void
-wl_proxy_marshal(struct wl_proxy *proxy, uint32_t opcode, ...)
+WL_EXPORT int
+wl_compositor_add_listener(struct wl_compositor *compositor,
+			   const struct wl_compositor_listener *listener,
+			   void *data)
 {
-	va_list ap;
-
-	va_start(ap, opcode);
-	wl_connection_vmarshal(proxy->display->connection,
-			       &proxy->base, opcode, ap,
-			       &proxy->base.interface->methods[opcode]);
-	va_end(ap);
-
+	return wl_proxy_add_listener(&compositor->proxy,
+				     (void (**)(void)) listener, data);
 }
 
 WL_EXPORT struct wl_surface *
diff --git a/wayland-client.h b/wayland-client.h
index fd15839..8cbec1a 100644
--- a/wayland-client.h
+++ b/wayland-client.h
@@ -23,13 +23,7 @@
 #ifndef _WAYLAND_CLIENT_H
 #define _WAYLAND_CLIENT_H
 
-/* GCC visibility */
-#if defined(__GNUC__) && __GNUC__ >= 4
-#define WL_EXPORT __attribute__ ((visibility("default")))
-#else
-#define WL_EXPORT
-#endif
-
+struct wl_object;
 struct wl_display;
 struct wl_surface;
 struct wl_visual;
@@ -37,6 +31,10 @@
 #define WL_DISPLAY_READABLE 0x01
 #define WL_DISPLAY_WRITABLE 0x02
 
+int
+wl_object_implements(struct wl_object *object,
+		     const char *interface, int version);
+
 typedef int (*wl_display_update_func_t)(uint32_t mask, void *data);
 
 struct wl_display *wl_display_create(const char *name, size_t name_size);
@@ -46,20 +44,17 @@
 
 void wl_display_iterate(struct wl_display *display, uint32_t mask);
 
-typedef void (*wl_display_event_func_t)(struct wl_display *display,
-					uint32_t object,
-					uint32_t opcode,
-					uint32_t size,
-					uint32_t *p,
-					void *data);
-
-void wl_display_set_event_handler(struct wl_display *display,
-				  wl_display_event_func_t handler,
-				  void *data);
-
+struct wl_global_listener;
+typedef void (*wl_display_global_func_t)(struct wl_display *display,
+					 struct wl_object *object,
+					 void *data);
 void
-wl_display_get_geometry(struct wl_display *display,
-			int32_t *width, int32_t *height);
+wl_display_remove_global_listener(struct wl_display *display,
+				  struct wl_global_listener *listener);
+
+struct wl_global_listener *
+wl_display_add_global_listener(struct wl_display *display,
+			       wl_display_global_func_t handler, void *data);
 struct wl_compositor *
 wl_display_get_compositor(struct wl_display *display);
 struct wl_visual *
@@ -69,10 +64,24 @@
 struct wl_visual *
 wl_display_get_rgb_visual(struct wl_display *display);
 
+struct wl_compositor_listener {
+	void (*acknowledge)(void *data,
+			    struct wl_compositor *compositor,
+			    uint32_t key, uint32_t frame);
+	void (*frame)(void *data,
+		      struct wl_compositor *compositor,
+		      uint32_t frame, uint32_t timestamp);
+};
+
 struct wl_surface *
 wl_compositor_create_surface(struct wl_compositor *compositor);
 void
 wl_compositor_commit(struct wl_compositor *compositor, uint32_t key);
+int
+wl_compositor_add_listener(struct wl_compositor *compostior,
+			   const struct wl_compositor_listener *listener,
+			   void *data);
+
 
 void wl_surface_destroy(struct wl_surface *surface);
 void wl_surface_attach(struct wl_surface *surface, uint32_t name,
@@ -86,6 +95,37 @@
 void wl_surface_damage(struct wl_surface *surface,
 		       int32_t x, int32_t y, int32_t width, int32_t height);
 
+struct wl_output;
+struct wl_output_listener {
+	void (*geometry)(void *data,
+			 struct wl_output *output,
+			 int32_t width, int32_t height);
+};
+
+int
+wl_output_add_listener(struct wl_output *output,
+		       const struct wl_output_listener *listener,
+		       void *data);
+
+struct wl_input_device;
+struct wl_input_device_listener {
+	void (*motion)(void *data,
+		       struct wl_input_device *input_device,
+		       int32_t x, int32_t y, int32_t sx, int32_t sy);
+	void (*button)(void *data,
+		       struct wl_input_device *input_device,
+		       uint32_t button, uint32_t state,
+		       int32_t x, int32_t y, int32_t sx, int32_t sy);
+	void (*key)(void *data,
+		    struct wl_input_device *input_device,
+		    uint32_t button, uint32_t state);
+};
+
+int
+wl_input_device_add_listener(struct wl_input_device *input_device,
+			     const struct wl_input_device_listener *listener,
+			     void *data);
+
 
 /* These entry points are for client side implementation of custom
  * objects. */
@@ -96,5 +136,6 @@
 void wl_display_write(struct wl_display *display,
 		      const void *data,
 		      size_t count);
-
+void wl_display_advertise_global(struct wl_display *display,
+				 struct wl_object *object);
 #endif
diff --git a/window.c b/window.c
index 3a67c74..ce7823a 100644
--- a/window.c
+++ b/window.c
@@ -44,21 +44,19 @@
 	struct wl_compositor *compositor;
 	struct wl_surface *surface;
 	const char *title;
-	struct rectangle allocation, saved_allocation;
+	struct rectangle allocation, saved_allocation, screen_allocation;
 	int minimum_width, minimum_height;
 	int margin;
 	int drag_x, drag_y;
 	int state;
 	int fullscreen;
-	uint32_t grab_device;
+	struct wl_input_device *grab_device;
 	uint32_t name;
 	int fd;
 
 	struct buffer *buffer;
 
 	window_resize_handler_t resize_handler;
-	window_frame_handler_t frame_handler;
-	window_acknowledge_handler_t acknowledge_handler;
 	window_key_handler_t key_handler;
 	void *user_data;
 };
@@ -212,6 +210,36 @@
 		window_draw_decorations(window);
 }
 
+static void
+window_handle_acknowledge(void *data,
+			  struct wl_compositor *compositor,
+			  uint32_t key, uint32_t frame)
+{
+	struct window *window = data;
+
+	/* The acknowledge event means that the server
+	 * processed our last commit request and we can now
+	 * safely free the old window buffer if we resized and
+	 * render the next frame into our back buffer.. */
+
+	if (key == 0 && window->buffer != NULL) {
+		buffer_destroy(window->buffer, window->fd);
+		window->buffer = NULL;
+	}
+}
+
+static void
+window_handle_frame(void *data,
+		    struct wl_compositor *compositor,
+		    uint32_t frame, uint32_t timestamp)
+{
+}
+
+static const struct wl_compositor_listener compositor_listener = {
+	window_handle_acknowledge,
+	window_handle_frame,
+};
+
 enum window_state {
 	WINDOW_STABLE,
 	WINDOW_MOVING,
@@ -231,128 +259,105 @@
 };
 
 static void
-event_handler(struct wl_display *display,
-	      uint32_t object, uint32_t opcode,
-	      uint32_t size, uint32_t *p, void *data)
+window_handle_motion(void *data, struct wl_input_device *input_device,
+		     int32_t x, int32_t y, int32_t sx, int32_t sy)
 {
 	struct window *window = data;
-	int location;
-	int grip_size = 16;
 
-	/* FIXME: Object ID 2 is the compositor, for anything else we
-	 * assume it's an input device. */
-	if (object == 2 && opcode == 0) {
-		uint32_t key = p[0];
-
-		/* Ignore acknowledge events for window move requests. */
-		if (key != 0)
-			return;
-
-		/* The acknowledge event means that the server
-		 * processed our last commit request and we can now
-		 * safely free the old window buffer if we resized and
-		 * render the next frame into our back buffer.. */
-
-		if (window->buffer != NULL) {
-			buffer_destroy(window->buffer, window->fd);
-			window->buffer = NULL;
-		}
-		if (window->acknowledge_handler)
-			(*window->acknowledge_handler)(window, key,
-						       window->user_data);
-
-	} else if (object == 2 && opcode == 1) {
-		/* The frame event means that the previous frame was
-		 * composited, and we can now send the request to copy
-		 * the frame we've rendered in the mean time into the
-		 * servers surface buffer. */
-		if (window->frame_handler)
-			(*window->frame_handler)(window, p[0], p[1],
-						 window->user_data);
-	} else if (object == 1) {
-		fprintf(stderr, "unexpected event from display: %d\n",
-			opcode);
-		exit(-1);
-	} else if (opcode == 0) {
-		int x = p[0], y = p[1];
-
-		switch (window->state) {
-		case WINDOW_MOVING:
-			if (window->fullscreen)
-				break;
-			if (window->grab_device != object)
-				break;
-			window->allocation.x = window->drag_x + x;
-			window->allocation.y = window->drag_y + y;
-			wl_surface_map(window->surface,
-				       window->allocation.x - window->margin,
-				       window->allocation.y - window->margin,
-				       window->allocation.width,
-				       window->allocation.height);
-			wl_compositor_commit(window->compositor, 1);
+	switch (window->state) {
+	case WINDOW_MOVING:
+		if (window->fullscreen)
 			break;
-		case WINDOW_RESIZING_LOWER_RIGHT:
-			if (window->fullscreen)
-				break;
-			if (window->grab_device != object)
-				break;
-			window->allocation.width = window->drag_x + x;
-			window->allocation.height = window->drag_y + y;
-
-			if (window->resize_handler)
-				(*window->resize_handler)(window,
-							  window->user_data);
-
+		if (window->grab_device != input_device)
 			break;
-		}
-	} else if (opcode == 1) {
-		int button = p[0], state = p[1];
-		int32_t x = p[2], y = p[3];
-		int32_t left = window->allocation.x;
-		int32_t right = window->allocation.x +
-			window->allocation.width - window->margin * 2;
-		int32_t top = window->allocation.y;
-		int32_t bottom = window->allocation.y +
-			window->allocation.height - window->margin * 2;
+		window->allocation.x = window->drag_x + x;
+		window->allocation.y = window->drag_y + y;
+		wl_surface_map(window->surface,
+			       window->allocation.x - window->margin,
+			       window->allocation.y - window->margin,
+			       window->allocation.width,
+			       window->allocation.height);
+		wl_compositor_commit(window->compositor, 1);
+		break;
+	case WINDOW_RESIZING_LOWER_RIGHT:
+		if (window->fullscreen)
+			break;
+		if (window->grab_device != input_device)
+			break;
+		window->allocation.width = window->drag_x + x;
+		window->allocation.height = window->drag_y + y;
 
-		if (right - grip_size <= x && x < right &&
-		    bottom - grip_size <= y && y < bottom) {
-			location = LOCATION_LOWER_RIGHT;
-		} else if (left <= x && x < right && top <= y && y < bottom) {
-			location = LOCATION_INTERIOR;
-		} else {
-			location = LOCATION_OUTSIDE;
-		}
+		if (window->resize_handler)
+			(*window->resize_handler)(window,
+						  window->user_data);
 
-		if (button == BTN_LEFT && state == 1) {
-			switch (location) {
-			case LOCATION_INTERIOR:
-				window->drag_x = window->allocation.x - x;
-				window->drag_y = window->allocation.y - y;
-				window->state = WINDOW_MOVING;
-				window->grab_device = object;
-				break;
-			case LOCATION_LOWER_RIGHT:
-				window->drag_x = window->allocation.width - x;
-				window->drag_y = window->allocation.height - y;
-				window->state = WINDOW_RESIZING_LOWER_RIGHT;
-				window->grab_device = object;
-				break;
-			default:
-				window->state = WINDOW_STABLE;
-				break;
-			}
-		} else if (button == BTN_LEFT &&
-			   state == 0 && object == window->grab_device) {
-			window->state = WINDOW_STABLE;
-		}
-	} else if (opcode == 2) {
-		if (window->key_handler)
-			(*window->key_handler)(window, p[0], p[1],
-					       window->user_data);
+		break;
 	}
 }
 
+static void window_handle_button(void *data, struct wl_input_device *input_device,
+				 uint32_t button, uint32_t state,
+				 int32_t x, int32_t y, int32_t sx, int32_t sy)
+{
+	struct window *window = data;
+	int32_t left = window->allocation.x;
+	int32_t right = window->allocation.x +
+		window->allocation.width - window->margin * 2;
+	int32_t top = window->allocation.y;
+	int32_t bottom = window->allocation.y +
+		window->allocation.height - window->margin * 2;
+	int grip_size = 16, location;
+	
+	if (right - grip_size <= x && x < right &&
+	    bottom - grip_size <= y && y < bottom) {
+		location = LOCATION_LOWER_RIGHT;
+	} else if (left <= x && x < right && top <= y && y < bottom) {
+		location = LOCATION_INTERIOR;
+	} else {
+		location = LOCATION_OUTSIDE;
+	}
+
+	if (button == BTN_LEFT && state == 1) {
+		switch (location) {
+		case LOCATION_INTERIOR:
+			window->drag_x = window->allocation.x - x;
+			window->drag_y = window->allocation.y - y;
+			window->state = WINDOW_MOVING;
+			window->grab_device = input_device;
+			break;
+		case LOCATION_LOWER_RIGHT:
+			window->drag_x = window->allocation.width - x;
+			window->drag_y = window->allocation.height - y;
+			window->state = WINDOW_RESIZING_LOWER_RIGHT;
+			window->grab_device = input_device;
+			break;
+		default:
+			window->state = WINDOW_STABLE;
+			break;
+		}
+	} else if (button == BTN_LEFT &&
+		   state == 0 && window->grab_device == input_device) {
+		window->state = WINDOW_STABLE;
+	}
+}
+
+static void
+window_handle_key(void *data, struct wl_input_device *input_device,
+		  uint32_t button, uint32_t state)
+{
+	struct window *window = data;
+
+	if (window->key_handler)
+		(*window->key_handler)(window, button, state,
+				       window->user_data);
+}
+
+static const struct wl_input_device_listener input_device_listener = {
+	window_handle_motion,
+	window_handle_button,
+	window_handle_key,
+};
+
 void
 window_get_child_rectangle(struct window *window,
 			   struct rectangle *rectangle)
@@ -397,11 +402,7 @@
 	window->fullscreen = fullscreen;
 	if (window->fullscreen) {
 		window->saved_allocation = window->allocation;
-		window->allocation.x = 0;
-		window->allocation.y = 0;
-		wl_display_get_geometry(window->display,
-					&window->allocation.width,
-					&window->allocation.height);
+		window->allocation = window->screen_allocation;
 	} else {
 		window->allocation = window->saved_allocation;
 	}
@@ -416,22 +417,6 @@
 }
 
 void
-window_set_frame_handler(struct window *window,
-			 window_frame_handler_t handler, void *data)
-{
-	window->frame_handler = handler;
-	window->user_data = data;
-}
-
-void
-window_set_acknowledge_handler(struct window *window,
-			       window_acknowledge_handler_t handler, void *data)
-{
-	window->acknowledge_handler = handler;
-	window->user_data = data;
-}
-
-void
 window_set_key_handler(struct window *window,
 		       window_key_handler_t handler, void *data)
 {
@@ -439,6 +424,47 @@
 	window->user_data = data;
 }
 
+static void
+window_handle_geometry(void *data,
+		       struct wl_output *output,
+		       int32_t width, int32_t height)
+{
+	struct window *window = data;
+
+	window->screen_allocation.x = 0;
+	window->screen_allocation.y = 0;
+	window->screen_allocation.width = width;
+	window->screen_allocation.height = height;
+}
+
+static const struct wl_output_listener output_listener = {
+	window_handle_geometry,
+};
+
+static void
+window_handle_global(struct wl_display *display,
+		     struct wl_object *object, void *data)
+{
+	struct window *window = data;
+
+	if (wl_object_implements(object, "compositor", 1)) { 
+		window->compositor = (struct wl_compositor *) object;
+		wl_compositor_add_listener(window->compositor,
+					   &compositor_listener, window);
+	} else if (wl_object_implements(object, "output", 1)) {
+		struct wl_output *output = (struct wl_output *) object;
+
+		wl_output_add_listener(output,
+				       &output_listener, window);
+	} else if (wl_object_implements(object, "input_device", 1)) {
+		struct wl_input_device *input_device =
+			(struct wl_input_device *) object;
+
+		wl_input_device_add_listener(input_device,
+					     &input_device_listener, window);
+	}
+}
+
 struct window *
 window_create(struct wl_display *display, int fd,
 	      const char *title,
@@ -464,7 +490,8 @@
 	window->state = WINDOW_STABLE;
 	window->fd = fd;
 
-	wl_display_set_event_handler(display, event_handler, window);
+	wl_display_add_global_listener(display,
+				       window_handle_global, window);
 
 	return window;
 }