up vote 18 down vote favorite
3
share [g+] share [fb]

I'm working on a school project and we want to implement a right click pop-up menu in the gui.

Currently we are doing something like creating a JMenu on right click and setting its location to that of the mouse's position...

This seems really ugly and is very buggy, is there any better way of doing this? I'm sure there must be.

link|improve this question

60% accept rate
feedback

3 Answers

up vote 28 down vote accepted

You are probably manually calling setVisible(true) on the menu. That can cause some nasty buggy behavior in the menu.

The show(Component, int x, int x) method handles all of the things you need to happen, (Highlighting things on mouseover and closing the popup when necessary) where using setVisible(true) just shows the menu without adding any additional behavior.

To make a right click popup menu simply create a JPopupMenu.

class PopUpDemo extends JPopupMenu {
    JMenuItem anItem;
    public PopUpDemo(){
        anItem = new JMenuItem("Click Me!");
        add(anItem);
    }
}

Then, all you need to do is add a custom MouseListener to the components you would like the menu to popup for.

class PopClickListener extends MouseAdapter {
    public void mousePressed(MouseEvent e){
        if (e.isPopupTrigger())
            doPop(e);
    }

    public void mouseReleased(MouseEvent e){
        if (e.isPopupTrigger())
            doPop(e);
    }

    private void doPop(MouseEvent e){
        PopUpDemo menu = new PopUpDemo();
        menu.show(e.getComponent(), e.getX(), e.getY());
    }
}

// Then on your component(s)
component.addMouseListener(new PopClickListener());

Of course, the tutorials have a slightly more in-depth explanation.

Note: If you notice that the popup menu is appearing way off from where the user clicked, try using the e.getXOnScreen() and e.getYOnScreen() methods for the x and y coordinates.

link|improve this answer
After using the above code, I get the error saying that "The method addMouseListener(MouseListener) in the type Figure is not applicable for the arguments (PopClickListener)" Regards, Vinay – user1035905 Nov 8 '11 at 15:31
@user1035905 Did you make sure that the PopClickListener extends MouseAdapter? – jjnguy Nov 8 '11 at 15:55
Thanks 4all... the logic is quite nice! :D – gumuruh Jan 16 at 9:03
feedback

There's a section on Bringing Up a Popup Menu in the How to Use Menus article of The Java Tutorials which explains how to use the JPopupMenu class.

The example code in the tutorial shows how to add MouseListeners to the components which should display a pop-up menu, and displays the menu accordingly.

(The method you describe is fairly similar to the way the tutorial presents the way to show a pop-up menu on a component.)

link|improve this answer
feedback

This question is a bit old - as are the answers (and the tutorial as well ;-)

The current api for setting a popupMenu in Swing is

  myComponent.setComponentPopupMenu(myPopupMenu)

this way it will be shown automagically, both for mouse and keyboard triggers (the latter depends on LAF). Plus, it supports re-using the same popup across a container's children. To enable that feature:

  myChild.setInheritsPopupMenu(true)
link|improve this answer
can you please provide a tutorial with the updated api? – user681159 Jan 22 at 3:53
@user681159 don't know any - and it's not needed, IMO, simply read the api doc :-) – kleopatra Jan 22 at 15:34
feedback

Your Answer

 
or
required, but never shown

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