In GUI,I am displaying one JTree at the left hand side of JPanel. Now for each Node(leaf), on Mouse right click I want to display JPopup menu asking for displaying the statistics about Node in right JPanel.

As i am new to swing,Could any one help with code. Thanks in Advance.

Regards, Tushar Dodia.

link|improve this question

40% accept rate
I amend your post, please revert if isn't... – mKorbel Jun 22 '11 at 7:32
feedback

3 Answers

Use JTree's method

public TreePath getPathForLocation(int x, int y)

Then TreePath

public Object getLastPathComponent()

That returns you desired node from point where user right clicked.

link|improve this answer
that's isn's about how to add MouseListener for JPopup to the JTree – mKorbel Jun 22 '11 at 7:34
1  
I think the question is not "how to add popup" but "how to add popup depending on clicked node" – StanislavL Jun 22 '11 at 7:58
well, good advice +1 – mKorbel Jun 22 '11 at 8:13
me too :) maybe you should mention the getTooltip(MouseEvent) as the place to configure the component popup depending on the node at that location – kleopatra Jun 22 '11 at 12:50
darn ... of course meant getPopupLocation(MouseEvent) – kleopatra Jun 23 '11 at 8:21
feedback

Seem to have caused a bit of confusion (confusing myself ;-) - so here's a code snippet for doing target location related configuration of the componentPopup

    JPopupMenu popup = new JPopupMenu();
    final Action action = new AbstractAction("empty") {

        @Override
        public void actionPerformed(ActionEvent e) {
            // TODO Auto-generated method stub
        }
    };
    popup.add(action); 
    JTree tree = new JTree() {

        /** 
         * @inherited <p>
         */
        @Override
        public Point getPopupLocation(MouseEvent e) {
            if (e != null) {
               TreePath path = getClosestPathForLocation(e.getX(), e.getY());
               action.putValue(Action.NAME, String.valueOf(path.getLastPathComponent()));
               return e.getPoint();
            }
            action.putValue(Action.NAME, "no mouse"); 
            return null;
        }

    };
    tree.setComponentPopupMenu(popup);
link|improve this answer
feedback

For showing pop-up menu you may need to use MouseAdapter. Example:

private void createPopUpForTree() {     
    popUpMenuItemDelete  = new JMenuItem(DELETE_COMMAND, KeyEvent.VK_DELETE);
    popUpMenuItemRename  = new JMenuItem(RENAME_COMMAND);
    popUpMenuItemDelete.addActionListener(this);
    popUpMenuItemRename.addActionListener(this);

    treePopup = new JPopupMenu();                               
    treePopup.add(popUpMenuItemDelete);
    treePopup.add(popUpMenuItemRename);

    MouseListener popupListener = new PopupListener();
    treeControl.addMouseListener(popupListener);            
}

class PopupListener extends MouseAdapter {
    public void mousePressed(MouseEvent e)  {maybeShowPopup(e);}
    public void mouseReleased(MouseEvent e) {maybeShowPopup(e);}
    private void maybeShowPopup(MouseEvent e) {
        if (e.isPopupTrigger()) {                                   
            treePopup.show(e.getComponent(), e.getX(), e.getY());
        }
    }
}

EDIT: And handling of pop-up menu command:

public void actionPerformed(ActionEvent e) {
    String commandStr = e.getActionCommand();
    if( commandStr.equals(RENAME_COMMAND) ) {
        MyObject obj = getSelectedObject();
        if( obj != null ) 
            obj->rename();
    }
}

private MyObject getSelectedObject() {
    TreePath[] selPaths = treeControl.getSelectionPaths();
    if( selPaths.length != 1 ) 
        return null;        
    DefaultMutableTreeNode node = (DefaultMutableTreeNode)selPaths[0].getLastPathComponent();
    return (MyObject)node.getUserObject();
}
link|improve this answer
-1 for using a MouseListener instead of componentPopupMenu – kleopatra Jun 22 '11 at 8:07
I think it more 'swing' to use JPopupMenu than componentPopupMenu. – User1 Jun 22 '11 at 12:03
personally, you are free to think whatever you like, of course - but it's not a matter of opion, it's simply wrong to stick to out-dated ways of handling thingies. Downvoted. – kleopatra Jun 22 '11 at 12:47
@kleopatra. Thanks for updating my knowledge. Oracle should also update outdated tutorials of menus link . – User1 Jun 22 '11 at 17:18
I think @kleopatra meant the convenience of setComponentPopupMenu(), which admits JPopupMenu. Of course, sometimes you need the old way, e.g. here. – trashgod Jun 22 '11 at 21:57
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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