2017-08-19 17:59:31 +02:00
|
|
|
#ifndef _WLR_XWAYLAND_H
|
|
|
|
#define _WLR_XWAYLAND_H
|
2017-08-19 21:25:26 +02:00
|
|
|
#include <time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wlr/types/wlr_compositor.h>
|
|
|
|
|
|
|
|
struct wlr_xwm;
|
2017-08-19 17:59:31 +02:00
|
|
|
|
|
|
|
struct wlr_xwayland {
|
|
|
|
pid_t pid;
|
|
|
|
int display;
|
|
|
|
int x_fd[2], wl_fd[2], wm_fd[2];
|
|
|
|
struct wl_client *client;
|
|
|
|
struct wl_display *wl_display;
|
2017-08-19 21:25:26 +02:00
|
|
|
struct wlr_compositor *compositor;
|
2017-08-19 17:59:31 +02:00
|
|
|
time_t server_start;
|
2017-08-19 21:25:26 +02:00
|
|
|
|
2017-08-19 23:09:59 +02:00
|
|
|
struct wl_event_source *sigusr1_source;
|
2017-08-19 21:25:26 +02:00
|
|
|
struct wlr_xwm *xwm;
|
2017-08-19 17:59:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void wlr_xwayland_finish(struct wlr_xwayland *wlr_xwayland);
|
|
|
|
bool wlr_xwayland_init(struct wlr_xwayland *wlr_xwayland,
|
2017-08-19 21:25:26 +02:00
|
|
|
struct wl_display *wl_display, struct wlr_compositor *compositor);
|
2017-08-19 17:59:31 +02:00
|
|
|
|
|
|
|
#endif
|