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;
30 import java.awt.Container;
31 import java.util.ArrayList;
32 import java.util.List;
34 import java.util.Vector;
36 import org.jmol.api.JmolAppConsoleInterface;
37 import org.jmol.java.BS;
38 import org.jmol.viewer.Viewer;
41 * bind an alignment view to an external Jmol instance.
46 public class ExtJmol extends JalviewJmolBinding
49 private AlignmentPanel ap;
51 protected ExtJmol(jalview.appletgui.AlignFrame alframe,
52 PDBEntry[] pdbentry, SequenceI[][] seq, String[][] chains,
55 super(alframe.alignPanel.getStructureSelectionManager(), pdbentry, seq,
59 public ExtJmol(Viewer viewer, AlignmentPanel alignPanel,
62 super(alignPanel.getStructureSelectionManager(), seqs, viewer);
64 notifyFileLoaded(null, null, null, null, 0);
67 public void updateColours(Object source)
70 // TODO Auto-generated method stub
74 public void showUrl(String arg0)
76 showUrl(arg0, "jmol");
80 public FeatureRenderer getFeatureRenderer(AlignmentViewPanel alignment)
82 AlignmentPanel ap = (AlignmentPanel) alignment;
83 if (ap.av.isShowSequenceFeatures())
85 return ap.getFeatureRenderer();
94 public SequenceRenderer getSequenceRenderer(AlignmentViewPanel alignment)
96 return ((AlignmentPanel) alignment).getSequenceRenderer();
100 public void notifyScriptTermination(String strStatus, int msWalltime)
106 public void sendConsoleEcho(String strEcho)
112 public void sendConsoleMessage(String strStatus)
118 public void showUrl(String url, String target)
120 ap.alignFrame.showURL(url, target);
124 public void refreshGUI()
129 public void selectionChanged(BS arg0)
131 System.out.println(arg0);
135 public void refreshPdbEntries()
137 List<PDBEntry> pdbe = new ArrayList<PDBEntry>();
138 List<String> fileids = new ArrayList<String>();
139 SequenceI[] sq = ap.av.getAlignment().getSequencesArray();
140 for (int s = 0; s < sq.length; s++)
142 Vector<PDBEntry> pdbids = sq[s].getAllPDBEntries();
145 for (int pe = 0, peSize = pdbids.size(); pe < peSize; pe++)
147 PDBEntry pentry = pdbids.elementAt(pe);
148 if (!fileids.contains(pentry.getId()))
154 fileids.add(pentry.getId());
159 PDBEntry[] newEntries = new PDBEntry[pdbe.size()];
160 for (int pe = 0; pe < pdbe.size(); pe++)
162 newEntries[pe] = pdbe.get(pe);
164 setPdbentry(newEntries);
168 public void showConsole(boolean show)
170 // This never gets called because we haven't overriden the associated Jmol's
173 .println("WARNING: unexpected call to ExtJmol's showConsole method. (showConsole="
178 protected JmolAppConsoleInterface createJmolConsole(
179 Container consolePanel, String buttonsToShow)
181 // TODO Auto-generated method stub
186 protected void releaseUIResources()
194 public void releaseReferences(Object svl)
196 // TODO Auto-generated method stub
201 public Map<String, Object> getJSpecViewProperty(String arg0)
203 // TODO Auto-generated method stub