Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to retrieve the screenshot of root window with XLib:

void Widget::paintEvent(QPaintEvent *)
{
    Display *disp;
    XWindowAttributes windowAttrib;

    if ( (disp = XOpenDisplay(NULL)) == NULL )
    {
        std::cout << "can't open display(null)" << std::endl;
        return;
    }

    Window rootWindow = DefaultRootWindow (disp);
    XGetWindowAttributes (disp, rootWindow, &windowAttrib);
    XImage *screenShot = XGetImage (disp, rootWindow,
            windowAttrib.x, windowAttrib.y,
            windowAttrib.width, windowAttrib.height,
            (1<<31), ZPixmap);

    QPainter painter (this);
    painter.drawPixmap(windowAttrib.x, windowAttrib.y,
                       windowAttrib.width, windowAttrib.height, QPixmap (screenShot->data));

    XDestroyImage(screenShot);
    XCloseDisplay(disp);
}

But the background of that widget was totally blank.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.