Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有另一个 Xlib 窗口的 id,我想在这个窗口矩形上绘制。有没有办法使用 Qt 来绘制它?我找到了解决方案,但它对我不起作用:
QPixmap pix = QPixmap::fromX11Pixmap(wId, QPixmap::ExplicitlyShared); pix.fill(QColor::fromRgb(255,255,255));
我希望它会用白色填充窗口,但事实并非如此。
你可以嵌入这个窗口,在上面放置一个不可见的窗口,然后渲染到这个不可见的窗口中。效果是一样的:窗口上方的一个矩形。