2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.javascript;
23 import jalview.appletgui.AlignFrame;
24 import jalview.bin.JalviewLite;
25 import jalview.datamodel.ColumnSelection;
26 import jalview.datamodel.SequenceGroup;
27 import jalview.structure.SelectionSource;
29 public class JsSelectionSender extends JSFunctionExec implements
30 jalview.structure.SelectionListener, JsCallBack
37 public JsSelectionSender(JalviewLite jvlite, AlignFrame af,
46 public void selection(SequenceGroup seqsel, ColumnSelection colsel,
47 SelectionSource source)
49 // System.err.println("Testing selection event relay to jsfunction:"+_listener);
56 if (source instanceof jalview.appletgui.AlignViewport
57 && ((jalview.appletgui.AlignViewport) source).applet.currentAlignFrame.viewport == source)
59 // should be valid if it just generated an event!
60 src = ((jalview.appletgui.AlignViewport) source).applet.currentAlignFrame;
64 String[] seqs = new String[] {};
65 String[] cols = new String[] {};
66 int strt = 0, end = (src == null) ? -1 : src.alignPanel.av
67 .getAlignment().getWidth();
68 if (seqsel != null && seqsel.getSize() > 0)
70 seqs = new String[seqsel.getSize()];
71 for (int i = 0; i < seqs.length; i++)
73 seqs[i] = seqsel.getSequenceAt(i).getName();
75 if (strt < seqsel.getStartRes())
77 strt = seqsel.getStartRes();
79 if (end == -1 || end > seqsel.getEndRes())
81 end = seqsel.getEndRes();
84 if (colsel != null && !colsel.isEmpty())
88 end = colsel.getMax() + 1;
90 cols = new String[colsel.getSelected().size()];
91 for (int i = 0; i < cols.length; i++)
93 cols[i] = "" + (1 + colsel.getSelected().get(i).intValue());
98 if (seqsel != null && seqsel.getSize() > 0)
100 // send a valid range, otherwise we send the empty selection
101 cols = new String[2];
102 cols[0] = "" + (1 + strt) + "-" + (1 + end);
107 System.err.println("Relaying selection to jsfunction:" + _listener);
108 executeJavascriptFunction(_listener,
109 new Object[] { src, setid, jvlite.arrayToSeparatorList(seqs),
110 jvlite.arrayToSeparatorList(cols) });
111 } catch (Exception ex)
114 .println("Jalview Javascript exec error: Couldn't send selection message using function '"
116 ex.printStackTrace();
117 if (ex instanceof netscape.javascript.JSException)
119 System.err.println("Javascript Exception: "
120 + ((netscape.javascript.JSException) ex).getCause()
128 public AlignFrame getAlignFrame()
134 public String getListenerFunction()