pavan
pavan

Reputation: 217

Getting the Java Swing 'No Drag' Cursor

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

Upvotes: 8

Views: 1369

Answers (2)

camickr
camickr

Reputation: 324147

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

Upvotes: 5

zmbush
zmbush

Reputation: 2810

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.

Upvotes: 2

Related Questions