X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fx.c;h=6c5a11ecaf9cd22fd7e73284fa8d21c769a1f19d;hb=6f8b2845863e9071d7d630b270729d46423c1eb5;hp=b2105c2f71ddf22ad89f0b4ee89fd85b8159b70c;hpb=ffb5c7d50c4bb615deb45a4050b9abacb4b76b40;p=i3%2Fi3 diff --git a/src/x.c b/src/x.c index b2105c2f..6c5a11ec 100644 --- a/src/x.c +++ b/src/x.c @@ -1,7 +1,13 @@ /* * vim:ts=4:sw=4:expandtab + * + * i3 - an improved dynamic tiling window manager + * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE) + * + * x.c: Interface to X11, transfers our in-memory state to X11 (see also + * render.c). Basically a big state machine. + * */ - #include "all.h" /* Stores the X11 window ID of the currently focused window */ @@ -268,21 +274,16 @@ void x_draw_decoration(Con *con) { parent->layout != L_TABBED) || con->type == CT_FLOATING_CON) return; - DLOG("decoration should be rendered for con %p\n", con); /* Skip containers whose height is 0 (for example empty dockareas) */ - if (con->rect.height == 0) { - DLOG("height == 0, not rendering\n"); + if (con->rect.height == 0) return; - } /* Skip containers whose pixmap has not yet been created (can happen when * decoration rendering happens recursively for a window for which * x_push_node() was not yet called) */ - if (leaf && con->pixmap == XCB_NONE) { - DLOG("pixmap not yet created, not rendering\n"); + if (leaf && con->pixmap == XCB_NONE) return; - } /* 1: build deco_params and compare with cache */ struct deco_render_params *p = scalloc(sizeof(struct deco_render_params)); @@ -306,22 +307,18 @@ void x_draw_decoration(Con *con) { p->con_deco_rect = con->deco_rect; p->background = config.client.background; p->con_is_leaf = con_is_leaf(con); - p->font = config.font.id; if (con->deco_render_params != NULL && (con->window == NULL || !con->window->name_x_changed) && !parent->pixmap_recreated && !con->pixmap_recreated && memcmp(p, con->deco_render_params, sizeof(struct deco_render_params)) == 0) { - DLOG("CACHE HIT, copying existing pixmaps\n"); free(p); goto copy_pixmaps; } - DLOG("CACHE MISS\n"); Con *next = con; while ((next = TAILQ_NEXT(next, nodes))) { - DLOG("Also invalidating cache of %p\n", next); FREE(next->deco_render_params); } @@ -356,7 +353,7 @@ void x_draw_decoration(Con *con) { ); #endif - xcb_change_gc_single(conn, con->pm_gc, XCB_GC_FOREGROUND, config.client.background); + xcb_change_gc(conn, con->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]) { config.client.background }); xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, sizeof(background) / sizeof(xcb_rectangle_t), background); } @@ -373,7 +370,7 @@ void x_draw_decoration(Con *con) { * (left, bottom and right part). We don’t just fill the whole * rectangle because some childs are not freely resizable and we want * their background color to "shine through". */ - xcb_change_gc_single(conn, con->pm_gc, XCB_GC_FOREGROUND, p->color->background); + xcb_change_gc(conn, con->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->background }); xcb_rectangle_t borders[] = { { 0, 0, br.x, r->height }, { 0, r->height + br.height + br.y, r->width, r->height }, @@ -389,18 +386,16 @@ void x_draw_decoration(Con *con) { /* if this is a borderless/1pixel window, we don’t * need to render the * decoration. */ - if (p->border_style != BS_NORMAL) { - DLOG("border style not BS_NORMAL, aborting rendering of decoration\n"); + if (p->border_style != BS_NORMAL) goto copy_pixmaps; - } /* 4: paint the bar */ - xcb_change_gc_single(conn, parent->pm_gc, XCB_GC_FOREGROUND, p->color->background); + xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->background }); xcb_rectangle_t drect = { con->deco_rect.x, con->deco_rect.y, con->deco_rect.width, con->deco_rect.height }; xcb_poly_fill_rectangle(conn, parent->pixmap, parent->pm_gc, 1, &drect); /* 5: draw two unconnected lines in border color */ - xcb_change_gc_single(conn, parent->pm_gc, XCB_GC_FOREGROUND, p->color->border); + xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->border }); Rect *dr = &(con->deco_rect); xcb_segment_t segments[] = { { dr->x, dr->y, @@ -412,25 +407,17 @@ void x_draw_decoration(Con *con) { xcb_poly_segment(conn, parent->pixmap, parent->pm_gc, 2, segments); /* 6: draw the title */ - uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT; - uint32_t values[] = { p->color->text, p->color->background, config.font.id }; - xcb_change_gc(conn, parent->pm_gc, mask, values); - int text_offset_y = config.font.height + (con->deco_rect.height - config.font.height) / 2 - 1; + set_font_colors(parent->pm_gc, p->color->text, p->color->background); + int text_offset_y = (con->deco_rect.height - config.font.height) / 2; struct Window *win = con->window; if (win == NULL || win->name_x == NULL) { /* this is a non-leaf container, we need to make up a good description */ // TODO: use a good description instead of just "another container" - xcb_image_text_8( - conn, - strlen("another container"), - parent->pixmap, - parent->pm_gc, - con->deco_rect.x + 2, - con->deco_rect.y + text_offset_y, - "another container" - ); - + draw_text("another container", strlen("another container"), false, + parent->pixmap, parent->pm_gc, + con->deco_rect.x + 2, con->deco_rect.y + text_offset_y, + con->deco_rect.width - 2); goto copy_pixmaps; } @@ -439,7 +426,7 @@ void x_draw_decoration(Con *con) { Con *il_parent = parent; if (il_parent->layout != L_STACKED) { while (1) { - DLOG("il_parent = %p, layout = %d\n", il_parent, il_parent->layout); + //DLOG("il_parent = %p, layout = %d\n", il_parent, il_parent->layout); if (il_parent->layout == L_STACKED) indent_level++; if (il_parent->type == CT_WORKSPACE || il_parent->type == CT_DOCKAREA || il_parent->type == CT_OUTPUT) @@ -448,29 +435,13 @@ void x_draw_decoration(Con *con) { indent_mult++; } } - DLOG("indent_level = %d, indent_mult = %d\n", indent_level, indent_mult); + //DLOG("indent_level = %d, indent_mult = %d\n", indent_level, indent_mult); int indent_px = (indent_level * 5) * indent_mult; - if (win->uses_net_wm_name) - xcb_image_text_16( - conn, - win->name_len, - parent->pixmap, - parent->pm_gc, - con->deco_rect.x + 2 + indent_px, - con->deco_rect.y + text_offset_y, - (xcb_char2b_t*)win->name_x - ); - else - xcb_image_text_8( - conn, - win->name_len, - parent->pixmap, - parent->pm_gc, - con->deco_rect.x + 2 + indent_px, - con->deco_rect.y + text_offset_y, - win->name_x - ); + draw_text(win->name_x, win->name_len, win->uses_net_wm_name, + parent->pixmap, parent->pm_gc, + con->deco_rect.x + 2 + indent_px, con->deco_rect.y + text_offset_y, + con->deco_rect.width - 2 - indent_px); copy_pixmaps: xcb_copy_area(conn, con->pixmap, con->frame, con->pm_gc, 0, 0, 0, 0, con->rect.width, con->rect.height); @@ -538,10 +509,8 @@ void x_push_node(Con *con) { } } rect.height = max_y + max_height; - if (rect.height == 0) { - DLOG("Unmapping container %p because it does not contain anything.\n", con); + if (rect.height == 0) con->mapped = false; - } } /* reparent the child window (when the window was moved due to a sticky @@ -585,9 +554,6 @@ void x_push_node(Con *con) { * (height == 0). */ if ((state->rect.width != rect.width || state->rect.height != rect.height)) { - DLOG("CACHE: creating new pixmap for con %p (old: %d x %d, new: %d x %d)\n", - con, state->rect.width, state->rect.height, - rect.width, rect.height); if (con->pixmap == 0) { con->pixmap = xcb_generate_id(conn); con->pm_gc = xcb_generate_id(conn); @@ -759,6 +725,12 @@ static void x_push_node_unmaps(Con *con) { */ void x_push_changes(Con *con) { con_state *state; + xcb_query_pointer_cookie_t pointercookie; + + /* If we need to warp later, we request the pointer position as soon as possible */ + if (warp_to) { + pointercookie = xcb_query_pointer(conn, root); + } DLOG("-- PUSHING WINDOW STACK --\n"); //DLOG("Disabling EnterNotify\n"); @@ -797,7 +769,7 @@ void x_push_changes(Con *con) { order_changed = true; if ((state->initial || order_changed) && prev != CIRCLEQ_END(&state_head)) { stacking_changed = true; - DLOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id); + //DLOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id); uint32_t mask = 0; mask |= XCB_CONFIG_WINDOW_SIBLING; mask |= XCB_CONFIG_WINDOW_STACK_MODE; @@ -813,9 +785,25 @@ void x_push_changes(Con *con) { if (stacking_changed) ewmh_update_client_list_stacking(btt_stack, btt_stack_num); - DLOG("\n\n PUSHING CHANGES\n\n"); + DLOG("PUSHING CHANGES\n"); x_push_node(con); + if (warp_to) { + xcb_query_pointer_reply_t *pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL); + if (!pointerreply) { + ELOG("Could not query pointer position, not warping pointer\n"); + } else { + int mid_x = warp_to->x + (warp_to->width / 2); + int mid_y = warp_to->y + (warp_to->height / 2); + + Output *current = get_output_containing(pointerreply->root_x, pointerreply->root_y); + Output *target = get_output_containing(mid_x, mid_y); + if (current != target) + xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0, mid_x, mid_y); + } + warp_to = NULL; + } + //DLOG("Re-enabling EnterNotify\n"); values[0] = FRAME_EVENT_MASK; CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) { @@ -830,7 +818,6 @@ void x_push_changes(Con *con) { if (focused->window != NULL) to_focus = focused->window->id; - DLOG("focused_id = 0x%08x, to_focus = 0x%08x\n", focused_id, to_focus); if (focused_id != to_focus) { if (!focused->mapped) { DLOG("Not updating focus (to %p / %s), focused window is not mapped.\n", focused, focused->name); @@ -867,13 +854,8 @@ void x_push_changes(Con *con) { focused_id = root; } - if (warp_to) { - xcb_warp_pointer_rect(conn, warp_to); - warp_to = NULL; - } - xcb_flush(conn); - DLOG("\n\n ENDING CHANGES\n\n"); + DLOG("ENDING CHANGES\n"); /* Disable EnterWindow events for windows which will be unmapped in * x_push_node_unmaps() now. Unmapping windows happens when switching @@ -957,3 +939,19 @@ void x_set_warp_to(Rect *rect) { warp_to = rect; } + +/* + * Applies the given mask to the event mask of every i3 window decoration X11 + * window. This is useful to disable EnterNotify while resizing so that focus + * is untouched. + * + */ +void x_mask_event_mask(uint32_t mask) { + uint32_t values[] = { FRAME_EVENT_MASK & mask }; + + con_state *state; + CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) { + if (state->mapped) + xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values); + } +}