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-10-22 04:00:04 +02:00
|
|
|
#include <wlr/types/wlr_list.h>
|
2017-08-19 21:25:26 +02:00
|
|
|
|
2017-10-05 12:32:12 +02:00
|
|
|
#ifdef HAS_XCB_ICCCM
|
|
|
|
#include <xcb/xcb_icccm.h>
|
|
|
|
#endif
|
|
|
|
|
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 14:54:57 +02:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct wl_signal new_surface;
|
|
|
|
} events;
|
|
|
|
|
|
|
|
void *data;
|
2017-08-20 14:18:29 +02:00
|
|
|
};
|
|
|
|
|
2017-10-05 16:49:47 +02:00
|
|
|
enum wlr_xwayland_surface_decorations {
|
|
|
|
WLR_XWAYLAND_SURFACE_DECORATIONS_ALL = 0,
|
|
|
|
WLR_XWAYLAND_SURFACE_DECORATIONS_NO_BORDER = 1,
|
|
|
|
WLR_XWAYLAND_SURFACE_DECORATIONS_NO_TITLE = 2,
|
|
|
|
};
|
|
|
|
|
2017-10-05 22:23:37 +02:00
|
|
|
struct wlr_xwayland_surface_hints {
|
|
|
|
uint32_t flags;
|
|
|
|
uint32_t input;
|
|
|
|
int32_t initial_state;
|
|
|
|
xcb_pixmap_t icon_pixmap;
|
|
|
|
xcb_window_t icon_window;
|
|
|
|
int32_t icon_x, icon_y;
|
|
|
|
xcb_pixmap_t icon_mask;
|
|
|
|
xcb_window_t window_group;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_xwayland_surface_size_hints {
|
|
|
|
uint32_t flags;
|
|
|
|
int32_t x, y;
|
|
|
|
int32_t width, height;
|
|
|
|
int32_t min_width, min_height;
|
|
|
|
int32_t max_width, max_height;
|
|
|
|
int32_t width_inc, height_inc;
|
|
|
|
int32_t base_width, base_height;
|
|
|
|
int32_t min_aspect_num, min_aspect_den;
|
|
|
|
int32_t max_aspect_num, max_aspect_den;
|
|
|
|
uint32_t win_gravity;
|
|
|
|
};
|
|
|
|
|
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;
|
2017-10-24 18:00:43 +02:00
|
|
|
struct wlr_xwm *xwm;
|
2017-08-20 14:18:29 +02:00
|
|
|
uint32_t surface_id;
|
2017-10-24 20:37:18 +02:00
|
|
|
|
2017-10-25 00:57:20 +02:00
|
|
|
struct wl_list link;
|
2017-10-24 20:37:18 +02:00
|
|
|
struct wl_list unpaired_link;
|
2017-08-20 14:18:29 +02:00
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
struct wlr_surface *surface;
|
2017-08-20 14:18:29 +02:00
|
|
|
int16_t x, y;
|
|
|
|
uint16_t width, height;
|
|
|
|
bool override_redirect;
|
2017-10-24 18:00:43 +02:00
|
|
|
bool mapped;
|
|
|
|
bool added;
|
2017-09-28 14:54:57 +02:00
|
|
|
|
2017-09-29 15:57:21 +02:00
|
|
|
char *title;
|
|
|
|
char *class;
|
|
|
|
char *instance;
|
2017-09-29 16:44:22 +02:00
|
|
|
struct wlr_xwayland_surface *parent;
|
2017-10-22 04:00:04 +02:00
|
|
|
struct wlr_list *state; // list of xcb_atom_t
|
2017-09-29 22:43:14 +02:00
|
|
|
pid_t pid;
|
2017-09-29 15:57:21 +02:00
|
|
|
|
2017-09-29 23:03:01 +02:00
|
|
|
xcb_atom_t *window_type;
|
|
|
|
size_t window_type_len;
|
|
|
|
|
2017-09-29 23:18:12 +02:00
|
|
|
xcb_atom_t *protocols;
|
|
|
|
size_t protocols_len;
|
|
|
|
|
2017-10-05 16:49:47 +02:00
|
|
|
uint32_t decorations;
|
2017-10-05 22:23:37 +02:00
|
|
|
struct wlr_xwayland_surface_hints *hints;
|
|
|
|
uint32_t hints_urgency;
|
|
|
|
struct wlr_xwayland_surface_size_hints *size_hints;
|
2017-10-05 11:47:58 +02:00
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
struct {
|
|
|
|
struct wl_signal destroy;
|
2017-09-29 18:28:38 +02:00
|
|
|
struct wl_signal request_configure;
|
2017-10-25 03:07:46 +02:00
|
|
|
struct wl_signal map_notify;
|
|
|
|
struct wl_signal unmap_notify;
|
2017-09-29 18:28:38 +02:00
|
|
|
struct wl_signal set_title;
|
|
|
|
struct wl_signal set_class;
|
2017-09-29 20:22:35 +02:00
|
|
|
struct wl_signal set_parent;
|
2017-09-29 22:26:03 +02:00
|
|
|
struct wl_signal set_state;
|
2017-09-29 23:03:01 +02:00
|
|
|
struct wl_signal set_pid;
|
|
|
|
struct wl_signal set_window_type;
|
2017-09-28 14:54:57 +02:00
|
|
|
} events;
|
|
|
|
|
2017-10-24 18:00:43 +02:00
|
|
|
struct wl_listener surface_destroy;
|
|
|
|
struct wl_listener surface_commit;
|
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
void *data;
|
2017-08-19 17:59:31 +02:00
|
|
|
};
|
|
|
|
|
2017-09-29 18:28:38 +02:00
|
|
|
struct wlr_xwayland_surface_configure_event {
|
|
|
|
struct wlr_xwayland_surface *surface;
|
|
|
|
int16_t x, y;
|
|
|
|
uint16_t width, height;
|
|
|
|
};
|
|
|
|
|
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,
|
2017-10-25 14:39:28 +02:00
|
|
|
struct wlr_xwayland_surface *surface, bool activated);
|
2017-09-29 18:28:38 +02:00
|
|
|
void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland,
|
2017-09-30 16:33:04 +02:00
|
|
|
struct wlr_xwayland_surface *surface, int16_t x, int16_t y,
|
|
|
|
uint16_t width, uint16_t height);
|
2017-09-29 23:18:12 +02:00
|
|
|
void wlr_xwayland_surface_close(struct wlr_xwayland *wlr_xwayland,
|
|
|
|
struct wlr_xwayland_surface *surface);
|
2017-08-19 17:59:31 +02:00
|
|
|
|
|
|
|
#endif
|