C++ - 更改 X 窗口中的光标

发布于 2024-09-16 21:42:43 字数 91 浏览 5 评论 0原文

我以为这很容易找到,但谷歌搜索却毫无帮助。有没有一个简单的 API 可以改变 X 窗口中的鼠标光标? (我知道在 Windows 中你可以只调用“SetCursor”)

I thought this would be easy to find, but a google search has been very unhelpful. Is there a simple api to change the mouse cursor in your X window? (I know in windows you can just call "SetCursor")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抚笙 2024-09-23 21:42:43
#include <X11/cursorfont.h>

/* ... */

Cursor c;

c = XCreateFontCursor(dpy, XC_xterm); 
XDefineCursor(dpy, w, c);

其中 dpy 是您的显示器,w 是您的窗口,XC_xterm 是定义光标形状的常量。这是可用光标形状的列表以及图像。

#include <X11/cursorfont.h>

/* ... */

Cursor c;

c = XCreateFontCursor(dpy, XC_xterm); 
XDefineCursor(dpy, w, c);

Where dpy is your display, w is your window and XC_xterm is a constant defining the shape of your cursor. Here's a list of available cursor shape, along with images.

盗梦空间 2024-09-23 21:42:43

看起来与 SetCursor 调用等效的是 XDefineCursor。您可以通过调用 XCreateFontCursor 并传入 X11/cursorfont.h 中的形状之一来获取 Cursor id。

Looks like the equivalent of a SetCursor call is XDefineCursor. You can get a Cursor id by calling XCreateFontCursor and passing in one of the shapes from X11/cursorfont.h.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文