stacking: Remove transient window support

This will be replaced with xdg_surface_set_transient_for at some point...
diff --git a/clients/stacking.c b/clients/stacking.c
index 544094c..bfccbc6 100644
--- a/clients/stacking.c
+++ b/clients/stacking.c
@@ -56,20 +56,13 @@
 static void
 redraw_handler(struct widget *widget, void *data);
 
-/* Iff parent_window is set, the new window will be transient. */
 static struct window *
-new_window(struct stacking *stacking, struct window *parent_window)
+new_window(struct stacking *stacking)
 {
 	struct window *new_window;
 	struct widget *new_widget;
 
-	if (parent_window == NULL) {
-		new_window = window_create(stacking->display);
-	} else {
-		new_window = window_create_transient(stacking->display,
-		                                     parent_window, 50, 50, 0);
-	}
-
+	new_window = window_create(stacking->display);
 	new_widget = window_frame_create(new_window, new_window);
 
 	window_set_title(new_window, "Stacking Test");
@@ -148,8 +141,7 @@
 		break;
 
 	case XKB_KEY_n:
-		/* New top-level window. */
-		new_window(stacking, NULL);
+		new_window(stacking);
 		break;
 
 	case XKB_KEY_p:
@@ -160,11 +152,6 @@
 		exit (0);
 		break;
 
-	case XKB_KEY_t:
-		/* New transient window. */
-		new_window(stacking, window);
-		break;
-
 	default:
 		break;
 	}
@@ -234,9 +221,7 @@
 static void
 set_window_background_colour(cairo_t *cr, struct window *window)
 {
-	if (window_is_transient(window))
-		cairo_set_source_rgba(cr, 0.0, 1.0, 0.0, 0.4);
-	else if (window_is_maximized(window))
+	if (window_is_maximized(window))
 		cairo_set_source_rgba(cr, 1.0, 1.0, 0.0, 0.6);
 	else if (window_is_fullscreen(window))
 		cairo_set_source_rgba(cr, 0.0, 1.0, 1.0, 0.6);
@@ -275,12 +260,11 @@
 	            "Window: %p\n"
 	            "Fullscreen? %u\n"
 	            "Maximized? %u\n"
-	            "Transient? %u\n"
 	            "Keys: (f)ullscreen, (m)aximize,\n"
 	            "      (n)ew window, (p)opup,\n"
-	            "      (q)uit, (t)ransient window\n",
+	            "      (q)uit\n",
 	            window, window_is_fullscreen(window),
-	            window_is_maximized(window), window_is_transient(window));
+	            window_is_maximized(window));
 
 	cairo_destroy(cr);
 }
@@ -304,7 +288,7 @@
 
 	display_set_user_data(stacking.display, &stacking);
 
-	stacking.root_window = new_window(&stacking, NULL);
+	stacking.root_window = new_window(&stacking);
 
 	display_run(stacking.display);