X11 / Xlib / xcb:如果指定colormap,创建窗口需要边框像素。为什么?

时间:2017-04-04 21:37:09

标签: c x11 xcb

使用Xlib或xcb创建X窗口时,如果我想提供色彩映射,我发现必须提供边框像素属性。这个要求对我来说似乎很奇怪,因为我要确定这两个属性是如何相关的,我想知道是否有人可以就这种情况分享一些见解。

下面的两个示例创建一个深度为32的X窗口和一个True Color视觉类。在这两个示例中,如果删除了颜色映射的掩码以及相应的值,则会在程序中出现意外行为。

在xcb中,检查cookie时出现BadMatch错误,而在Xlib示例中,窗口成功创建但未映射。

有人可以解释为什么Xlib或xcb在没有指定Border Pixel属性的情况下工作,以及为什么每个库都以不同的方式显示错误?

Xlib.c:

int main()
{
    Display *display = XOpenDisplay(NULL);

    if (!display) {
        /* TODO(djr): Logging */
        fputs("X11: Unable to create connection to display server", stderr);
        return -1;
    }

    int screen = DefaultScreen(display);
    Window root = RootWindow(display, screen);

    XVisualInfo vinfo = {0};
    if (!XMatchVisualInfo(display, screen, 32, TrueColor, &vinfo)) {
        /* TODO(djr): Logging */
        fputs("X11: Unable to find supported visual info", stderr);
        return -1;
    }

    Colormap colormap = XCreateColormap(
            display, root, vinfo.visual, AllocNone);

    const unsigned long wamask = CWColormap | CWBorderPixel;

    XSetWindowAttributes wa;
    wa.colormap = colormap;
    wa.border_pixel = WhitePixel(display, screen);

    Window window = XCreateWindow(
        display,
        root,
        0, 0,
        1600, 900,
        1, /* border width */
        vinfo.depth,
        InputOutput,
        vinfo.visual,
        wamask,
        &wa);

    if (!window) {
        /* TODO(djr): Logging */
        fputs("X11: Unable to create window", stderr);
        return -1;
    }

    XMapWindow(display, window);

    XFlush(display);

    pause();

    XCloseDisplay(display);
    return 0;
}

xcb.c:

int main()
{
    xcb_connection_t *connection = xcb_connect(NULL, NULL);

    if (xcb_connection_has_error(connection)) {
        fprintf(stderr, "ERROR: failed to connection to X server\n");
        return -1;
    }

    const xcb_setup_t *setup = xcb_get_setup(connection);
    xcb_screen_t *screen = xcb_setup_roots_iterator(setup).data;

    xcb_depth_iterator_t depth_iter = xcb_screen_allowed_depths_iterator(screen);
    xcb_depth_t *depth = NULL;

    while (depth_iter.rem) {
        if (depth_iter.data->depth == 32 && depth_iter.data->visuals_len) {
            depth = depth_iter.data;
            break;
        }
        xcb_depth_next(&depth_iter);
    }

    if (!depth) {
        fprintf(stderr, "ERROR: screen does not support 32 bit color depth\n");
        xcb_disconnect(connection);
        return -1;
    }

    xcb_visualtype_iterator_t visual_iter = xcb_depth_visuals_iterator(depth);
    xcb_visualtype_t *visual = NULL;

    while (visual_iter.rem) {
        if (visual_iter.data->_class == XCB_VISUAL_CLASS_TRUE_COLOR) {
            visual = visual_iter.data;
            break;
        }
        xcb_visualtype_next(&visual_iter);
    }

    if (!visual) {
        fprintf(stderr, "ERROR: screen does not support True Color\n");
        xcb_disconnect(connection);
        return -1;
    }

    xcb_colormap_t colormap = xcb_generate_id(connection);
    xcb_void_cookie_t cookie = xcb_create_colormap_checked(
            connection,
            XCB_COLORMAP_ALLOC_NONE,
            colormap,
            screen->root,
            visual->visual_id);

    xcb_generic_error_t *error = xcb_request_check(connection, cookie);
    if (error) {
        fprintf(stderr, "ERROR: failed to create colormap: %s\n", xcb_errors[error->error_code]);
        xcb_disconnect(connection);
        return -1;
    }

    unsigned int cw_mask = XCB_CW_COLORMAP | XCB_CW_BORDER_PIXEL;
    unsigned int cw_values[] = { screen->white_pixel, colormap };

    xcb_window_t window = xcb_generate_id(connection);
    cookie = xcb_create_window_checked(
            connection,
            depth->depth,
            window,
            screen->root,
            0, 0,
            1600, 900,
            1,
            XCB_WINDOW_CLASS_INPUT_OUTPUT,
            visual->visual_id,
            cw_mask,
            cw_values);

    error = xcb_request_check(connection, cookie);
    if (error) {
        fprintf(stderr, "ERROR: failed to create window: %s\n", xcb_errors[error->error_code]);
        xcb_disconnect(connection);
        return -1;
    }

    xcb_map_window(connection, window);

    xcb_flush(connection);

    pause();

    xcb_disconnect(connection);
    return 0;
}

1 个答案:

答案 0 :(得分:2)

我刚试过你的程序,即使我没有指定色彩映射也失败了,所以我认为色彩映射与你的问题无关。

我不完全确定,但我的猜测是默认的边框像素图是XCB_COPY_FROM_PARENT,并且必须与窗口的视觉和深度相匹配。但是你要设置视觉和深度(与父母不同)。现在,边框视觉或深度与窗口的不同,因此您获得了BadMatch。

通过指定边框像素颜色,X创建一个适当属性的像素图,并将其设置为边框像素图,一切都可以再次工作。