 1045dda035
			
		
	
	1045dda035
	
	
	
		
			
			Implement as a managed GdkDragContext, which actually fits nicely with the drag-and-drop model in wayland.
		
			
				
	
	
		
			122 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			122 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * gdkdisplay-wayland.h
 | |
|  *
 | |
|  * Copyright 2001 Sun Microsystems Inc.
 | |
|  *
 | |
|  * Erwann Chenede <erwann.chenede@sun.com>
 | |
|  *
 | |
|  * This library is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Library 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
 | |
|  * Library General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Library General Public
 | |
|  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #ifndef __GDK_WAYLAND_DISPLAY__
 | |
| #define __GDK_WAYLAND_DISPLAY__
 | |
| 
 | |
| #include <config.h>
 | |
| #include <stdint.h>
 | |
| #include <wayland-client.h>
 | |
| #include <wayland-cursor.h>
 | |
| #include <wayland-egl.h>
 | |
| #include <gdk/wayland/gtk-shell-client-protocol.h>
 | |
| #include <gdk/wayland/xdg-shell-unstable-v5-client-protocol.h>
 | |
| 
 | |
| #include <glib.h>
 | |
| #include <gdk/gdkkeys.h>
 | |
| #include <gdk/gdkwindow.h>
 | |
| #include <gdk/gdkinternals.h>
 | |
| #include <gdk/gdk.h>		/* For gdk_get_program_class() */
 | |
| 
 | |
| #include "gdkdisplayprivate.h"
 | |
| 
 | |
| #include <epoxy/egl.h>
 | |
| 
 | |
| G_BEGIN_DECLS
 | |
| 
 | |
| #define GDK_WAYLAND_MAX_THEME_SCALE 2
 | |
| #define GDK_WAYLAND_THEME_SCALES_COUNT GDK_WAYLAND_MAX_THEME_SCALE
 | |
| 
 | |
| #define GDK_ZWP_POINTER_GESTURES_V1_VERSION 1
 | |
| 
 | |
| typedef struct _GdkWaylandSelection GdkWaylandSelection;
 | |
| 
 | |
| struct _GdkWaylandDisplay
 | |
| {
 | |
|   GdkDisplay parent_instance;
 | |
|   GdkScreen *screen;
 | |
| 
 | |
|   /* input GdkDevice list */
 | |
|   GList *input_devices;
 | |
| 
 | |
|   /* Startup notification */
 | |
|   gchar *startup_notification_id;
 | |
| 
 | |
|   /* Most recent serial */
 | |
|   guint32 serial;
 | |
| 
 | |
|   /* Wayland fields below */
 | |
|   struct wl_display *wl_display;
 | |
|   struct wl_registry *wl_registry;
 | |
|   struct wl_compositor *compositor;
 | |
|   struct wl_shm *shm;
 | |
|   struct xdg_shell *xdg_shell;
 | |
|   struct gtk_shell *gtk_shell;
 | |
|   struct wl_input_device *input_device;
 | |
|   struct wl_data_device_manager *data_device_manager;
 | |
|   struct wl_subcompositor *subcompositor;
 | |
|   struct zwp_pointer_gestures_v1 *pointer_gestures;
 | |
| 
 | |
|   GList *async_roundtrips;
 | |
| 
 | |
|   /* Keep track of the ID's of the known globals and their corresponding
 | |
|    * names. This way we can check whether an interface is known, and
 | |
|    * remove globals given its ID. This table is not expected to be very
 | |
|    * large, meaning the lookup by interface name time is insignificant. */
 | |
|   GHashTable *known_globals;
 | |
|   GList *on_has_globals_closures;
 | |
| 
 | |
|   struct wl_cursor_theme *scaled_cursor_themes[GDK_WAYLAND_THEME_SCALES_COUNT];
 | |
|   gchar *cursor_theme_name;
 | |
|   int cursor_theme_size;
 | |
|   GHashTable *cursor_cache;
 | |
| 
 | |
|   GSource *event_source;
 | |
| 
 | |
|   int compositor_version;
 | |
|   int seat_version;
 | |
|   int data_device_manager_version;
 | |
| 
 | |
|   struct xkb_context *xkb_context;
 | |
| 
 | |
|   GdkWaylandSelection *selection;
 | |
| 
 | |
|   /* egl info */
 | |
|   EGLDisplay egl_display;
 | |
|   int egl_major_version;
 | |
|   int egl_minor_version;
 | |
| 
 | |
|   guint have_egl : 1;
 | |
|   guint have_egl_khr_create_context : 1;
 | |
|   guint have_egl_buffer_age : 1;
 | |
|   guint have_egl_swap_buffers_with_damage : 1;
 | |
|   guint have_egl_surfaceless_context : 1;
 | |
| };
 | |
| 
 | |
| struct _GdkWaylandDisplayClass
 | |
| {
 | |
|   GdkDisplayClass parent_class;
 | |
| };
 | |
| 
 | |
| G_END_DECLS
 | |
| 
 | |
| #endif  /* __GDK_WAYLAND_DISPLAY__ */
 |