shell: Make panel just a wl_surface too
diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c
index 55b16a7..ed6ea40 100644
--- a/clients/desktop-shell.c
+++ b/clients/desktop-shell.c
@@ -446,12 +446,11 @@
 	memset(panel, 0, sizeof *panel);
 
 	panel->base.configure = panel_configure;
-	panel->window = window_create(display);
+	panel->window = window_create_custom(display);
 	panel->widget = window_add_widget(panel->window, panel);
 	wl_list_init(&panel->launcher_list);
 
 	window_set_title(panel->window, "panel");
-	window_set_custom(panel->window);
 	window_set_user_data(panel->window, panel);
 
 	widget_set_redraw_handler(panel->widget, panel_redraw_handler);
@@ -876,12 +875,12 @@
 				       global_handler, &desktop);
 
 	wl_list_for_each(output, &desktop.outputs, link) {
-		struct wl_shell_surface *shsurf;
 		struct wl_surface *surface;
 
 		output->panel = panel_create(desktop.display);
-		shsurf = window_get_wl_shell_surface(output->panel->window);
-		desktop_shell_set_panel(desktop.shell, output->output, shsurf);
+		surface = window_get_wl_surface(output->panel->window);
+		desktop_shell_set_panel(desktop.shell,
+					output->output, surface);
 
 		output->background = background_create(&desktop);
 		surface = window_get_wl_surface(output->background->window);
diff --git a/protocol/desktop-shell.xml b/protocol/desktop-shell.xml
index 97b6b4f..1edd011 100644
--- a/protocol/desktop-shell.xml
+++ b/protocol/desktop-shell.xml
@@ -14,7 +14,7 @@
 
     <request name="set_panel">
       <arg name="output" type="object" interface="wl_output"/>
-      <arg name="surface" type="object" interface="wl_shell_surface"/>
+      <arg name="surface" type="object" interface="wl_surface"/>
     </request>
 
     <request name="set_lock_surface">
diff --git a/src/compositor.c b/src/compositor.c
index a4ef26b..b4e430b 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -634,7 +634,7 @@
 		weston_device_repick(&seat->seat);
 }
 
-static void
+WL_EXPORT void
 weston_surface_unmap(struct weston_surface *surface)
 {
 	struct weston_seat *seat;
diff --git a/src/compositor.h b/src/compositor.h
index 4e2d305..5bb0ca6 100644
--- a/src/compositor.h
+++ b/src/compositor.h
@@ -637,6 +637,9 @@
 weston_surface_damage_below(struct weston_surface *surface);
 
 void
+weston_surface_unmap(struct weston_surface *surface);
+
+void
 weston_buffer_post_release(struct wl_buffer *buffer);
 
 uint32_t
diff --git a/src/shell.c b/src/shell.c
index f1a0170..f995f03 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -95,8 +95,6 @@
 	struct shell_surface *lock_surface;
 	struct wl_listener lock_surface_listener;
 
-	struct wl_list panels;
-
 	struct {
 		struct wl_array array;
 		unsigned int current;
@@ -131,7 +129,6 @@
 enum shell_surface_type {
 	SHELL_SURFACE_NONE,
 
-	SHELL_SURFACE_PANEL,
 	SHELL_SURFACE_LOCK,
 	SHELL_SURFACE_SCREENSAVER,
 	SHELL_SURFACE_INPUT_PANEL,
@@ -1226,7 +1223,6 @@
 					    surface->saved_x,
 					    surface->saved_y);
 		break;
-	case SHELL_SURFACE_PANEL:
 	case SHELL_SURFACE_INPUT_PANEL:
 		wl_list_remove(&surface->link);
 		wl_list_init(&surface->link);
@@ -1254,8 +1250,6 @@
 	struct weston_surface *surface = shsurf->surface;
 	struct shell_surface *pshsurf = shsurf->parent;
 	struct weston_surface *pes;
-	struct shell_surface *priv;
-	struct desktop_shell *shell = shsurf->shell;
 
 	reset_shell_surface_type(shsurf);
 
@@ -1291,22 +1285,6 @@
 		}
 		break;
 
-	case SHELL_SURFACE_PANEL:
-		wl_list_for_each(priv, &shell->panels, link) {
-			if (priv->output == shsurf->output) {
-				priv->surface->output = NULL;
-				wl_list_remove(&priv->surface->layer_link);
-				wl_list_remove(&priv->link);
-				break;
-			}
-		}
-
-		wl_list_insert(&shell->panels, &shsurf->link);
-
-		weston_surface_set_position(surface, shsurf->output->x,
-					    shsurf->output->y);
-		break;
-
 	default:
 		break;
 	}
@@ -1361,18 +1339,19 @@
 get_output_panel_height(struct desktop_shell *shell,
 			struct weston_output *output)
 {
-	struct shell_surface *priv;
+	struct weston_surface *surface;
 	int panel_height = 0;
 
 	if (!output)
 		return 0;
 
-	wl_list_for_each(priv, &shell->panels, link) {
-		if (priv->output == output) {
-			panel_height = priv->surface->geometry.height;
+	wl_list_for_each(surface, &shell->panel_layer.surface_list, link) {
+		if (surface->output == output) {
+			panel_height = surface->geometry.height;
 			break;
 		}
 	}
+
 	return panel_height;
 }
 
@@ -1925,17 +1904,14 @@
 }
 
 static void
-background_configure(struct weston_surface *es, int32_t sx, int32_t sy)
+configure_static_surface(struct weston_surface *es, struct weston_layer *layer)
 {
-	struct desktop_shell *shell = es->private;
-	struct weston_surface *s;
+	struct weston_surface *s, *next;
 
-	wl_list_for_each(s, &shell->background_layer.surface_list, layer_link) {
-		if (s->output == es->output) {
-			s->output = NULL;
-			wl_list_remove(&s->layer_link);
+	wl_list_for_each_safe(s, next, &layer->surface_list, layer_link) {
+		if (s->output == es->output && s != es) {
+			weston_surface_unmap(s);
 			s->configure = NULL;
-			break;
 		}
 	}
 
@@ -1943,13 +1919,20 @@
 				 es->buffer->width, es->buffer->height);
 
 	if (wl_list_empty(&es->layer_link)) {
-		wl_list_insert(&shell->background_layer.surface_list,
-			       &es->layer_link);
+		wl_list_insert(&layer->surface_list, &es->layer_link);
 		weston_surface_assign_output(es);
 	}
 }
 
 static void
+background_configure(struct weston_surface *es, int32_t sx, int32_t sy)
+{
+	struct desktop_shell *shell = es->private;
+
+	configure_static_surface(es, &shell->background_layer);
+}
+
+static void
 desktop_shell_set_background(struct wl_client *client,
 			     struct wl_resource *resource,
 			     struct wl_resource *output_resource,
@@ -1975,20 +1958,36 @@
 }
 
 static void
+panel_configure(struct weston_surface *es, int32_t sx, int32_t sy)
+{
+	struct desktop_shell *shell = es->private;
+
+	configure_static_surface(es, &shell->panel_layer);
+}
+
+static void
 desktop_shell_set_panel(struct wl_client *client,
 			struct wl_resource *resource,
 			struct wl_resource *output_resource,
 			struct wl_resource *surface_resource)
 {
-	struct shell_surface *shsurf = surface_resource->data;
+	struct desktop_shell *shell = resource->data;
+	struct weston_surface *surface = surface_resource->data;
 
-	shsurf->next_type = SHELL_SURFACE_PANEL;
-	shsurf->output = output_resource->data;
+	if (surface->configure) {
+		wl_resource_post_error(surface_resource,
+				       WL_DISPLAY_ERROR_INVALID_OBJECT,
+				       "surface role already assigned");
+		return;
+	}
 
+	surface->configure = panel_configure;
+	surface->private = shell;
+	surface->output = output_resource->data;
 	desktop_shell_send_configure(resource, 0,
-				     &shsurf->surface->surface.resource,
-				     shsurf->output->current->width,
-				     shsurf->output->current->height);
+				     surface_resource,
+				     surface->output->current->width,
+				     surface->output->current->height);
 }
 
 static void
@@ -2105,7 +2104,6 @@
 		return;
 
 	switch (shsurf->type) {
-		case SHELL_SURFACE_PANEL:
 		case SHELL_SURFACE_FULLSCREEN:
 		case SHELL_SURFACE_SCREENSAVER:
 		case SHELL_SURFACE_INPUT_PANEL:
@@ -2134,7 +2132,6 @@
 		return;
 
 	switch (shsurf->type) {
-		case SHELL_SURFACE_PANEL:
 		case SHELL_SURFACE_FULLSCREEN:
 		case SHELL_SURFACE_SCREENSAVER:
 		case SHELL_SURFACE_INPUT_PANEL:
@@ -2377,7 +2374,6 @@
 		return;
 
 	switch (surface->type) {
-		case SHELL_SURFACE_PANEL:
 		case SHELL_SURFACE_FULLSCREEN:
 		case SHELL_SURFACE_SCREENSAVER:
 		case SHELL_SURFACE_INPUT_PANEL:
@@ -2449,7 +2445,6 @@
 	weston_surface_activate(es, seat);
 
 	switch (get_shell_surface_type(es)) {
-	case SHELL_SURFACE_PANEL:
 	case SHELL_SURFACE_LOCK:
 	case SHELL_SURFACE_INPUT_PANEL:
 		break;
@@ -2693,11 +2688,6 @@
 
 	/* surface stacking order, see also activate() */
 	switch (surface_type) {
-	case SHELL_SURFACE_PANEL:
-		/* panel always on top, hidden while locked */
-		wl_list_insert(&shell->panel_layer.surface_list,
-			       &surface->layer_link);
-		break;
 	case SHELL_SURFACE_LOCK:
 		/* lock surface always visible, on top */
 		wl_list_insert(&shell->lock_layer.surface_list,
@@ -3421,7 +3411,6 @@
 	ec->shell_interface.move = surface_move;
 	ec->shell_interface.resize = surface_resize;
 
-	wl_list_init(&shell->panels);
 	wl_list_init(&shell->screensaver.surfaces);
 	wl_list_init(&shell->input_panel.surfaces);