Globally hide mouse cursor in Cocoa/Carbon?

后端 未结 4 1479
暖寄归人
暖寄归人 2021-02-08 10:27

Is there a way to globally hide the mouse cursor for all apps in Cocoa (or Carbon)? Or at least replace it with something else?

EDIT: Thanks for the input guys, but turn

相关标签:
4条回答
  • 2021-02-08 10:48

    Check out: http://developer.apple.com/legacy/mac/library/samplecode/CarbonCocoa_PictureCursor/listing2.html It's an old sample, but probably still works.

    I expect that you're going to be limited to your application window, however. If you want to hide it for everyone you will probably have to make your window cover the screen.

    Fun fact: The old toolbox function was simply "HideCursor()".

    0 讨论(0)
  • 2021-02-08 10:51

    No, I don't believe there's a way of doing what you want, short of showing a full screen window and then obscuring absolutely everything on the desktop. That would also prevent e.g. keystrokes being sent to the right application and the like.

    0 讨论(0)
  • 2021-02-08 10:54

    You are looking for CGDisplayHideCursor, which is part of the Quartz Display Services API.

    0 讨论(0)
  • 2021-02-08 11:09

    just add this to your code:

    CGDisplayHideCursor (kCGNullDirectDisplay);
    
    0 讨论(0)
提交回复
热议问题