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.datamodel.PDBEntry;
25 import jalview.datamodel.SequenceI;
26 import jalview.ext.jmol.JalviewJmolBinding;
27 import jalview.io.DataSourceType;
28 import jalview.structure.StructureSelectionManager;
30 import java.awt.Container;
33 import org.jmol.api.JmolAppConsoleInterface;
34 import org.jmol.console.AppletConsole;
35 import org.jmol.java.BS;
37 class AppletJmolBinding extends JalviewJmolBinding
41 * Window that contains the bound Jmol instance
43 private AppletJmol appletJmolBinding;
45 public AppletJmolBinding(AppletJmol appletJmol,
46 StructureSelectionManager sSm, PDBEntry[] pdbentry,
47 SequenceI[][] seq, DataSourceType protocol)
49 super(sSm, pdbentry, seq, protocol);
50 appletJmolBinding = appletJmol;
54 public jalview.api.FeatureRenderer getFeatureRenderer(
55 AlignmentViewPanel alignment)
57 return appletJmolBinding.ap.getFeatureRenderer();
61 public jalview.api.SequenceRenderer getSequenceRenderer(
62 AlignmentViewPanel alignment)
64 return new SequenceRenderer(((AlignmentPanel) alignment).av);
68 public void sendConsoleEcho(String strEcho)
70 if (appletJmolBinding.scriptWindow == null)
72 appletJmolBinding.showConsole(true);
75 appletJmolBinding.addToHistory(strEcho);
79 public void sendConsoleMessage(String strStatus)
81 if (appletJmolBinding.history != null && strStatus != null
82 && !strStatus.equals("Script completed"))
84 appletJmolBinding.addToHistory(strStatus);
89 public void showUrl(String url, String target)
91 appletJmolBinding.ap.alignFrame.showURL(url, target);
96 public void refreshGUI()
98 appletJmolBinding.updateTitleAndMenus();
102 public void updateColours(Object source)
104 AlignmentPanel ap = (AlignmentPanel) source;
105 colourBySequence(ap);
109 public void showUrl(String url)
113 appletJmolBinding.ap.av.applet.getAppletContext().showDocument(
114 new java.net.URL(url), "jmol");
115 } catch (java.net.MalformedURLException ex)
120 public void newJmolPopup(boolean translateLocale, String menuName,
123 // jmolpopup = new JmolAwtPopup(); // is this used?
124 // jmolpopup.jpiInitialize((viewer), menuName);
128 public void notifyScriptTermination(String strStatus, int msWalltime)
134 public void selectionChanged(BS arg0)
136 // TODO Auto-generated method stub
141 public void refreshPdbEntries()
147 public void showConsole(boolean show)
149 appletJmolBinding.showConsole(show);
153 protected JmolAppConsoleInterface createJmolConsole(
154 Container consolePanel, String buttonsToShow)
156 JmolAppConsoleInterface appc = new AppletConsole();
162 protected void releaseUIResources()
164 appletJmolBinding = null;
169 public void releaseReferences(Object svl)
174 public int[] resizeInnerPanel(String data)
176 // TODO Auto-generated method stub
181 public Map<String, Object> getJSpecViewProperty(String arg0)
183 // TODO Auto-generated method stub