Python Xlib 问题
我有一个使用 Xlib 包的小型 python 应用程序。我不确定如何正确创建窗口/应用程序以由窗口管理器管理。每次我将 DISPLAY 设置为 xorg 时,都会自动创建并映射窗口。然而,X11 窗口管理器拒绝映射,但窗口仍然显示。它不响应键盘输入,但一旦鼠标移入窗口,仍会更改光标。
self.screen = display.Display().screen()
self.window = self.screen.root.create_window(
10, 10, 100, 100, 1,
self.screen.root_depth,
background_pixel=self.screen.white_pixel,
event_mask=X.ExposureMask | X.KeyPressMask)
self.window.map()
如果我使用 WXPython 创建应用程序/框架,则映射可以正常工作,但是,我无法在 wxpython 中设置 X11 字体光标...这就是我使用 Xlib 的原因。
所以...我要么需要一种在 wxPython 中设置 X11 字体光标的方法,要么需要一种在 XLib 中正确设置上面的 self.window 的方法。
I have a small python app using the Xlib package. I am not sure how to create a window/app properly to be managed by a window manager. Everytime I set the DISPLAY to xorg, the window is automatically created and mapped. However, the X11 window manager denies the mapping, but the window is still shown. It doesn't respond to keyboard input but will still change the cursor once the mouse moves into the window.
self.screen = display.Display().screen()
self.window = self.screen.root.create_window(
10, 10, 100, 100, 1,
self.screen.root_depth,
background_pixel=self.screen.white_pixel,
event_mask=X.ExposureMask | X.KeyPressMask)
self.window.map()
If I create an app/frame with WXPython the mapping works correctly, however, I am unable to set the X11 Font cursors in wxpython ... this is why I'm using Xlib.
So ... I either need a way to set the X11 font cursors in wxPython or a way to properly setup the self.window above in XLib.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论