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.