Re: Detecting Mouse Over Tab on JTabbedPane
Hal Vaughan wrote:
Michael Rauscher wrote:
Hal Vaughan schrieb:
I tried finding this and hope I've missed the obvious or that it's
something easy I just didn't find.
I know I can set tool tips for a tab on a JTabbedPane object. I'd like
to have a "help" JTextArea off to the side of my main interface to use
to
provide more info than I can in a tool tip. Ideally, when the user puts
the mouse pointer over a tab, I'd like to have a listener that will
detect
that and change the text in the help section. In other words, I need to
be able to make an actionlistener that will know when the pointer is
over a tab (not when it changes or is clicked on).
Is that possible?
Sure. It's a MouseMotionListener you'll have to add to the JTabbedPane
instance, e. g. something like this one:
MouseMotionListener listener = new MouseMotionAdapter() {
private int oldIx = -1;
public void mouseMoved( MouseEvent e ) {
JTabbedPane tp = (JTabbedPane)e.getSource();
int ix = tp.indexAtLocation( e.getX(), e.getY() );
if ( ix == oldIx )
return;
oldIx = ix;
if ( ix == -1 )
return;
doSomethingUseful();
}
};
Bye
Michael
I tried adding this like this:
addMouseMotionListener(new MouseMotionAdapter() {...});
(The ... contained all the code above.) I replaced "doSomethingUseful()"
with "System.out.println("Tab index: " + ix)" and it never printed
anything, so I finally added "System.out.println("Movement...");" before
the line to get the JTabbedPane from the event and never got a printout
from there.
Is there another step I need to do to make sure I actually get the info or
that the listener is called?
Nevermind this last part. I was using an example I downloaded from online
for a quick JTabbedPane example and between cutting and pasting in my
browser to my editor, the indentation got messed up and I lost track of
which object I was adding the listener to. (HINT: Never name objects, even
in short code, "myObject" or something too generic and always keep
indentations lined up!)
Okay, I had seen the indication of indexAtLocation(), but misunderstood it.
I thought it would report the entire pane and not just a tab, which would
be useless, since whenever the mouse was over the pane, it would report the
number of the active pane. I was also hoping there would be something a
bit more direct, but this works perfectly. It only reports anything when
the pointer is directly over a tab, or a -1 if it's not over one. I
changed the method to:
int lastIdx = -1;
JLabel tabIndex = new JLabel("");
public void mouseMoved( MouseEvent e ) {
JTabbedPane tp = (JTabbedPane)e.getSource();
int idx = tp.indexAtLocation( e.getX(), e.getY() );
if (idx == lastIdx) return;
tabIndex.setText(String.valueOf(idx));
return;
}
I also just added "implements MouseMotionListener" to the main class I was
using and added a mouseDragged() method so that'd work so it'd all be in
one class and the variables and components were easier to track.
This works as a dry run for what I want to do because it changes the text of
a component to something specific based on the tab the cursor is over.
When I get the real thing working, I'll make the JTextArea I'm using for a
help section start with the help text for the default selected panel. That
way the user has instant help and the help will change whenever they change
the tab or mouse over one to change it.
Thanks for the help! This does exactly what I wanted and is easy to
implement.
Hal