mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
a9e980e578
We use a ref-count mechanism to track whether parts of the init sequence still needs round trips to receive remaining initial state. Typically we need a couple of roundtrips total to get the global list, then the input and output configurations, but with the ref-count we avoid making global assumptions like that. https://bugzilla.gnome.org/show_bug.cgi?id=696340
82 lines
2.0 KiB
C
82 lines
2.0 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 <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"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
struct _GdkWaylandDisplay
|
|
{
|
|
GdkDisplay parent_instance;
|
|
GdkScreen *screen;
|
|
|
|
/* input GdkDevice list */
|
|
GList *input_devices;
|
|
|
|
/* Startup notification */
|
|
gchar *startup_notification_id;
|
|
|
|
/* Time of most recent user interaction and most recent serial */
|
|
gulong user_time;
|
|
guint32 serial;
|
|
|
|
/* Wayland fields below */
|
|
struct wl_display *wl_display;
|
|
struct wl_registry *wl_registry;
|
|
struct wl_compositor *compositor;
|
|
struct wl_shm *shm;
|
|
struct wl_shell *shell;
|
|
struct wl_input_device *input_device;
|
|
struct wl_data_device_manager *data_device_manager;
|
|
|
|
struct wl_cursor_theme *cursor_theme;
|
|
GSList *cursor_cache;
|
|
|
|
GSource *event_source;
|
|
|
|
int init_ref_count;
|
|
|
|
struct xkb_context *xkb_context;
|
|
};
|
|
|
|
struct _GdkWaylandDisplayClass
|
|
{
|
|
GdkDisplayClass parent_class;
|
|
};
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GDK_WAYLAND_DISPLAY__ */
|