wlroots/include/wlr/xwayland.h

79 lines
1.7 KiB
C
Raw Normal View History

#ifndef WLR_XWAYLAND_H
#define WLR_XWAYLAND_H
#include <time.h>
#include <stdbool.h>
#include <wlr/types/wlr_compositor.h>
#include <xcb/xcb.h>
struct wlr_xwm;
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;
struct wlr_compositor *compositor;
time_t server_start;
struct wl_event_source *sigusr1_source;
struct wl_listener destroy_listener;
struct wlr_xwm *xwm;
struct wl_list displayable_surfaces;
2017-09-28 12:54:57 +00:00
struct {
struct wl_signal new_surface;
} events;
void *data;
};
struct wlr_xwayland_surface {
xcb_window_t window_id;
uint32_t surface_id;
struct wl_list link;
2017-09-28 12:54:57 +00:00
struct wlr_surface *surface;
struct wl_listener surface_destroy_listener;
int16_t x, y;
uint16_t width, height;
bool override_redirect;
2017-09-28 12:54:57 +00:00
2017-09-29 13:57:21 +00:00
char *title;
char *class;
char *instance;
struct wlr_xwayland_surface *parent;
2017-09-29 20:26:03 +00:00
list_t *state; // list of xcb_atom_t
2017-09-29 20:43:14 +00:00
pid_t pid;
2017-09-29 13:57:21 +00:00
2017-09-28 12:54:57 +00:00
struct {
struct wl_signal destroy;
struct wl_signal request_configure;
struct wl_signal set_title;
struct wl_signal set_class;
2017-09-29 18:22:35 +00:00
struct wl_signal set_parent;
2017-09-29 20:26:03 +00:00
struct wl_signal set_state;
2017-09-28 12:54:57 +00:00
} events;
void *data;
};
struct wlr_xwayland_surface_configure_event {
struct wlr_xwayland_surface *surface;
int16_t x, y;
uint16_t width, height;
};
void wlr_xwayland_destroy(struct wlr_xwayland *wlr_xwayland);
struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
struct wlr_compositor *compositor);
void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland,
struct wlr_xwayland_surface *surface);
void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland,
struct wlr_xwayland_surface *surface);
#endif