在 Mac OS X 上获取光标位置
我想获取光标位置。有没有这方面的标准函数?
我正在尝试用 C++ 编写我的程序。我想避开可可。并不是说我有什么反对的,但我想让我的程序跨平台。
I want to get the cursor position. Is there any standard function for this?
I'm trying to make my program in C++. I'd like to avoid Cocoa. Not that I have anything against it, but I'd like to make my program cross-platform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
CGEvent.h
中使用以下Core Graphics API:(请注意,您仍然可以在跨平台程序中使用Cocoa,您只需要将特定于平台的代码分离到不同的文件中,而不是使用#define。)
You can use the following Core Graphics API, in
CGEvent.h
:(Note that you can still use Cocoa in a cross-platform program, you just need to separate platform-specific code into different files instead of using
#define
s.)