SDL  2.0
SDL_waylandvideo.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 
22 #include "../../SDL_internal.h"
23 
24 #ifndef SDL_waylandvideo_h_
25 #define SDL_waylandvideo_h_
26 
27 
28 /*
29 !!! FIXME: xdg_wm_base is the stable replacement for zxdg_shell_v6. While it's
30 !!! FIXME: harmless to leave it here, consider deleting the obsolete codepath
31 !!! FIXME: soon, since Wayland (with xdg_wm_base) will probably be mainline
32 !!! FIXME: by the time people are relying on this SDL target. It's available
33 !!! FIXME: in Ubuntu 18.04 (and other distros).
34 */
35 
36 #define MESA_EGL_NO_X11_HEADERS
37 #include <EGL/egl.h>
38 #include "wayland-util.h"
39 
40 struct xkb_context;
41 struct SDL_WaylandInput;
42 
43 #ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
44 struct SDL_WaylandTouch;
45 struct qt_surface_extension;
46 struct qt_windowmanager;
47 #endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
48 
49 typedef struct {
50  struct wl_display *display;
52  struct wl_registry *registry;
53  struct wl_compositor *compositor;
54  struct wl_shm *shm;
55  struct wl_cursor_theme *cursor_theme;
56  struct wl_pointer *pointer;
57  struct {
58  struct xdg_wm_base *xdg;
59  struct zxdg_shell_v6 *zxdg;
60  struct wl_shell *wl;
61  } shell;
62  struct zwp_relative_pointer_manager_v1 *relative_pointer_manager;
63  struct zwp_pointer_constraints_v1 *pointer_constraints;
64  struct wl_data_device_manager *data_device_manager;
65  struct zxdg_decoration_manager_v1 *decoration_manager;
66  struct org_kde_kwin_server_decoration_manager *kwin_server_decoration_manager;
67 
71 
72  struct xkb_context *xkb_context;
73  struct SDL_WaylandInput *input;
74 
75 #ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
76  struct SDL_WaylandTouch *touch;
77  struct qt_surface_extension *surface_extension;
78  struct qt_windowmanager *windowmanager;
79 #endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
80 
81  char *classname;
82 
85 
86 typedef struct {
87  struct wl_output *output;
88  float scale_factor;
90 
91 #endif /* SDL_waylandvideo_h_ */
92 
93 /* vi: set ts=4 sw=4 expandtab: */
EGLContext
void * EGLContext
Definition: egl.h:60
SDL_WaylandOutputData
Definition: SDL_waylandvideo.h:86
SDL_VideoData::zxdg
struct zxdg_shell_v6 * zxdg
Definition: SDL_waylandvideo.h:59
SDL_WaylandOutputData::scale_factor
float scale_factor
Definition: SDL_waylandvideo.h:88
SDL_VideoData::registry
struct wl_registry * registry
Definition: SDL_waylandvideo.h:52
SDL_VideoData::input
struct SDL_WaylandInput * input
Definition: SDL_waylandvideo.h:73
SDL_WaylandOutputData::output
struct wl_output * output
Definition: SDL_waylandvideo.h:87
SDL_VideoData::classname
char * classname
Definition: SDL_waylandvideo.h:81
SDL_VideoData::relative_pointer_manager
struct zwp_relative_pointer_manager_v1 * relative_pointer_manager
Definition: SDL_waylandvideo.h:62
SDL_VideoData::decoration_manager
struct zxdg_decoration_manager_v1 * decoration_manager
Definition: SDL_waylandvideo.h:65
SDL_VideoData::econf
EGLConfig econf
Definition: SDL_waylandvideo.h:70
SDL_VideoData::compositor
struct wl_compositor * compositor
Definition: SDL_waylandvideo.h:53
SDL_VideoData::data_device_manager
struct wl_data_device_manager * data_device_manager
Definition: SDL_waylandvideo.h:64
egl.h
SDL_VideoData::wl
struct wl_shell * wl
Definition: SDL_waylandvideo.h:60
EGLDisplay
void * EGLDisplay
Definition: egl.h:55
EGLConfig
void * EGLConfig
Definition: egl.h:58
SDL_VideoData::relative_mouse_mode
int relative_mouse_mode
Definition: SDL_waylandvideo.h:83
SDL_VideoData::xkb_context
struct xkb_context * xkb_context
Definition: SDL_waylandvideo.h:72
SDL_VideoData::context
EGLContext context
Definition: SDL_waylandvideo.h:69
SDL_VideoData::kwin_server_decoration_manager
struct org_kde_kwin_server_decoration_manager * kwin_server_decoration_manager
Definition: SDL_waylandvideo.h:66
SDL_VideoData::shm
struct wl_shm * shm
Definition: SDL_waylandvideo.h:54
SDL_VideoData::edpy
EGLDisplay edpy
Definition: SDL_waylandvideo.h:68
SDL_VideoData::display
struct wl_display * display
Definition: SDL_waylandvideo.h:50
SDL_VideoData::pointer
struct wl_pointer * pointer
Definition: SDL_waylandvideo.h:56
SDL_VideoData::cursor_theme
struct wl_cursor_theme * cursor_theme
Definition: SDL_waylandvideo.h:55
SDL_VideoData::display_disconnected
int display_disconnected
Definition: SDL_waylandvideo.h:51
SDL_VideoData::pointer_constraints
struct zwp_pointer_constraints_v1 * pointer_constraints
Definition: SDL_waylandvideo.h:63
SDL_VideoData
Definition: SDL_androidvideo.h:36
SDL_VideoData::xdg
struct xdg_wm_base * xdg
Definition: SDL_waylandvideo.h:58