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.gui.IProgressIndicator;
28 import jalview.io.DataSourceType;
29 import jalview.structure.StructureSelectionManager;
31 import java.awt.Container;
34 import org.jmol.api.JmolAppConsoleInterface;
35 import org.jmol.console.AppletConsole;
36 import org.jmol.java.BS;
38 class AppletJmolBinding extends JalviewJmolBinding
42 * Window that contains the bound Jmol instance
44 private AppletJmol appletJmolBinding;
46 public AppletJmolBinding(AppletJmol appletJmol,
47 StructureSelectionManager sSm, PDBEntry[] pdbentry,
48 SequenceI[][] seq, DataSourceType protocol)
50 super(sSm, pdbentry, seq, protocol);
51 appletJmolBinding = appletJmol;
55 public jalview.api.FeatureRenderer getFeatureRenderer(
56 AlignmentViewPanel alignment)
58 return appletJmolBinding.ap.getFeatureRenderer();
62 public jalview.api.SequenceRenderer getSequenceRenderer(
63 AlignmentViewPanel alignment)
65 return new SequenceRenderer(((AlignmentPanel) alignment).av);
69 public void sendConsoleEcho(String strEcho)
71 if (appletJmolBinding.scriptWindow == null)
73 appletJmolBinding.showConsole(true);
76 appletJmolBinding.addToHistory(strEcho);
80 public void sendConsoleMessage(String strStatus)
82 if (appletJmolBinding.history != null && strStatus != null
83 && !strStatus.equals("Script completed"))
85 appletJmolBinding.addToHistory(strStatus);
90 public void showUrl(String url, String target)
92 appletJmolBinding.ap.alignFrame.showURL(url, target);
97 public void refreshGUI()
99 appletJmolBinding.updateTitleAndMenus();
103 public void updateColours(Object source)
105 AlignmentPanel ap = (AlignmentPanel) source;
106 colourBySequence(ap);
110 public void showUrl(String url)
114 appletJmolBinding.ap.av.applet.getAppletContext()
115 .showDocument(new java.net.URL(url), "jmol");
116 } catch (java.net.MalformedURLException ex)
121 public void newJmolPopup(boolean translateLocale, String menuName,
124 // jmolpopup = new JmolAwtPopup(); // is this used?
125 // jmolpopup.jpiInitialize((viewer), menuName);
129 public void notifyScriptTermination(String strStatus, int msWalltime)
135 public void selectionChanged(BS arg0)
137 // TODO Auto-generated method stub
142 public void refreshPdbEntries()
148 public void showConsole(boolean show)
150 appletJmolBinding.showConsole(show);
154 protected JmolAppConsoleInterface createJmolConsole(
155 Container consolePanel, String buttonsToShow)
157 JmolAppConsoleInterface appc = new AppletConsole();
163 protected void releaseUIResources()
165 appletJmolBinding = null;
170 public void releaseReferences(Object svl)
175 public int[] resizeInnerPanel(String data)
177 // TODO Auto-generated method stub
182 public Map<String, Object> getJSpecViewProperty(String arg0)
184 // TODO Auto-generated method stub
189 protected IProgressIndicator getIProgressIndicator()
191 // no progress indicators on the applet