gamescope/src/wlserver.hpp

102 lines
2.4 KiB
C++
Raw Normal View History

// Wayland stuff
2019-11-21 05:16:53 +00:00
#pragma once
#include <wayland-server-core.h>
2021-04-01 21:58:33 +00:00
#include <atomic>
2019-11-21 05:16:53 +00:00
#define WLSERVER_BUTTON_COUNT 4
#define WLSERVER_TOUCH_COUNT 11 // Ten fingers + nose ought to be enough for anyone
2019-11-21 05:16:53 +00:00
struct wlserver_t {
struct wl_display *wl_display;
struct wl_event_loop *wl_event_loop;
int wl_event_loop_fd;
2019-11-21 05:16:53 +00:00
struct {
struct wlr_backend *multi_backend;
struct wlr_backend *noop_backend;
struct wlr_backend *headless_backend;
struct wlr_backend *libinput_backend;
2019-11-21 05:16:53 +00:00
struct wlr_renderer *renderer;
struct wlr_compositor *compositor;
struct wlr_xwayland_server *xwayland_server;
2019-11-21 05:16:53 +00:00
struct wlr_session *session;
struct wlr_seat *seat;
struct wlr_output *output;
} wlr;
struct wlr_surface *mouse_focus_surface;
double mouse_surface_cursorx;
double mouse_surface_cursory;
bool button_held[ WLSERVER_BUTTON_COUNT ];
bool touch_down[ WLSERVER_TOUCH_COUNT ];
};
struct wlserver_keyboard {
struct wlr_input_device *device;
struct wl_listener modifiers;
struct wl_listener key;
};
struct wlserver_pointer {
struct wlr_input_device *device;
struct wl_listener motion;
struct wl_listener button;
};
struct wlserver_touch {
struct wlr_input_device *device;
struct wl_listener down;
struct wl_listener up;
struct wl_listener motion;
2019-11-21 05:16:53 +00:00
};
extern struct wlserver_t wlserver;
2019-11-23 06:58:07 +00:00
extern bool run;
2019-11-23 06:58:07 +00:00
extern int g_nTouchClickMode;
void xwayland_surface_role_commit(struct wlr_surface *wlr_surface);
int wlserver_init( int argc, char **argv, bool bIsNested );
2019-11-23 06:58:07 +00:00
int wlserver_run(void);
void nudge_steamcompmgr(void);
void wlserver_lock(void);
void wlserver_unlock(void);
void wlserver_keyboardfocus( struct wlr_surface *surface );
2020-01-18 23:10:14 +00:00
void wlserver_key( uint32_t key, bool press, uint32_t time );
void wlserver_mousefocus( struct wlr_surface *wlrsurface );
void wlserver_mousemotion( int x, int y, uint32_t time );
void wlserver_mousebutton( int button, bool press, uint32_t time );
void wlserver_mousewheel( int x, int y, uint32_t time );
2020-01-23 05:50:01 +00:00
void wlserver_send_frame_done( struct wlr_surface *surf, const struct timespec *when );
const char *wlserver_get_nested_display( void );
2021-04-01 21:58:33 +00:00
struct wlserver_surface
{
std::atomic<struct wlr_surface *> wlr;
// owned by wlserver
long id;
struct wl_list pending_link;
struct wl_listener destroy;
};
void wlserver_surface_init( struct wlserver_surface *surf );
void wlserver_surface_set_id( struct wlserver_surface *surf, long id );
void wlserver_surface_finish( struct wlserver_surface *surf );