xwm: Fold weston_wm_activate into weston_wm_window_activate

Scott Moreau 13 years ago committed by Kristian Høgsberg
parent 1b3984c3cc
commit 85ecac0a4e
  1. 26
      src/xwayland/window-manager.c

@ -420,11 +420,15 @@ weston_wm_handle_configure_notify(struct weston_wm *wm, xcb_generic_event_t *eve
} }
static void static void
weston_wm_activate(struct weston_wm *wm, weston_wm_window_activate(struct wl_listener *listener, void *data)
struct weston_wm_window *window, xcb_timestamp_t time)
{ {
struct weston_surface *surface = data;
struct weston_wm_window *window = get_wm_window(surface);
struct weston_wm *wm =
container_of(listener, struct weston_wm, activate_listener);
xcb_client_message_event_t client_message; xcb_client_message_event_t client_message;
if (window) {
client_message.response_type = XCB_CLIENT_MESSAGE; client_message.response_type = XCB_CLIENT_MESSAGE;
client_message.format = 32; client_message.format = 32;
client_message.window = window->id; client_message.window = window->id;
@ -436,24 +440,14 @@ weston_wm_activate(struct weston_wm *wm,
XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
(char *) &client_message); (char *) &client_message);
xcb_set_input_focus (wm->conn, xcb_set_input_focus (wm->conn, XCB_INPUT_FOCUS_POINTER_ROOT,
XCB_INPUT_FOCUS_POINTER_ROOT, window->id, time); window->id, XCB_TIME_CURRENT_TIME);
} } else {
static void
weston_wm_window_activate(struct wl_listener *listener, void *data)
{
struct weston_surface *surface = data;
struct weston_wm_window *window = get_wm_window(surface);
struct weston_wm *wm = container_of(listener, struct weston_wm, activate_listener);
if (window)
weston_wm_activate(wm, window, XCB_TIME_CURRENT_TIME);
else
xcb_set_input_focus (wm->conn, xcb_set_input_focus (wm->conn,
XCB_INPUT_FOCUS_POINTER_ROOT, XCB_INPUT_FOCUS_POINTER_ROOT,
XCB_NONE, XCB_NONE,
XCB_TIME_CURRENT_TIME); XCB_TIME_CURRENT_TIME);
}
if (wm->focus_window) if (wm->focus_window)
weston_wm_window_schedule_repaint(wm->focus_window); weston_wm_window_schedule_repaint(wm->focus_window);

Loading…
Cancel
Save