wlroots/xwayland/xwm.h

55 lines
1003 B
C
Raw Normal View History

#ifndef XWAYLAND_INTERNALS_H
#define XWAYLAND_INTERNALS_H
#include <wayland-server-core.h>
#include <wlr/xwayland.h>
enum atom_name {
WL_SURFACE_ID,
WM_DELETE_WINDOW,
WM_PROTOCOLS,
2017-10-05 14:24:45 +00:00
WM_HINTS,
2017-10-02 15:34:55 +00:00
WM_NORMAL_HINTS,
WM_SIZE_HINTS,
MOTIF_WM_HINTS,
UTF8_STRING,
WM_S0,
NET_SUPPORTED,
NET_WM_S0,
2017-09-29 20:43:14 +00:00
NET_WM_PID,
2017-09-29 13:57:21 +00:00
NET_WM_NAME,
NET_WM_STATE,
2017-09-29 21:03:01 +00:00
NET_WM_WINDOW_TYPE,
2017-09-28 13:11:16 +00:00
WM_TAKE_FOCUS,
2017-09-28 13:30:43 +00:00
ATOM_LAST,
};
2017-09-28 22:47:20 +00:00
extern const char *atom_map[ATOM_LAST];
2017-09-29 20:26:03 +00:00
enum net_wm_state_action {
NET_WM_STATE_REMOVE = 0,
2017-10-24 13:21:11 +00:00
NET_WM_STATE_ADD = 1,
2017-09-29 20:26:03 +00:00
NET_WM_STATE_TOGGLE = 2,
};
struct wlr_xwm {
struct wlr_xwayland *xwayland;
struct wl_event_source *event_source;
struct wl_listener surface_create_listener;
xcb_atom_t atoms[ATOM_LAST];
xcb_connection_t *xcb_conn;
xcb_screen_t *screen;
xcb_window_t window;
struct wl_list new_surfaces;
struct wl_list unpaired_surfaces;
2017-10-15 18:50:21 +00:00
const xcb_query_extension_reply_t *xfixes;
};
void xwm_destroy(struct wlr_xwm *xwm);
2017-10-24 13:21:11 +00:00
struct wlr_xwm *xwm_create(struct wlr_xwayland *wlr_xwayland);
#endif