Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a JSVGCanvas object from the Batik library from java. In my application, I am rendering several objects in a schematic. I require to know what component is below the mouse so I can render an appropiate tooltip and description that I am rendering from an external source.

My question is, how can I determine what objects are below the cursor at any given time?

share|improve this question

1 Answer

up vote 1 down vote accepted

If you know the objects, for which you want to add tooltips and descriptions, you can add EventListeners to each Object. I did the same in my applciation.

For all relevant nodes, you do:

org.w3c.dom.events.EventTarget t = (EventTarget) node;
t.addEventListener("mouseover", new SvgOnHoverAction());

where SvgOnHoverAction implements org.w3c.dom.events.EventListener

there you do:

public void handleEvent(Event evt) {
    Element target = (Element)evt.getCurrentTarget();
    ...
}
share|improve this answer
Good answer thanks! I ended up finding somewhere that you can also add a "title" element inside, but your solution is better! – Mario Ortegón Oct 14 '09 at 23:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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