mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-09 03:38:03 +02:00
Remove weston_shell map and configure function pointers
This commit is contained in:
parent
56d23bc3ee
commit
3448616bc3
3 changed files with 11 additions and 32 deletions
|
|
@ -153,11 +153,6 @@ struct weston_spring {
|
|||
struct weston_shell {
|
||||
void (*lock)(struct weston_shell *shell);
|
||||
void (*unlock)(struct weston_shell *shell);
|
||||
void (*map)(struct weston_shell *shell, struct weston_surface *surface,
|
||||
int32_t width, int32_t height, int32_t sx, int32_t sy);
|
||||
void (*configure)(struct weston_shell *shell,
|
||||
struct weston_surface *surface,
|
||||
GLfloat x, GLfloat y, int32_t width, int32_t height);
|
||||
void (*destroy)(struct weston_shell *shell);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -2101,8 +2101,6 @@ shell_init(struct weston_compositor *ec)
|
|||
shell->compositor = ec;
|
||||
shell->shell.lock = lock;
|
||||
shell->shell.unlock = unlock;
|
||||
shell->shell.map = map;
|
||||
shell->shell.configure = configure;
|
||||
shell->shell.destroy = shell_destroy;
|
||||
|
||||
wl_list_init(&shell->backgrounds);
|
||||
|
|
|
|||
|
|
@ -106,11 +106,19 @@ tablet_shell_set_state(struct tablet_shell *shell, int state)
|
|||
}
|
||||
|
||||
static void
|
||||
tablet_shell_map(struct weston_shell *base, struct weston_surface *surface,
|
||||
int32_t width, int32_t height, int32_t sx, int32_t sy)
|
||||
tablet_shell_surface_configure(struct weston_surface *surface,
|
||||
int32_t sx, int32_t sy)
|
||||
{
|
||||
struct tablet_shell *shell =
|
||||
container_of(base, struct tablet_shell, shell);
|
||||
container_of(surface->compositor->shell,
|
||||
struct tablet_shell, shell);
|
||||
int32_t width, height;
|
||||
|
||||
if (weston_surface_is_mapped(surface))
|
||||
return;
|
||||
|
||||
width = surface->buffer->width;
|
||||
height = surface->buffer->height;
|
||||
|
||||
weston_surface_configure(surface, 0, 0, width, height);
|
||||
|
||||
|
|
@ -141,26 +149,6 @@ tablet_shell_map(struct weston_shell *base, struct weston_surface *surface,
|
|||
weston_surface_assign_output(surface);
|
||||
}
|
||||
|
||||
static void
|
||||
tablet_shell_configure(struct weston_shell *base,
|
||||
struct weston_surface *surface,
|
||||
GLfloat x, GLfloat y,
|
||||
int32_t width, int32_t height)
|
||||
{
|
||||
weston_surface_configure(surface, x, y, width, height);
|
||||
}
|
||||
|
||||
static void
|
||||
tablet_shell_surface_configure(struct weston_surface *es, int32_t sx,
|
||||
int32_t sy)
|
||||
{
|
||||
struct weston_shell *shell = es->compositor->shell;
|
||||
|
||||
if (!weston_surface_is_mapped(es))
|
||||
tablet_shell_map(shell, es, es->buffer->width,
|
||||
es->buffer->height, sx, sy);
|
||||
}
|
||||
|
||||
static void
|
||||
handle_lockscreen_surface_destroy(struct wl_listener *listener,
|
||||
struct wl_resource *resource, uint32_t time)
|
||||
|
|
@ -576,8 +564,6 @@ shell_init(struct weston_compositor *compositor)
|
|||
|
||||
shell->shell.lock = tablet_shell_lock;
|
||||
shell->shell.unlock = tablet_shell_unlock;
|
||||
shell->shell.map = tablet_shell_map;
|
||||
shell->shell.configure = tablet_shell_configure;
|
||||
shell->shell.destroy = tablet_shell_destroy;
|
||||
|
||||
weston_layer_init(&shell->homescreen_layer,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue