I want a listener that defines if a JMenuItem was selected. Not pressed, but just highlighted. I don't need MouseOver listener, because the selection is supposed to be performed from keyboard. What listener should I use? Thanks in advance :)

link|improve this question

Have you tried a FocusListener? – Hovercraft Full Of Eels Apr 28 '11 at 16:13
yes. and it doesn't works :X – Nika Gamkrelidze Apr 28 '11 at 16:16
duplicate answering efforts (because OP obviously preferred re-posting instead of trying): stackoverflow.com/questions/5818689/… – kleopatra Apr 28 '11 at 16:24
well, actually there is a difference between questions. – Nika Gamkrelidze Apr 28 '11 at 16:26
so what happened when you added a ChangeListener (as suggested in your other question)? – kleopatra Apr 28 '11 at 22:36
feedback

3 Answers

up vote 3 down vote accepted

I would guess you add a ChangeListener to the ButtonModel of each JMenuItem.

link|improve this answer
feedback

Have a look at this http://www.exampledepot.com/egs/javax.swing/PopupCurSel.html

link|improve this answer
this answer is wrong: the requirement is to get notified - as opposed to walk some menu tree to find items in a certain state which is what the linked code does – kleopatra May 12 '11 at 10:42
feedback

You should use addActionListener.

See also this question.

link|improve this answer
this answer is wrong: the requirement is to get notified on "not pressed, just highlighted" (OP using the term selected as synomym is unfortunate, though) – kleopatra May 12 '11 at 10:40
feedback

Your Answer

 
or
required, but never shown

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