shell: Rename solid_color_surface to weston_curtain

create_solid_color_surface actually returns a weston_view that it
creates internally. Since weston_solid_color_view is long and dull,
rename it to weston_curtain.

Signed-off-by: Daniel Stone <daniels@collabora.com>
dev
Daniel Stone 3 years ago
parent 7059ec7807
commit b77c2374ee
  1. 4
      desktop-shell/shell.c
  2. 11
      kiosk-shell/kiosk-shell.c
  3. 6
      shared/shell-utils.c
  4. 8
      shared/shell-utils.h
  5. 5
      tests/safe-signal-output-removal-test.c

@ -2069,6 +2069,7 @@ create_black_surface(struct weston_compositor *ec,
float x, float y, int w, int h)
{
struct weston_solid_color_surface surface_data = {};
struct weston_view *view;
surface_data.surface_committed = black_surface_committed;
surface_data.get_label = black_surface_get_label;
@ -2078,8 +2079,7 @@ create_black_surface(struct weston_compositor *ec,
surface_data.g = 0;
surface_data.b = 0;
struct weston_view *view =
create_solid_color_surface(ec, &surface_data, x, y, w, h);
view = weston_curtain_create(ec, &surface_data, x, y, w, h);
return view;
}

@ -480,6 +480,7 @@ static void
kiosk_shell_output_recreate_background(struct kiosk_shell_output *shoutput)
{
struct kiosk_shell *shell = shoutput->shell;
struct weston_compositor *ec = shell->compositor;
struct weston_output *output = shoutput->output;
struct weston_config_section *shell_section = NULL;
uint32_t bg_color = 0x0;
@ -505,12 +506,10 @@ kiosk_shell_output_recreate_background(struct kiosk_shell_output *shoutput)
solid_surface.surface_committed = NULL;
solid_surface.surface_private = NULL;
shoutput->background_view =
create_solid_color_surface(shoutput->shell->compositor,
&solid_surface,
output->x, output->y,
output->width,
output->height);
shoutput->background_view = weston_curtain_create(ec, &solid_surface,
output->x, output->y,
output->width,
output->height);
weston_surface_set_role(shoutput->background_view->surface,
"kiosk-shell-background", NULL, 0);

@ -139,9 +139,9 @@ surface_get_label(struct weston_surface *surface, char *buf, size_t len)
}
struct weston_view *
create_solid_color_surface(struct weston_compositor *compositor,
struct weston_solid_color_surface *ss,
float x, float y, int w, int h)
weston_curtain_create(struct weston_compositor *compositor,
struct weston_solid_color_surface *ss,
float x, float y, int w, int h)
{
struct weston_surface *surface = NULL;
struct weston_view *view;

@ -26,7 +26,7 @@
#include "shared/helpers.h"
#include <libweston/libweston.h>
/* parameter for create_solid_color_surface() */
/* parameter for weston_curtain_create() */
struct weston_solid_color_surface {
int (*get_label)(struct weston_surface *es, char *buf, size_t len);
void (*surface_committed)(struct weston_surface *es, int32_t sx, int32_t sy);
@ -53,6 +53,6 @@ surface_get_label(struct weston_surface *surface, char *buf, size_t len);
/* helper to create a view w/ a color
*/
struct weston_view *
create_solid_color_surface(struct weston_compositor *compositor,
struct weston_solid_color_surface *ss,
float x, float y, int w, int h);
weston_curtain_create(struct weston_compositor *compositor,
struct weston_solid_color_surface *ss,
float x, float y, int w, int h);

@ -89,9 +89,8 @@ output_create_view(struct test_output *t_output)
solid_surface.surface_committed = NULL;
solid_surface.surface_private = NULL;
t_output->view =
create_solid_color_surface(t_output->compositor,
&solid_surface, 0, 0, 320, 240);
t_output->view = weston_curtain_create(t_output->compositor,
&solid_surface, 0, 0, 320, 240);
weston_view_set_output(t_output->view, t_output->output);
/* weston_compositor_remove_output() has to be patched with

Loading…
Cancel
Save