如何创建独立于当前窗口管理器的 X-windows 窗口?
我正在使用 X-windows、Xlib 等。我想创建一个独立于窗口管理器的 X-窗口:这意味着我不希望 WM 放置框架、最小化-最大化、关闭、菜单、标题-窗口中的酒吧等。我想创建一个普通的 X 窗口。如何?
[编辑] 或者,如何捕获这些事件,以便我的窗口应用程序至少可以在没有错误的情况下死亡?
[编辑] ninjalj的回答让我得到以下信息:
I am playing with X-windows, Xlib, etc. I want to create a X-window independent of the window-manager: meaning that I do not want the WM to put a frame, minimize-maximize, close, menu, title-bar, etc. in the window. I want to create a vanilla X window. How?
[edit]
Alternatively, how to I capture those events so my windowing app can at least die without an error?
[edit] ninjalj's answer led me to the following info:
ICCCM
Lots & lots of info :) cool!
Tutorial
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你想要的是一个覆盖重定向窗口。只需在创建窗口时在 XSetWindowAttributes 结构(以及 valuemask 上的相应位)上设置覆盖重定向即可。
I think what you want is an override-redirect window. Just set the override-redirect on your XSetWindowAttributes struct (and the corresponding bit on valuemask) when creating the window.