Open GoogleCodeExporter opened 8 years ago
I am unsure how easy it is to hook a listener to a selection on the vizview.
I guess Felix need to comment on this.
Original comment by daniel.l...@gmail.com
on 26 Mar 2008 at 12:16
We already have a mechanism to provide user-invoked callbacks (e.g., mouse)
that we have used here:
fr.univartois.cril.alloyplugin.editor.MultiPageEditor.addPage(String, URL)
We are missing public access to two things:
1) the "legend" information from A4's VizGraph:
edu.mit.csail.sdg.alloy4graph.VizGraph.legends
Note: I think its definition could be made more precise from:
private final SortedMap<Comparable<?>,Pair<String,Color>> legends = new
TreeMap<Comparable<?>,Pair<String,Color>>();
to this:
private final SortedMap<Comparable<? extends AlloyElement>,Pair<String,Color>>
legends = new TreeMap<Comparable<? extends AlloyElement>,Pair<String,Color>>();
2) Public access to A4'z VizGraph from the VizViewer which we have access to in
the
action listener callback.
Original comment by nicolas....@gmail.com
on 26 Mar 2008 at 3:34
Original issue reported on code.google.com by
daniel.l...@gmail.com
on 26 Mar 2008 at 12:15