10

境界線、タイトル、閉じるボタンのみを表示し、マウスで移動できる Xlib でウィンドウを作成する方法はありますか? ウィンドウのコンテンツは空である必要があります (または「完全に透明」ですが、「透明性」は必要のない効果のように聞こえます)。基本的に、ウィンドウは背景領域を表示する必要があります。

4

1 に答える 1

17

それがあなたが望むものかどうかはわかりませんが、次のコードは、透明な背景を持つ X ウィンドウを作成しますが、ウィンドウ マネージャーのウィンドウ装飾を引き続き使用します。

ただし、X11 およびグラフィック ハードウェア構成が 32 ビット深度のビジュアルをサポートしている場合にのみ機能します。

#include <X11/Xlib.h>
#include <X11/Xutil.h>

int main(int argc, char* argv[])
{
    Display* display = XOpenDisplay(NULL);

    XVisualInfo vinfo;
    XMatchVisualInfo(display, DefaultScreen(display), 32, TrueColor, &vinfo);

    XSetWindowAttributes attr;
    attr.colormap = XCreateColormap(display, DefaultRootWindow(display), vinfo.visual, AllocNone);
    attr.border_pixel = 0;
    attr.background_pixel = 0;

    Window win = XCreateWindow(display, DefaultRootWindow(display), 0, 0, 300, 200, 0, vinfo.depth, InputOutput, vinfo.visual, CWColormap | CWBorderPixel | CWBackPixel, &attr);
    XSelectInput(display, win, StructureNotifyMask);
    GC gc = XCreateGC(display, win, 0, 0);

    Atom wm_delete_window = XInternAtom(display, "WM_DELETE_WINDOW", 0);
    XSetWMProtocols(display, win, &wm_delete_window, 1);

    XMapWindow(display, win);

    int keep_running = 1;
    XEvent event;

    while (keep_running) {
        XNextEvent(display, &event);

        switch(event.type) {
            case ClientMessage:
                if (event.xclient.message_type == XInternAtom(display, "WM_PROTOCOLS", 1) && (Atom)event.xclient.data.l[0] == XInternAtom(display, "WM_DELETE_WINDOW", 1))
                    keep_running = 0;

                break;

            default:
                break;
        }
    }

    XDestroyWindow(display, win);
    XCloseDisplay(display);
    return 0;
}
于 2012-11-15T12:01:02.643 に答える