2017-10-22 16:37:30 +02:00
|
|
|
#ifndef _SWAY_SERVER_H
|
|
|
|
#define _SWAY_SERVER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
#include <wlr/backend/session.h>
|
2018-07-13 22:53:56 +02:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-11-23 03:06:08 +01:00
|
|
|
#include <wlr/types/wlr_compositor.h>
|
2017-11-22 23:56:21 +01:00
|
|
|
#include <wlr/types/wlr_data_device.h>
|
2018-03-28 21:47:22 +02:00
|
|
|
#include <wlr/types/wlr_layer_shell.h>
|
2018-07-13 22:53:56 +02:00
|
|
|
#include <wlr/types/wlr_server_decoration.h>
|
2017-11-12 00:06:50 +01:00
|
|
|
#include <wlr/types/wlr_xdg_shell_v6.h>
|
2018-05-13 17:38:56 +02:00
|
|
|
#include <wlr/types/wlr_xdg_shell.h>
|
2017-10-22 16:37:30 +02:00
|
|
|
// TODO WLR: make Xwayland optional
|
2018-06-23 08:24:11 +02:00
|
|
|
#include "list.h"
|
2018-07-25 12:17:10 +02:00
|
|
|
#include "config.h"
|
2018-07-24 22:16:06 +02:00
|
|
|
#ifdef HAVE_XWAYLAND
|
2018-06-18 23:49:28 +02:00
|
|
|
#include "sway/xwayland.h"
|
2018-07-24 22:16:06 +02:00
|
|
|
#endif
|
2017-10-22 16:37:30 +02:00
|
|
|
|
|
|
|
struct sway_server {
|
|
|
|
struct wl_display *wl_display;
|
|
|
|
struct wl_event_loop *wl_event_loop;
|
2017-11-11 17:58:43 +01:00
|
|
|
const char *socket;
|
2017-10-22 16:37:30 +02:00
|
|
|
|
|
|
|
struct wlr_backend *backend;
|
|
|
|
|
2017-11-23 03:06:08 +01:00
|
|
|
struct wlr_compositor *compositor;
|
2017-10-22 16:37:30 +02:00
|
|
|
struct wlr_data_device_manager *data_device_manager;
|
2017-10-22 17:38:30 +02:00
|
|
|
|
2017-12-07 13:31:49 +01:00
|
|
|
struct sway_input_manager *input;
|
2017-11-11 17:58:43 +01:00
|
|
|
|
2018-02-14 20:51:51 +01:00
|
|
|
struct wl_listener new_output;
|
2017-11-12 00:06:50 +01:00
|
|
|
|
2018-07-02 02:26:57 +02:00
|
|
|
struct wlr_idle *idle;
|
|
|
|
struct sway_idle_inhibit_manager_v1 *idle_inhibit_manager_v1;
|
2018-06-27 11:16:49 +02:00
|
|
|
|
2018-03-28 21:47:22 +02:00
|
|
|
struct wlr_layer_shell *layer_shell;
|
|
|
|
struct wl_listener layer_shell_surface;
|
|
|
|
|
2017-11-12 00:06:50 +01:00
|
|
|
struct wlr_xdg_shell_v6 *xdg_shell_v6;
|
|
|
|
struct wl_listener xdg_shell_v6_surface;
|
2017-12-04 12:19:36 +01:00
|
|
|
|
2018-05-13 17:38:56 +02:00
|
|
|
struct wlr_xdg_shell *xdg_shell;
|
|
|
|
struct wl_listener xdg_shell_surface;
|
2018-07-13 22:53:56 +02:00
|
|
|
|
2018-07-24 23:37:41 +02:00
|
|
|
#ifdef HAVE_XWAYLAND
|
2018-06-18 23:49:28 +02:00
|
|
|
struct sway_xwayland xwayland;
|
2017-12-04 12:19:36 +01:00
|
|
|
struct wl_listener xwayland_surface;
|
2018-06-18 23:49:28 +02:00
|
|
|
struct wl_listener xwayland_ready;
|
2018-07-24 23:37:41 +02:00
|
|
|
#endif
|
2018-07-13 22:53:56 +02:00
|
|
|
|
|
|
|
struct wlr_server_decoration_manager *server_decoration_manager;
|
|
|
|
struct wl_listener server_decoration;
|
2018-07-29 19:31:10 +02:00
|
|
|
struct wl_list decorations; // sway_server_decoration::link
|
2018-07-13 22:53:56 +02:00
|
|
|
|
2018-08-18 08:58:50 +02:00
|
|
|
size_t txn_timeout_ms;
|
2018-06-27 11:07:48 +02:00
|
|
|
list_t *transactions;
|
2018-07-14 15:14:55 +02:00
|
|
|
list_t *dirty_containers;
|
2017-10-22 16:37:30 +02:00
|
|
|
};
|
|
|
|
|
2017-11-11 17:58:43 +01:00
|
|
|
struct sway_server server;
|
|
|
|
|
2018-06-13 00:39:24 +02:00
|
|
|
/* Prepares an unprivileged server_init by performing all privileged operations in advance */
|
|
|
|
bool server_privileged_prepare(struct sway_server *server);
|
2017-10-22 16:37:30 +02:00
|
|
|
bool server_init(struct sway_server *server);
|
|
|
|
void server_fini(struct sway_server *server);
|
2018-07-19 07:39:58 +02:00
|
|
|
bool server_start_backend(struct sway_server *server);
|
2017-11-11 17:58:43 +01:00
|
|
|
void server_run(struct sway_server *server);
|
2017-10-22 16:37:30 +02:00
|
|
|
|
2018-02-14 20:51:51 +01:00
|
|
|
void handle_new_output(struct wl_listener *listener, void *data);
|
2017-10-22 16:37:30 +02:00
|
|
|
|
2018-06-27 11:16:49 +02:00
|
|
|
void handle_idle_inhibitor_v1(struct wl_listener *listener, void *data);
|
2018-03-28 21:47:22 +02:00
|
|
|
void handle_layer_shell_surface(struct wl_listener *listener, void *data);
|
2017-11-12 00:06:50 +01:00
|
|
|
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
|
2018-05-13 17:38:56 +02:00
|
|
|
void handle_xdg_shell_surface(struct wl_listener *listener, void *data);
|
2018-07-24 22:16:06 +02:00
|
|
|
#ifdef HAVE_XWAYLAND
|
2017-12-04 12:19:36 +01:00
|
|
|
void handle_xwayland_surface(struct wl_listener *listener, void *data);
|
2018-07-24 22:16:06 +02:00
|
|
|
#endif
|
2018-07-13 22:53:56 +02:00
|
|
|
void handle_server_decoration(struct wl_listener *listener, void *data);
|
|
|
|
|
2017-10-22 16:37:30 +02:00
|
|
|
#endif
|