When I let popup a JPopupMenu without passing the "invoker component", the menu doesn't work: submenu's don't open and isn't getting repainted. But when I create a completely useless JFrame with a JLabel inside, and I pass the JLabal as invoker, it works correctly...

Any suggestions, how to avoid creating a useless frame. And my application really hasn't any frames open, it just has to popup a simple menu.

JPopupMenu.show(null, xOnTheScreen, yOnTheScreen); // Doesn't work
JPopupMenu.show(aStupidJLabelInAStupidJFrame, x, y); // Works

Thanks

link|improve this question

1  
Your swing app has to be in some JPanel, at the very least. Isn't it? – Tomas Narros Oct 4 '10 at 12:47
If you use the popup menu as popup for a desktop tray icon, you will have no component to use for the invoker parameter. I remember having a similiar problem. – Durandal Oct 4 '10 at 19:11
feedback

1 Answer

Take a look at JPopupMenu source code and you'll see why you have to set an invoker.

Showing a popup menu without any existing component would be very bad usability, in the same league as popup windows from a browser.

Why can't you use JComponent#setComponentPopupMenu, or add a mouse listener to the component in which you want to show popup menu?

link|improve this answer
I took already a look in the code, but can't see why... – Martijn Courteaux Oct 4 '10 at 16:17
Search for JPopupMenu#getInvoker in JDK6 you'll see a whole bunch of references. It's really not a good idea to change such a basic behavior and assumption. – Geoffrey Zheng Oct 4 '10 at 16:48
feedback

Your Answer

 
or
required, but never shown

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