Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?
问问题
599 次
2 回答
2
是的。有几种方法可以做到:
阅读 _NET_WM_STATE 属性并检查其内容(如“ http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#id2507241 ”中所述)。对于代码,如何做到这一点,请参阅一些窗口管理器(我想到了通量盒或pekwm)
阅读 WM_STATE 属性并检查其内容(如http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.3.1中所述)。
于 2009-11-25T07:35:00.320 回答
0
XGetWMHints()
似乎是这样做的首选方式。
还有 function XGetZoomHints()
,但似乎已被弃用。
于 2009-11-13T05:58:26.103 回答