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.
23 import jalview.api.AlignmentViewPanel;
24 import jalview.api.structures.JalviewStructureDisplayI;
25 import jalview.bin.Cache;
26 import jalview.datamodel.PDBEntry;
27 import jalview.datamodel.SequenceI;
28 import jalview.ext.jmol.JalviewJmolBinding;
29 import jalview.io.DataSourceType;
30 import jalview.structure.StructureSelectionManager;
32 import java.awt.Container;
35 import org.jmol.api.JmolAppConsoleInterface;
36 import org.jmol.java.BS;
37 import org.openscience.jmol.app.jmolpanel.console.AppConsole;
39 public class AppJmolBinding extends JalviewJmolBinding
41 private AppJmol appJmolWindow;
43 public AppJmolBinding(AppJmol appJmol, StructureSelectionManager sSm,
44 PDBEntry[] pdbentry, SequenceI[][] sequenceIs,
45 DataSourceType protocol)
47 super(sSm, pdbentry, sequenceIs, protocol);
48 appJmolWindow = appJmol;
52 protected IProgressIndicator getIProgressIndicator()
54 return appJmolWindow.progressBar;
58 public SequenceRenderer getSequenceRenderer(AlignmentViewPanel alignment)
60 return new SequenceRenderer(((AlignmentPanel) alignment).av);
64 public void sendConsoleEcho(String strEcho)
68 console.sendConsoleEcho(strEcho);
73 public void sendConsoleMessage(String strStatus)
75 if (console != null && strStatus != null)
76 // && !strStatus.equals("Script completed"))
77 // should we squash the script completed string ?
79 console.sendConsoleMessage(strStatus);
84 public void showUrl(String url, String target)
88 jalview.util.BrowserLauncher.openURL(url);
91 Cache.log.error("Failed to launch Jmol-associated url " + url, e);
92 // TODO: 2.6 : warn user if browser was not configured.
97 public void refreshGUI()
99 // appJmolWindow.repaint();
100 javax.swing.SwingUtilities.invokeLater(new Runnable()
105 appJmolWindow.updateTitleAndMenus();
106 appJmolWindow.revalidate();
112 public void updateColours(Object source)
114 AlignmentPanel ap = (AlignmentPanel) source;
115 // ignore events from panels not used to colour this view
116 if (!appJmolWindow.isUsedforcolourby(ap))
120 if (!isLoadingFromArchive())
122 colourBySequence(ap);
127 public void notifyScriptTermination(String strStatus, int msWalltime)
129 // todo - script termination doesn't happen ?
130 // if (console != null)
131 // console.notifyScriptTermination(strStatus,
136 public void showUrl(String url)
138 showUrl(url, "jmol");
141 public void newJmolPopup(String menuName)
143 // jmolpopup = new JmolAwtPopup();
144 // jmolpopup.jpiInitialize((viewer), menuName);
148 public void selectionChanged(BS arg0)
150 // TODO Auto-generated method stub
155 public void refreshPdbEntries()
157 // TODO Auto-generated method stub
162 public void showConsole(boolean b)
164 appJmolWindow.showConsole(b);
168 protected JmolAppConsoleInterface createJmolConsole(
169 Container consolePanel, String buttonsToShow)
171 viewer.setJmolCallbackListener(this);
172 return new AppConsole(viewer, consolePanel, buttonsToShow);
176 protected void releaseUIResources()
178 appJmolWindow = null;
183 public void releaseReferences(Object svl)
185 if (svl instanceof SeqPanel)
187 appJmolWindow.removeAlignmentPanel(((SeqPanel) svl).ap);
192 public Map<String, Object> getJSpecViewProperty(String arg0)
194 // TODO Auto-generated method stub
199 public JalviewStructureDisplayI getViewer()
201 return appJmolWindow;
205 public jalview.api.FeatureRenderer getFeatureRenderer(
206 AlignmentViewPanel alignment)
208 AlignmentPanel ap = (alignment == null)
209 ? appJmolWindow.getAlignmentPanel()
210 : (AlignmentPanel) alignment;
211 if (ap.av.isShowSequenceFeatures())
213 return ap.av.getAlignPanel().getSeqPanel().seqCanvas.fr;