mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
54e8bd898a
April fools! No, really. The fractional scale protocol is just a way to track the surface scale, but not a way to draw fractional content. This commit uses it for that, so tht we don't rely on tracking outputs. This also allows magnifiers etc to send us a larger (integer) scale if they would like that, that is not represented by the outputs.
124 lines
3.8 KiB
C
124 lines
3.8 KiB
C
/*
|
|
* Copyright © 2022 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef enum _PopupState
|
|
{
|
|
POPUP_STATE_IDLE,
|
|
POPUP_STATE_WAITING_FOR_REPOSITIONED,
|
|
POPUP_STATE_WAITING_FOR_CONFIGURE,
|
|
POPUP_STATE_WAITING_FOR_FRAME,
|
|
} PopupState;
|
|
|
|
struct _GdkWaylandSurface
|
|
{
|
|
GdkSurface parent_instance;
|
|
|
|
struct {
|
|
GSList *outputs;
|
|
struct wl_surface *wl_surface;
|
|
struct xdg_surface *xdg_surface;
|
|
struct zxdg_surface_v6 *zxdg_surface_v6;
|
|
struct wl_egl_window *egl_window;
|
|
struct wp_fractional_scale_v1 *fractional_scale;
|
|
} display_server;
|
|
|
|
struct wl_event_queue *event_queue;
|
|
|
|
unsigned int initial_configure_received : 1;
|
|
unsigned int has_uncommitted_ack_configure : 1;
|
|
unsigned int mapped : 1;
|
|
unsigned int awaiting_frame : 1;
|
|
unsigned int awaiting_frame_frozen : 1;
|
|
|
|
int pending_buffer_offset_x;
|
|
int pending_buffer_offset_y;
|
|
|
|
gint64 pending_frame_counter;
|
|
guint32 scale;
|
|
gboolean buffer_scale_dirty;
|
|
|
|
int shadow_left;
|
|
int shadow_right;
|
|
int shadow_top;
|
|
int shadow_bottom;
|
|
|
|
cairo_region_t *opaque_region;
|
|
gboolean opaque_region_dirty;
|
|
|
|
cairo_region_t *input_region;
|
|
gboolean input_region_dirty;
|
|
|
|
GdkRectangle last_sent_window_geometry;
|
|
|
|
struct {
|
|
gboolean is_initial_configure;
|
|
uint32_t serial;
|
|
gboolean is_dirty;
|
|
} pending;
|
|
|
|
struct {
|
|
int configured_width;
|
|
int configured_height;
|
|
gboolean surface_geometry_dirty;
|
|
} next_layout;
|
|
|
|
uint32_t last_configure_serial;
|
|
|
|
int state_freeze_count;
|
|
};
|
|
|
|
typedef struct _GdkWaylandSurfaceClass GdkWaylandSurfaceClass;
|
|
struct _GdkWaylandSurfaceClass
|
|
{
|
|
GdkSurfaceClass parent_class;
|
|
|
|
void (* handle_configure) (GdkWaylandSurface *surface);
|
|
|
|
void (* handle_frame) (GdkWaylandSurface *surface);
|
|
|
|
void (* hide_surface) (GdkWaylandSurface *surface);
|
|
};
|
|
|
|
#define GDK_WAYLAND_SURFACE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_WAYLAND_SURFACE, GdkWaylandSurfaceClass))
|
|
|
|
#define GDK_WAYLAND_SURFACE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_WAYLAND_SURFACE, GdkWaylandSurfaceClass))
|
|
|
|
void gdk_wayland_surface_create_wl_surface (GdkSurface *surface);
|
|
void gdk_wayland_surface_update_size (GdkSurface *surface,
|
|
int32_t width,
|
|
int32_t height,
|
|
int scale);
|
|
void gdk_wayland_surface_create_xdg_surface_resources (GdkSurface *surface);
|
|
void _gdk_wayland_surface_save_size (GdkSurface *surface);
|
|
|
|
void gdk_wayland_surface_hide_surface (GdkSurface *surface);
|
|
void gdk_wayland_surface_move_resize (GdkSurface *surface,
|
|
int x,
|
|
int y,
|
|
int width,
|
|
int height);
|
|
void gdk_wayland_surface_get_window_geometry (GdkSurface *surface,
|
|
GdkRectangle *geometry);
|
|
void gdk_wayland_surface_freeze_state (GdkSurface *surface);
|
|
void gdk_wayland_surface_thaw_state (GdkSurface *surface);
|
|
|
|
|
|
#define GDK_TYPE_WAYLAND_DRAG_SURFACE (gdk_wayland_drag_surface_get_type ())
|
|
GType gdk_wayland_drag_surface_get_type (void) G_GNUC_CONST;
|