Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting the Java Swing 'No Drag' Cursor

Tags:

java

swing

Is it possible to get a reference to Swing "no Drag "Cursor ,since it is OS Specific, or maybe override it

like image 402
pavan Avatar asked Mar 07 '10 22:03

pavan


2 Answers

I think you might be looking for the DragSource class which has bunch of predefined cursors.

like image 141
camickr Avatar answered Oct 23 '22 04:10

camickr


I would look into java.awt.Toolkit::createCustomCursor if you want a cursor that is not predefined in java.awt.Cursor

public Cursor createCustomCursor(Image cursor,  
                                 Point hotSpot,  
                                 String name);

From the Java 6 Documentation:

Creates a new custom cursor object. If the image to display is invalid, the cursor will be hidden (made completely transparent), and the hotspot will be set to (0, 0).
Note that multi-frame images are invalid and may cause this method to hang.

like image 33
zmbush Avatar answered Oct 23 '22 04:10

zmbush