Qt 鼠标点击穿透

以前的笔记, 转存到这里。

很遗憾qt没有这个函数
只好直接用x11shape的 XShapeCombineRectangles(QX11Info::display(), winId(), ShapeInput, 0, 0, NULL, 0, ShapeSet, YXBanded)
焦点穿透的意思是所有鼠标键盘操作全部会穿透窗口到下方窗口。
有个 Qt::WA_TransparentForMouseEvents 可以对子部件实 现,而窗口本身不行。很多 osd 桌面歌词程序经常用

#ifdef Q_OS_LINUX
#include 
#endif
#ifdef Q_OS_WIN
#include 
#endif
#ifdef Q_OS_LINUX
        XShapeCombineRectangles(QX11Info::display(), winId(), ShapeInput, 0,
                                0, NULL, 0, ShapeSet, YXBanded);
#endif
#ifdef Q_OS_WIN
        SetWindowLong(winId(), GWL_EXSTYLE, GetWindowLong(winId(), GWL_EXSTYLE) |
                      WS_EX_TRANSPARENT | WS_EX_LAYERED);
#endif

void XShapeCombineRectangles (
Display *dpy,
XID dest,
int destKind,
int xOff,
int yOff,
XRectangle *rects,
int n_rects,
int op,
int ordering);

你可能感兴趣的:(QT)