My problem is when i right click on the JFrame. JPopupMenu show up but if i click anywhere outside the JFrame the menu does not disappear. I have to click somewhere on the JFrame to get rid of it which is not the expected behavior. OSX 10.6.7 java full version "1.6.0_24-b07-334

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

class test
{

static class window extends JFrame implements MouseListener,
        MouseMotionListener
{

    JPopupMenu popMenu;
    JPanel panel = new JPanel();

    Point location;
    MouseEvent pressed;

    public window()
    {

        addMouseListener(this);
        addMouseMotionListener(this);

        JLabel label = new JLabel("JFrame", JLabel.CENTER);

        initPopMenu();
        add(label);
        setUndecorated(true);
        setVisible(true);

        // setAlwaysOnTop(true);
        setLocationRelativeTo(null);
        pack();
    }

    public void initPopMenu()
    {
        popMenu = new JPopupMenu();
        JMenuItem item;

        item = new JMenuItem("Title");
        item.setEnabled(false);
        popMenu.add(item);
        popMenu.addSeparator();

        item = new JMenuItem("Item One");
        popMenu.add(item);

        item = new JMenuItem("Item 2");
        popMenu.add(item);

        item = new JMenuItem("Item 3");
        popMenu.add(item);
    }

    public void mousePressed(MouseEvent e)
    {
        pressed = e;
        int nModifier = e.getModifiers();
        if (((nModifier & InputEvent.BUTTON2_MASK) != 0)
                || ((nModifier & InputEvent.BUTTON3_MASK) != 0))
            popMenu.show( this, e.getX(), e.getY() );
    }

    public void mouseClicked(MouseEvent e)
    {
    }

    public void mouseReleased(MouseEvent e)
    {
    }

    public void mouseDragged(MouseEvent me)
    {
    }

    public void mouseMoved(MouseEvent e)
    {
    }

    public void mouseEntered(MouseEvent e)
    {
    }

    public void mouseExited(MouseEvent e)
    {
    }
}

public static void main(String[] args)
{
    window dw = new window();
}
}
link|improve this question

50% accept rate
see link – Peter Jul 23 '11 at 9:57
I am still locking for an answer. Nobody out there in the OSX world with the same problem? – Peter Aug 1 '11 at 6:19
if you got answer, please share. i am having the same problem on Mac OSX – Asghar May 15 at 13:03
feedback

1 Answer

you can add a windowFocusListener, hide the menu when window lost focus

        this.addWindowFocusListener(new WindowFocusListener() {
            @Override
            public void windowLostFocus(WindowEvent e) {
                if(popMenu != null){
                    popMenu.setVisible(false);
                }
            }
            @Override
            public void windowGainedFocus(WindowEvent e) {
                //System.out.println(e);
            }
        });
link|improve this answer
your solution works only if JFrame has the focus – Peter Jul 24 '11 at 20:23
I do not know what is your mean, but use your test code it works fine – sam sha Jul 25 '11 at 13:10
1. I run the window class from eclipse (JFrame appears) 2. I click into the eclipse workspace (JFrame loses focus and is hidden behind eclipse) 3. Minimize eclipse (JFrame appears) 4. Go with your mouse over JFrame and make a right click (Popup appears) 5. Click somewhere (Not into JFrame or Popup) The Popup will not disappear – Peter Jul 25 '11 at 16:50
you are right, it is, it's really a hard problem – sam sha Jul 26 '11 at 3:09
feedback

Your Answer

 
or
required, but never shown

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