i've extended a JList to provide two separate functionalities, toolTipText for items, and right-click options. both work separately, but when i try to use them together, the MouseMoved events aren't being recognized? Below are the guts of my new listener methods. how should i be negotiating these various events?

public class JListTT extends javax.swing.JList {
    public JListTT() {
        super();
       addMouseListener(new ttListener());
...
   class ttListener extends MouseAdapter {
        public void mouseMoved(MouseEvent e) {
             String nodeID = bldItemNodeID();
             theList.setToolTipText(nodeID);
            }
        public void mousePressed(MouseEvent ev)  {check(ev); }
        public void mouseReleased(MouseEvent ev) {check(ev); }
        public void mouseClicked(MouseEvent ev)  {check(ev); }
        public void check(MouseEvent ev) {
            if (ev.isPopupTrigger()) { 
                theList.setSelectedIndex(theList.locationToIndex(ev.getPoint())); 
                menu.show(theList, ev.getX(), ev.getY()); 
            }
        }
    }
link|improve this question
please learn java naming conventions and stick to them – kleopatra Dec 4 '11 at 11:11
feedback

3 Answers

up vote 3 down vote accepted

You add the ttListener object as a MouseListener, but I don't see you adding the ttListener object as a MouseMotionListener. For example:

ttListener myMouseadapter = new ttListener();
addMouseListener(myMouseadapter);
addMouseMotionListener(myMouseadapter);
link|improve this answer
i had thought adding a single addMouseListener(new ttListener()) would accomplish it for both addMouseListener and addMouseMotionListener subtypes, but i guess not cuz this works! thanks much. – rikb Dec 4 '11 at 3:58
@rikb: yes, a MouseListener only listens for static mouse actions -- mousePress, mouseRelease, mouseClick, etc, whereas a MouseMotionListener will listen for dynamic mouse events. And you're welcome! – Hovercraft Full Of Eels Dec 4 '11 at 4:04
When you get a chance, please mark this answer correct. – Andrew Thompson Dec 4 '11 at 4:25
feedback

I did not test this myself, but looking at the javadoc of JList the tooltip functionality is available out of the box. The javadoc of JList#getTooltipText clearly states

Overrides JComponent's getToolTipText method in order to allow the renderer's tips to be used if it has text set.

So if your ListCellRenderer returns a Component in the getListCellRendererComponent method which has a tooltip it will be displayed by the JList without the need of a listener.

link|improve this answer
+1 for using existing methods to set the tooltip – camickr Dec 4 '11 at 16:13
feedback

there's not necessarily a need for a low-level approach as a custom mouse-/motionListener:

  • as to a per-cell tooltip, see @Robin's answer
  • as to a context menu, JComonent has a property componentPopupMenu: using that will cope with opening the menu on keyboard short-cut automatically

"not necessarily" because you seem to rely on the cell being selected on right click. If so, you would still need a MouseListener to trigger the selection (after decade long debates, Swing doesn't - which seems to be unusual in current native apps ;-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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