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 <stdbool.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <time.h>
|
2017-12-27 14:37:55 +01:00
|
|
|
#include <wlr/config.h>
|
2017-08-19 21:25:26 +02:00
|
|
|
#include <wlr/types/wlr_compositor.h>
|
2017-11-22 14:10:06 +01:00
|
|
|
#include <wlr/types/wlr_seat.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-11-02 16:49:22 +01:00
|
|
|
struct wlr_xwayland_cursor;
|
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-12-08 01:38:45 +01:00
|
|
|
struct wl_listener client_destroy;
|
2017-12-08 00:59:37 +01:00
|
|
|
struct wl_listener display_destroy;
|
2017-08-19 21:25:26 +02:00
|
|
|
struct wlr_xwm *xwm;
|
2017-11-02 16:49:22 +01:00
|
|
|
struct wlr_xwayland_cursor *cursor;
|
2017-09-28 14:54:57 +02:00
|
|
|
|
2017-12-29 20:50:50 +01:00
|
|
|
/* Anything above seat is reset on Xwayland restart, rest is conserved */
|
|
|
|
struct wlr_seat *seat;
|
|
|
|
struct wl_listener seat_destroy;
|
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
struct {
|
2017-11-12 22:01:31 +01:00
|
|
|
struct wl_signal ready;
|
2017-09-28 14:54:57 +02:00
|
|
|
struct wl_signal new_surface;
|
|
|
|
} events;
|
|
|
|
|
2017-12-13 23:54:19 +01:00
|
|
|
/**
|
|
|
|
* Add a custom event handler to xwayland. Return 1 if the event was
|
|
|
|
* handled or 0 to use the default wlr-xwayland handler. wlr-xwayland will
|
|
|
|
* free the event.
|
|
|
|
*/
|
|
|
|
int (*user_event_handler)(struct wlr_xwm *xwm, xcb_generic_event_t *event);
|
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-04-12 05:09:13 +02:00
|
|
|
/**
|
|
|
|
* An Xwayland user interface component. It has an absolute position in
|
|
|
|
* layout-local coordinates.
|
|
|
|
*
|
|
|
|
* When a surface is ready to be displayed, the `map` event is emitted. When a
|
|
|
|
* surface should no longer be displayed, the `unmap` event is emitted. The
|
|
|
|
* `unmap` event is guaranted to be emitted before the `destroy` event if the
|
|
|
|
* view is destroyed when mapped.
|
|
|
|
*/
|
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;
|
2017-10-27 19:05:14 +02:00
|
|
|
uint16_t saved_width, saved_height;
|
2017-08-20 14:18:29 +02:00
|
|
|
bool override_redirect;
|
2017-10-24 18:00:43 +02:00
|
|
|
bool mapped;
|
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 22:43:14 +02:00
|
|
|
pid_t pid;
|
2017-09-29 15:57:21 +02:00
|
|
|
|
2018-01-14 18:19:37 +01:00
|
|
|
struct wl_list children; // wlr_xwayland_surface::parent_link
|
|
|
|
struct wlr_xwayland_surface *parent;
|
|
|
|
struct wl_list parent_link; // wlr_xwayland_surface::children
|
|
|
|
|
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
|
|
|
|
2018-04-08 22:28:01 +02:00
|
|
|
bool pinging;
|
|
|
|
struct wl_event_source *ping_timer;
|
|
|
|
|
2017-10-26 21:58:18 +02:00
|
|
|
// _NET_WM_STATE
|
|
|
|
bool fullscreen;
|
2018-04-12 05:09:13 +02:00
|
|
|
bool maximized_vert, maximized_horz;
|
2017-10-26 21:58:18 +02:00
|
|
|
|
2017-10-27 21:20:50 +02:00
|
|
|
bool has_alpha;
|
|
|
|
|
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-27 16:48:09 +02:00
|
|
|
struct wl_signal request_move;
|
|
|
|
struct wl_signal request_resize;
|
2017-10-27 19:05:14 +02:00
|
|
|
struct wl_signal request_maximize;
|
|
|
|
struct wl_signal request_fullscreen;
|
|
|
|
|
2018-03-30 17:01:23 +02:00
|
|
|
struct wl_signal map;
|
|
|
|
struct wl_signal unmap;
|
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 23:03:01 +02:00
|
|
|
struct wl_signal set_pid;
|
|
|
|
struct wl_signal set_window_type;
|
2018-04-08 22:28:01 +02:00
|
|
|
struct wl_signal ping_timeout;
|
2017-09-28 14:54:57 +02:00
|
|
|
} events;
|
|
|
|
|
2017-10-24 18:00:43 +02:00
|
|
|
struct wl_listener surface_destroy;
|
|
|
|
|
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-10-27 16:48:09 +02:00
|
|
|
// TODO: maybe add a seat to these
|
|
|
|
struct wlr_xwayland_move_event {
|
|
|
|
struct wlr_xwayland_surface *surface;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_xwayland_resize_event {
|
|
|
|
struct wlr_xwayland_surface *surface;
|
|
|
|
uint32_t edges;
|
|
|
|
};
|
|
|
|
|
2017-08-20 07:59:03 +02:00
|
|
|
struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
|
2017-09-28 23:26:31 +02:00
|
|
|
struct wlr_compositor *compositor);
|
2017-10-27 19:05:14 +02:00
|
|
|
|
|
|
|
void wlr_xwayland_destroy(struct wlr_xwayland *wlr_xwayland);
|
|
|
|
|
2017-11-02 16:49:22 +01:00
|
|
|
void wlr_xwayland_set_cursor(struct wlr_xwayland *wlr_xwayland,
|
|
|
|
uint8_t *pixels, uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
int32_t hotspot_x, int32_t hotspot_y);
|
|
|
|
|
2017-12-03 23:30:57 +01:00
|
|
|
void wlr_xwayland_surface_activate(struct wlr_xwayland_surface *surface,
|
2018-03-31 06:35:08 +02:00
|
|
|
bool activated);
|
2017-10-27 19:05:14 +02:00
|
|
|
|
2017-12-03 23:30:57 +01:00
|
|
|
void wlr_xwayland_surface_configure(struct wlr_xwayland_surface *surface,
|
2018-03-31 06:35:08 +02:00
|
|
|
int16_t x, int16_t y, uint16_t width, uint16_t height);
|
2017-10-27 19:05:14 +02:00
|
|
|
|
2017-12-03 23:30:57 +01:00
|
|
|
void wlr_xwayland_surface_close(struct wlr_xwayland_surface *surface);
|
2017-08-19 17:59:31 +02:00
|
|
|
|
2017-12-03 23:30:57 +01:00
|
|
|
void wlr_xwayland_surface_set_maximized(struct wlr_xwayland_surface *surface,
|
2018-03-31 06:35:08 +02:00
|
|
|
bool maximized);
|
2017-10-27 19:05:14 +02:00
|
|
|
|
2017-12-03 23:30:57 +01:00
|
|
|
void wlr_xwayland_surface_set_fullscreen(struct wlr_xwayland_surface *surface,
|
2018-03-31 06:35:08 +02:00
|
|
|
bool fullscreen);
|
2017-10-27 19:05:14 +02:00
|
|
|
|
2017-11-22 14:10:06 +01:00
|
|
|
void wlr_xwayland_set_seat(struct wlr_xwayland *xwayland,
|
2018-03-31 06:35:08 +02:00
|
|
|
struct wlr_seat *seat);
|
|
|
|
|
|
|
|
bool wlr_xwayland_surface_is_unmanaged(
|
|
|
|
const struct wlr_xwayland_surface *surface);
|
2017-11-22 14:10:06 +01:00
|
|
|
|
2018-04-03 02:57:09 +02:00
|
|
|
bool wlr_surface_is_xwayland_surface(struct wlr_surface *surface);
|
|
|
|
|
|
|
|
struct wlr_xwayland_surface *wlr_xwayland_surface_from_wlr_surface(
|
2018-04-08 22:28:01 +02:00
|
|
|
struct wlr_surface *surface);
|
|
|
|
|
|
|
|
void wlr_xwayland_surface_ping(struct wlr_xwayland_surface *surface);
|
2018-04-03 02:57:09 +02:00
|
|
|
|
2017-08-19 17:59:31 +02:00
|
|
|
#endif
|