aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-10-25 08:39:28 -0400
committerTony Crisci <tony@dubstepdish.com>2017-10-25 08:39:28 -0400
commit0d1dd84a48cbfec848866cfbe4e62652765d7c98 (patch)
tree4a77a5de387529bb4f19485d87b86170c21a00e4
parent1be650d78a5612164fff9b3b20c5a2a89f13bdf0 (diff)
xwm: improve activation and dont send focus twice
-rw-r--r--include/wlr/xwayland.h2
-rw-r--r--rootston/xwayland.c8
-rw-r--r--xwayland/xwm.c114
3 files changed, 69 insertions, 55 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index efee3d9f..e7598d4c 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -125,7 +125,7 @@ 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);
+ struct wlr_xwayland_surface *surface, bool activated);
void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland,
struct wlr_xwayland_surface *surface, int16_t x, int16_t y,
uint16_t width, uint16_t height);
diff --git a/rootston/xwayland.c b/rootston/xwayland.c
index d43618c3..221c659d 100644
--- a/rootston/xwayland.c
+++ b/rootston/xwayland.c
@@ -11,12 +11,8 @@
static void activate(struct roots_view *view, bool active) {
assert(view->type == ROOTS_XWAYLAND_VIEW);
- if (active) {
- wlr_xwayland_surface_activate(view->desktop->xwayland,
- view->xwayland_surface);
- } else {
- wlr_xwayland_surface_activate(view->desktop->xwayland, NULL);
- }
+ struct wlr_xwayland *xwayland = view->desktop->xwayland;
+ wlr_xwayland_surface_activate(xwayland, view->xwayland_surface, active);
}
static void resize(struct roots_view *view, uint32_t width, uint32_t height) {
diff --git a/xwayland/xwm.c b/xwayland/xwm.c
index 7827295e..f39f8391 100644
--- a/xwayland/xwm.c
+++ b/xwayland/xwm.c
@@ -86,9 +86,69 @@ static struct wlr_xwayland_surface *wlr_xwayland_surface_create(
return surface;
}
+static void xwm_set_net_active_window(struct wlr_xwm *xwm,
+ xcb_window_t window) {
+ xcb_change_property(xwm->xcb_conn, XCB_PROP_MODE_REPLACE,
+ xwm->screen->root, xwm->atoms[_NET_ACTIVE_WINDOW],
+ xwm->atoms[WINDOW], 32, 1, &window);
+}
+
+static void xwm_send_focus_window(struct wlr_xwm *xwm,
+ struct wlr_xwayland_surface *surface) {
+ if (surface) {
+ xcb_client_message_event_t client_message;
+ client_message.response_type = XCB_CLIENT_MESSAGE;
+ client_message.format = 32;
+ client_message.window = surface->window_id;
+ client_message.type = xwm->atoms[WM_PROTOCOLS];
+ client_message.data.data32[0] = xwm->atoms[WM_TAKE_FOCUS];
+ client_message.data.data32[1] = XCB_TIME_CURRENT_TIME;
+
+ xcb_send_event(xwm->xcb_conn, 0, surface->window_id,
+ XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, (char*)&client_message);
+
+ xcb_set_input_focus(xwm->xcb_conn, XCB_INPUT_FOCUS_POINTER_ROOT,
+ surface->window_id, XCB_CURRENT_TIME);
+
+ uint32_t values[1];
+ values[0] = XCB_STACK_MODE_ABOVE;
+ xcb_configure_window_checked(xwm->xcb_conn, surface->window_id,
+ XCB_CONFIG_WINDOW_STACK_MODE, values);
+ } else {
+ xcb_set_input_focus_checked(xwm->xcb_conn,
+ XCB_INPUT_FOCUS_POINTER_ROOT,
+ XCB_NONE, XCB_CURRENT_TIME);
+ }
+}
+
+
+void xwm_surface_activate(struct wlr_xwm *xwm,
+ struct wlr_xwayland_surface *xsurface) {
+ if (xwm->focus_surface == xsurface) {
+ return;
+ }
+
+ if (xsurface) {
+ xwm_set_net_active_window(xwm, xsurface->window_id);
+ } else {
+ xwm_set_net_active_window(xwm, XCB_WINDOW_NONE);
+ }
+
+ xwm_send_focus_window(xwm, xsurface);
+
+ xwm->focus_surface = xsurface;
+
+ xcb_flush(xwm->xcb_conn);
+}
+
+
static void wlr_xwayland_surface_destroy(struct wlr_xwayland_surface *surface) {
wl_signal_emit(&surface->events.destroy, surface);
+ if (surface == surface->xwm->focus_surface) {
+ xwm_surface_activate(surface->xwm, NULL);
+ }
+
wl_list_remove(&surface->link);
if (surface->surface_id) {
@@ -707,56 +767,14 @@ static void handle_compositor_surface_create(struct wl_listener *listener,
}
}
-static void xwm_set_net_active_window(struct wlr_xwm *xwm,
- xcb_window_t window) {
- xcb_change_property(xwm->xcb_conn, XCB_PROP_MODE_REPLACE,
- xwm->screen->root, xwm->atoms[_NET_ACTIVE_WINDOW],
- xwm->atoms[WINDOW], 32, 1, &window);
-}
-
-static void xwm_send_focus_window(struct wlr_xwm *xwm,
- struct wlr_xwayland_surface *surface) {
- if (surface) {
- xcb_client_message_event_t client_message;
- client_message.response_type = XCB_CLIENT_MESSAGE;
- client_message.format = 32;
- client_message.window = surface->window_id;
- client_message.type = xwm->atoms[WM_PROTOCOLS];
- client_message.data.data32[0] = xwm->atoms[WM_TAKE_FOCUS];
- client_message.data.data32[1] = XCB_TIME_CURRENT_TIME;
-
- xcb_send_event(xwm->xcb_conn, 0, surface->window_id,
- XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, (char*)&client_message);
-
- xcb_set_input_focus(xwm->xcb_conn, XCB_INPUT_FOCUS_POINTER_ROOT,
- surface->window_id, XCB_CURRENT_TIME);
-
- uint32_t values[1];
- values[0] = XCB_STACK_MODE_ABOVE;
- xcb_configure_window_checked(xwm->xcb_conn, surface->window_id,
- XCB_CONFIG_WINDOW_STACK_MODE, values);
- } else {
- xcb_set_input_focus_checked(xwm->xcb_conn,
- XCB_INPUT_FOCUS_POINTER_ROOT,
- XCB_NONE, XCB_CURRENT_TIME);
- }
-}
-
void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland,
- struct wlr_xwayland_surface *surface) {
- struct wlr_xwm *xwm = wlr_xwayland->xwm;
-
- if (surface) {
- xwm_set_net_active_window(xwm, surface->window_id);
- } else {
- xwm_set_net_active_window(xwm, XCB_WINDOW_NONE);
+ struct wlr_xwayland_surface *surface, bool activated) {
+ struct wlr_xwayland_surface *focused = wlr_xwayland->xwm->focus_surface;
+ if (activated) {
+ xwm_surface_activate(wlr_xwayland->xwm, surface);
+ } else if (focused == surface) {
+ xwm_surface_activate(wlr_xwayland->xwm, NULL);
}
-
- xwm_send_focus_window(xwm, surface);
-
- xwm->focus_surface = surface;
-
- xcb_flush(xwm->xcb_conn);
}
void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland,