I have a JPopupMenu object. Its behavior depends on its coordinates. How can I get its position relatively to its parent container?

link|improve this question

1  
For better help sooner, post an SSCCE. – Andrew Thompson Nov 18 '11 at 14:37
feedback

1 Answer

up vote 0 down vote accepted

In your MouseListener's method (mouseReleased etc.) you should receive a MouseEvent object containing the current position. If you don't want to use those values you can try using the Component#getLocation method, otherwise the Component#getLocationOnScreen but it returns the absolute position, then you need to calculate the relative one.

link|improve this answer
It returns x=0 and y=0. During debugging I noticed that only private field desiredLocation stores the needed value. But I don't know yet how to access it. – Andrei Podoprigora Nov 18 '11 at 13:42
@Andrei How do you get it showed? you should have some code that shows the menu on the correct position, right? – javanna Nov 18 '11 at 14:03
There is a JPanel, that handles the right click and shows this popup menu. – Andrei Podoprigora Nov 18 '11 at 14:05
@Andrei Your JPanel has a MouseListener I guess. In your MouseListener's method (mouseReleased etc.) you should receive a MouseEvent object containing the current position. Aren't you showing the JPopUpMenu on that position? – javanna Nov 18 '11 at 14:16
yep, but I wanted to retrieve the position using only the reference to the popup menu object. – Andrei Podoprigora Nov 18 '11 at 14:17
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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