2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_XWAYLAND_H
|
|
|
|
#define WLR_XWAYLAND_H
|
|
|
|
|
2017-08-19 21:25:26 +02:00
|
|
|
#include <time.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wlr/types/wlr_compositor.h>
|
2017-08-20 14:18:29 +02:00
|
|
|
#include <xcb/xcb.h>
|
2017-08-19 21:25:26 +02:00
|
|
|
|
|
|
|
struct wlr_xwm;
|
2017-08-19 17:59:31 +02:00
|
|
|
|
|
|
|
struct wlr_xwayland {
|
2017-08-20 14:18:29 +02:00
|
|
|
pid_t pid;
|
|
|
|
int display;
|
|
|
|
int x_fd[2], wl_fd[2], wm_fd[2];
|
|
|
|
struct wl_client *client;
|
2017-08-19 17:59:31 +02:00
|
|
|
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-23 23:11:44 +02:00
|
|
|
struct wl_listener destroy_listener;
|
2017-08-19 21:25:26 +02:00
|
|
|
struct wlr_xwm *xwm;
|
2017-09-28 23:26:31 +02:00
|
|
|
struct wl_list displayable_surfaces;
|
2017-09-28 14:54:57 +02:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct wl_signal new_surface;
|
|
|
|
} events;
|
|
|
|
|
|
|
|
void *data;
|
2017-08-20 14:18:29 +02:00
|
|
|
};
|
|
|
|
|
2017-09-28 23:26:31 +02:00
|
|
|
struct wlr_xwayland_surface {
|
2017-08-20 14:18:29 +02:00
|
|
|
xcb_window_t window_id;
|
|
|
|
uint32_t surface_id;
|
|
|
|
struct wl_list link;
|
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
struct wlr_surface *surface;
|
2017-08-20 14:18:29 +02:00
|
|
|
struct wl_listener surface_destroy_listener;
|
|
|
|
int16_t x, y;
|
|
|
|
uint16_t width, height;
|
|
|
|
bool override_redirect;
|
2017-09-28 14:54:57 +02:00
|
|
|
|
2017-09-29 15:57:21 +02:00
|
|
|
char *title;
|
|
|
|
char *class;
|
|
|
|
char *instance;
|
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
struct {
|
|
|
|
struct wl_signal destroy;
|
|
|
|
} events;
|
|
|
|
|
|
|
|
void *data;
|
2017-08-19 17:59:31 +02:00
|
|
|
};
|
|
|
|
|
2017-08-20 07:59:03 +02:00
|
|
|
void wlr_xwayland_destroy(struct wlr_xwayland *wlr_xwayland);
|
|
|
|
struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
|
2017-09-28 23:26:31 +02:00
|
|
|
struct wlr_compositor *compositor);
|
|
|
|
void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland,
|
|
|
|
struct wlr_xwayland_surface *surface);
|
2017-08-19 17:59:31 +02:00
|
|
|
|
|
|
|
#endif
|