I am having some trouble dealing with pick events on JUNG graphs. I have been using the GraphMouseListener interface to listen for clicks on vertices, but now I need to add support for picking edges, and I can't seem to find a way to do it on the documentation.

Any pointers?

Thank you

link|improve this question

Refer to the GraphEditorDemo.java example or other examples as mentioned in my post [stackoverflow.com/questions/8226624/…) – ee. Dec 8 '11 at 10:04
Thanks for reply. How can I override the clicking on edges? I didn't find any examples showing how to do this. – pnsilva Dec 8 '11 at 19:42
There are some examples for picking edges, even in the GraphEditorDemo.java...but you need to change the mouse mode from the mouse mode list to picking mode. But, if your desire is to have a picking behavior ala Photoshop, then it doesn't behave like one. It just allows you to pick an edge and listen to its event. – ee. Dec 9 '11 at 0:56
But what listener lets me implement the edge picking? I can see GraphMouseListener in the samples, but I can only pick vertices with these. – pnsilva Dec 9 '11 at 22:14
feedback

1 Answer

up vote 0 down vote accepted

Solved it by adding item listeners to the picked states of vertices and edges:

visualizationViewer.getPickedEdgeState().addItemListener(new EdgePickListener());
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.