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.appletgui;
23 import jalview.api.AlignmentViewPanel;
24 import jalview.api.FeatureRenderer;
25 import jalview.api.SequenceRenderer;
26 import jalview.datamodel.PDBEntry;
27 import jalview.datamodel.SequenceI;
28 import jalview.ext.jmol.JalviewJmolBinding;
29 import jalview.io.DataSourceType;
31 import java.awt.Container;
32 import java.util.ArrayList;
33 import java.util.List;
35 import java.util.Vector;
37 import org.jmol.api.JmolAppConsoleInterface;
38 import org.jmol.java.BS;
39 import org.jmol.viewer.Viewer;
42 * bind an alignment view to an external Jmol instance.
47 public class ExtJmol extends JalviewJmolBinding
50 private AlignmentPanel ap;
52 protected ExtJmol(AlignFrame alframe,
53 PDBEntry[] pdbentry, SequenceI[][] seq,
54 DataSourceType protocol)
56 super(alframe.alignPanel.getStructureSelectionManager(), pdbentry, seq,
60 public ExtJmol(Viewer viewer, AlignmentPanel alignPanel,
63 super(alignPanel.getStructureSelectionManager(), seqs, viewer);
65 notifyFileLoaded(null, null, null, null, 0);
69 public void updateColours(Object source)
72 // TODO Auto-generated method stub
77 public void showUrl(String arg0)
79 showUrl(arg0, "jmol");
83 public FeatureRenderer getFeatureRenderer(AlignmentViewPanel alignment)
85 AlignmentPanel ap = (AlignmentPanel) alignment;
86 if (ap.av.isShowSequenceFeatures())
88 return ap.getFeatureRenderer();
97 public SequenceRenderer getSequenceRenderer(AlignmentViewPanel alignment)
99 return ((AlignmentPanel) alignment).getSequenceRenderer();
103 public void notifyScriptTermination(String strStatus, int msWalltime)
109 public void sendConsoleEcho(String strEcho)
115 public void sendConsoleMessage(String strStatus)
121 public void showUrl(String url, String target)
123 ap.alignFrame.showURL(url, target);
127 public void refreshGUI()
133 public void selectionChanged(BS arg0)
135 System.out.println(arg0);
139 public void refreshPdbEntries()
141 List<PDBEntry> pdbe = new ArrayList<PDBEntry>();
142 List<String> fileids = new ArrayList<String>();
143 SequenceI[] sq = ap.av.getAlignment().getSequencesArray();
144 for (int s = 0; s < sq.length; s++)
146 Vector<PDBEntry> pdbids = sq[s].getAllPDBEntries();
149 for (int pe = 0, peSize = pdbids.size(); pe < peSize; pe++)
151 PDBEntry pentry = pdbids.elementAt(pe);
152 if (!fileids.contains(pentry.getId()))
158 fileids.add(pentry.getId());
163 PDBEntry[] newEntries = new PDBEntry[pdbe.size()];
164 for (int pe = 0; pe < pdbe.size(); pe++)
166 newEntries[pe] = pdbe.get(pe);
168 setPdbentry(newEntries);
172 public void showConsole(boolean show)
174 // This never gets called because we haven't overriden the associated Jmol's
177 .println("WARNING: unexpected call to ExtJmol's showConsole method. (showConsole="
182 protected JmolAppConsoleInterface createJmolConsole(
183 Container consolePanel, String buttonsToShow)
185 // TODO Auto-generated method stub
190 protected void releaseUIResources()
198 public void releaseReferences(Object svl)
200 // TODO Auto-generated method stub
205 public Map<String, Object> getJSpecViewProperty(String arg0)
207 // TODO Auto-generated method stub