/* * Copyright (C) 2013 Red Hat, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef META_WAYLAND_SURFACE_H #define META_WAYLAND_SURFACE_H #include #include #include #include #include #include #include "meta-wayland-types.h" #include "meta-surface-actor.h" struct _MetaWaylandSerial { gboolean set; uint32_t value; }; typedef struct { /* wl_surface.attach */ gboolean newly_attached; MetaWaylandBuffer *buffer; struct wl_listener buffer_destroy_listener; int32_t dx; int32_t dy; int scale; /* wl_surface.damage */ cairo_region_t *damage; cairo_region_t *input_region; cairo_region_t *opaque_region; /* wl_surface.frame */ struct wl_list frame_callback_list; MetaRectangle new_geometry; gboolean has_new_geometry; } MetaWaylandPendingState; struct _MetaWaylandSurface { /* Generic stuff */ struct wl_resource *resource; MetaWaylandCompositor *compositor; MetaSurfaceActor *surface_actor; MetaWindow *window; MetaWaylandBuffer *buffer; struct wl_listener buffer_destroy_listener; int scale; int32_t offset_x, offset_y; GList *subsurfaces; /* All the pending state that wl_surface.commit will apply. */ MetaWaylandPendingState pending; /* Extension resources. */ struct wl_resource *xdg_surface; struct wl_resource *xdg_popup; struct wl_resource *wl_shell_surface; struct wl_resource *gtk_surface; struct wl_resource *wl_subsurface; /* xdg_surface stuff */ struct wl_resource *xdg_shell_resource; MetaWaylandSerial acked_configure_serial; gboolean has_set_geometry; /* wl_subsurface stuff. */ struct { MetaWaylandSurface *parent; struct wl_listener parent_destroy_listener; /* When the surface is synchronous, its state will be applied * when the parent is committed. This is done by moving the * "real" pending state below to here when this surface is * committed and in synchronous mode. * * When the parent surface is committed, we apply the pending * state here. */ gboolean synchronous; MetaWaylandPendingState pending; int32_t pending_x; int32_t pending_y; gboolean pending_pos; GSList *pending_placement_ops; } sub; }; void meta_wayland_shell_init (MetaWaylandCompositor *compositor); MetaWaylandSurface *meta_wayland_surface_create (MetaWaylandCompositor *compositor, struct wl_client *client, struct wl_resource *compositor_resource, guint32 id); void meta_wayland_surface_set_window (MetaWaylandSurface *surface, MetaWindow *window); void meta_wayland_surface_configure_notify (MetaWaylandSurface *surface, int width, int height, MetaWaylandSerial *sent_serial); void meta_wayland_surface_ping (MetaWaylandSurface *surface, guint32 serial); void meta_wayland_surface_delete (MetaWaylandSurface *surface); void meta_wayland_surface_popup_done (MetaWaylandSurface *surface); #endif