Retina/high-DPI custom cursor in Java?
Asked Answered
R

0

6

Is there any way to support high-resolution displays for Java custom cursors? The usual method seems to be using Toolkit:

Toolkit.getDefaultToolkit().createCustomCursor(cursorImage, new Point(), "customCursor");

However, there is very little control over the cursor itself. Is there some method to do this which supports high-DPI displays, or will I need to hide the cursor and paint it manually?

Rives answered 12/12, 2013 at 16:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.