I have a list of words inside the JList. Everytime I point the mouse cursor to a word, I want the cursor to change into a hand cursor. Now my problem is how to do that?

Could someone help me about this problem?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Use a MouseMotionListener on your JList to detect when the mouse enters it and then call setCursor to convert it into a HAND_CURSOR.

Sample code:

final JList list = new JList(new String[] {"a","b","c"});
list.addMouseMotionListener(new MouseMotionListener() {
    @Override
    public void mouseMoved(MouseEvent e) {
        final int x = e.getX();
        final int y = e.getY();
        // only display a hand if the cursor is over the items
        final Rectangle cellBounds = list.getCellBounds(0, list.getModel().getSize() - 1);
        if (cellBounds != null && cellBounds.contains(x, y)) {
            list.setCursor(new Cursor(Cursor.HAND_CURSOR));
        } else {
            list.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
        }
    }

    @Override
    public void mouseDragged(MouseEvent e) {
    }
});
link|improve this answer
what if I want the changes of the cursor to be happen when I point to the word, not in the list? Is it possible? – Mikel Sep 9 '11 at 9:58
1  
@Mikel I have updated my answer to display a hand only if the cursor is over the items in the list. – dogbane Sep 9 '11 at 10:22
Yeah it works but there is a little bit problem. When I point the mouse beside the word, still it appears a hand cursor. I want the word only to appear a hand cursor when I point the mouse cursor. – Mikel Sep 9 '11 at 11:25
feedback

You probably want to look at the Component.setCursor method, and use it together with the Cursor.HAND constant.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.