Python Xlib 问题

发布于 2024-12-15 02:50:17 字数 670 浏览 1 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文