clients: Set title for all shell surface demos.
authorScott Moreau <oreaus@gmail.com>
Sun, 7 Oct 2012 14:56:30 +0000 (08:56 -0600)
committerKristian Høgsberg <krh@bitplanet.net>
Wed, 10 Oct 2012 03:13:01 +0000 (23:13 -0400)
clients/flower.c
clients/simple-egl.c
clients/simple-shm.c
clients/simple-touch.c

index a403234..dac52d5 100644 (file)
@@ -180,6 +180,7 @@ int main(int argc, char *argv[])
        flower.display = d;
        flower.window = window_create(d);
        flower.widget = window_add_widget(flower.window, &flower);
+       window_set_title(flower.window, "Flower");
 
        widget_set_resize_handler(flower.widget, resize_handler);
        widget_set_redraw_handler(flower.widget, redraw_handler);
index a67ce2f..d6842af 100644 (file)
@@ -317,6 +317,8 @@ create_surface(struct window *window)
                                       display->egl.conf,
                                       window->native, NULL);
 
+       wl_shell_surface_set_title(window->shell_surface, "simple-egl");
+
        ret = eglMakeCurrent(window->display->egl.dpy, window->egl_surface,
                             window->egl_surface, window->display->egl.ctx);
        assert(ret == EGL_TRUE);
index d0aeeb2..f62e54e 100644 (file)
@@ -142,6 +142,8 @@ create_window(struct display *display, int width, int height)
                wl_shell_surface_add_listener(window->shell_surface,
                                              &shell_surface_listener, window);
 
+       wl_shell_surface_set_title(window->shell_surface, "simple-shm");
+
        wl_shell_surface_set_toplevel(window->shell_surface);
 
        return window;
index 6087fe4..03fd45b 100644 (file)
@@ -301,6 +301,7 @@ touch_create(int width, int height)
        }
 
        wl_surface_set_user_data(touch->surface, touch);
+       wl_shell_surface_set_title(touch->shell_surface, "simple-touch");
 
        memset(touch->data, 64, width * height * 4);
        wl_surface_attach(touch->surface, touch->buffer, 0, 0);