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.bin.Cache;
24 import jalview.datamodel.Alignment;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.ColumnSelection;
27 import jalview.datamodel.PDBEntry;
28 import jalview.datamodel.SequenceI;
29 import jalview.gui.StructureViewer.ViewerType;
30 import jalview.io.JalviewFileChooser;
31 import jalview.io.JalviewFileView;
32 import jalview.schemes.BuriedColourScheme;
33 import jalview.schemes.ColourSchemeI;
34 import jalview.schemes.HelixColourScheme;
35 import jalview.schemes.HydrophobicColourScheme;
36 import jalview.schemes.PurinePyrimidineColourScheme;
37 import jalview.schemes.StrandColourScheme;
38 import jalview.schemes.TaylorColourScheme;
39 import jalview.schemes.TurnColourScheme;
40 import jalview.schemes.ZappoColourScheme;
41 import jalview.structures.models.AAStructureBindingModel;
42 import jalview.util.MessageManager;
43 import jalview.util.Platform;
45 import java.awt.BorderLayout;
46 import java.awt.Color;
47 import java.awt.Dimension;
49 import java.awt.Graphics;
50 import java.awt.Rectangle;
51 import java.awt.event.ActionEvent;
52 import java.awt.event.ActionListener;
53 import java.awt.event.ItemEvent;
54 import java.awt.event.ItemListener;
55 import java.io.BufferedReader;
57 import java.io.FileOutputStream;
58 import java.io.FileReader;
59 import java.io.IOException;
60 import java.io.PrintWriter;
61 import java.util.ArrayList;
62 import java.util.List;
63 import java.util.Vector;
65 import javax.swing.JCheckBoxMenuItem;
66 import javax.swing.JColorChooser;
67 import javax.swing.JInternalFrame;
68 import javax.swing.JMenu;
69 import javax.swing.JMenuItem;
70 import javax.swing.JOptionPane;
71 import javax.swing.JPanel;
72 import javax.swing.JSplitPane;
73 import javax.swing.event.InternalFrameAdapter;
74 import javax.swing.event.InternalFrameEvent;
75 import javax.swing.event.MenuEvent;
76 import javax.swing.event.MenuListener;
78 public class AppJmol extends StructureViewerBase
86 RenderPanel renderPanel;
88 ViewSelectionMenu seqColourBy;
97 * - add the alignment panel to the list used for colouring these
100 * - add the alignment panel to the list used for aligning these
102 * @param leaveColouringToJmol
103 * - do not update the colours from any other source. Jmol is
109 public AppJmol(String[] files, String[] ids, SequenceI[][] seqs,
110 AlignmentPanel ap, boolean usetoColour, boolean useToAlign,
111 boolean leaveColouringToJmol, String loadStatus,
112 Rectangle bounds, String viewid)
114 PDBEntry[] pdbentrys = new PDBEntry[files.length];
115 for (int i = 0; i < pdbentrys.length; i++)
117 // PDBEntry pdbentry = new PDBEntry(files[i], ids[i]);
118 PDBEntry pdbentry = new PDBEntry(ids[i], null, PDBEntry.Type.PDB,
120 pdbentrys[i] = pdbentry;
122 // / TODO: check if protocol is needed to be set, and if chains are
124 jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
125 pdbentrys, seqs, null, null);
127 jmb.setLoadingFromArchive(true);
128 addAlignmentPanel(ap);
131 useAlignmentPanelForSuperposition(ap);
133 if (leaveColouringToJmol || !usetoColour)
135 jmb.setColourBySequence(false);
136 seqColour.setSelected(false);
137 viewerColour.setSelected(true);
139 else if (usetoColour)
141 useAlignmentPanelForColourbyseq(ap);
142 jmb.setColourBySequence(true);
143 seqColour.setSelected(true);
144 viewerColour.setSelected(false);
146 this.setBounds(bounds);
149 // jalview.gui.Desktop.addInternalFrame(this, "Loading File",
150 // bounds.width,bounds.height);
152 this.addInternalFrameListener(new InternalFrameAdapter()
155 public void internalFrameClosing(InternalFrameEvent internalFrameEvent)
160 initJmol(loadStatus); // pdbentry, seq, JBPCHECK!
164 private void initMenus()
166 seqColour.setSelected(jmb.isColourBySequence());
167 viewerColour.setSelected(!jmb.isColourBySequence());
168 if (_colourwith == null)
170 _colourwith = new Vector<AlignmentPanel>();
172 if (_alignwith == null)
174 _alignwith = new Vector<AlignmentPanel>();
177 seqColourBy = new ViewSelectionMenu(
178 MessageManager.getString("label.colour_by"), this, _colourwith,
183 public void itemStateChanged(ItemEvent e)
185 if (!seqColour.isSelected())
191 // update the jmol display now.
192 seqColour_actionPerformed(null);
196 viewMenu.add(seqColourBy);
197 final ItemListener handler;
198 JMenu alpanels = new ViewSelectionMenu(
199 MessageManager.getString("label.superpose_with"), this,
200 _alignwith, handler = new ItemListener()
204 public void itemStateChanged(ItemEvent e)
206 alignStructs.setEnabled(_alignwith.size() > 0);
207 alignStructs.setToolTipText(MessageManager
209 "label.align_structures_using_linked_alignment_views",
210 new String[] { new Integer(_alignwith
211 .size()).toString() }));
214 handler.itemStateChanged(null);
215 viewerActionMenu.add(alpanels);
216 viewerActionMenu.addMenuListener(new MenuListener()
220 public void menuSelected(MenuEvent e)
222 handler.itemStateChanged(null);
226 public void menuDeselected(MenuEvent e)
228 // TODO Auto-generated method stub
233 public void menuCanceled(MenuEvent e)
235 // TODO Auto-generated method stub
241 IProgressIndicator progressBar = null;
244 * add a single PDB structure to a new or existing Jmol view
251 public AppJmol(PDBEntry pdbentry, SequenceI[] seq, String[] chains,
252 final AlignmentPanel ap)
254 progressBar = ap.alignFrame;
255 String pdbId = pdbentry.getId();
258 * If the PDB file is already loaded, the user may just choose to add to an
259 * existing viewer (or cancel)
261 if (addAlreadyLoadedFile(seq, chains, ap, pdbId))
267 * Check if there are other Jmol views involving this alignment and prompt
268 * user about adding this molecule to one of them
270 if (addToExistingViewer(pdbentry, seq, chains, ap, pdbId))
276 * If the options above are declined or do not apply, open a new viewer
278 openNewJmol(ap, new PDBEntry[] { pdbentry }, new SequenceI[][] { seq });
282 * Answers true if this viewer already involves the given PDB ID
285 protected boolean hasPdbId(String pdbId)
287 return jmb.hasPdbId(pdbId);
290 private void openNewJmol(AlignmentPanel ap, PDBEntry[] pdbentrys,
293 progressBar = ap.alignFrame;
294 jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
295 pdbentrys, seqs, null, null);
296 addAlignmentPanel(ap);
297 useAlignmentPanelForColourbyseq(ap);
298 if (pdbentrys.length > 1)
300 alignAddedStructures = true;
301 useAlignmentPanelForSuperposition(ap);
303 jmb.setColourBySequence(true);
304 setSize(400, 400); // probably should be a configurable/dynamic default here
308 addingStructures = false;
309 worker = new Thread(this);
312 this.addInternalFrameListener(new InternalFrameAdapter()
315 public void internalFrameClosing(InternalFrameEvent internalFrameEvent)
324 * create a new Jmol containing several structures superimposed using the
331 public AppJmol(AlignmentPanel ap, PDBEntry[] pe, SequenceI[][] seqs)
333 openNewJmol(ap, pe, seqs);
337 * Returns a list of any Jmol viewers. The list is restricted to those linked
338 * to the given alignment panel if it is not null.
341 protected List<StructureViewerBase> getViewersFor(AlignmentPanel apanel)
343 List<StructureViewerBase> result = new ArrayList<StructureViewerBase>();
344 JInternalFrame[] frames = Desktop.instance.getAllFrames();
346 for (JInternalFrame frame : frames)
348 if (frame instanceof AppJmol)
351 || ((StructureViewerBase) frame).isLinkedWith(apanel))
353 result.add((StructureViewerBase) frame);
360 void initJmol(String command)
362 jmb.setFinishedInit(false);
363 renderPanel = new RenderPanel();
364 // TODO: consider waiting until the structure/view is fully loaded before
366 this.getContentPane().add(renderPanel, java.awt.BorderLayout.CENTER);
367 jalview.gui.Desktop.addInternalFrame(this, jmb.getViewerTitle(),
368 getBounds().width, getBounds().height);
369 if (scriptWindow == null)
371 BorderLayout bl = new BorderLayout();
374 scriptWindow = new JPanel(bl);
375 scriptWindow.setVisible(false);
378 jmb.allocateViewer(renderPanel, true, "", null, null, "", scriptWindow,
380 // jmb.newJmolPopup("Jmol");
385 jmb.evalStateCommand(command);
386 jmb.evalStateCommand("set hoverDelay=0.1");
387 jmb.setFinishedInit(true);
390 void setChainMenuItems(Vector<String> chains)
392 chainMenu.removeAll();
397 JMenuItem menuItem = new JMenuItem(
398 MessageManager.getString("label.all"));
399 menuItem.addActionListener(new ActionListener()
402 public void actionPerformed(ActionEvent evt)
404 allChainsSelected = true;
405 for (int i = 0; i < chainMenu.getItemCount(); i++)
407 if (chainMenu.getItem(i) instanceof JCheckBoxMenuItem)
409 ((JCheckBoxMenuItem) chainMenu.getItem(i)).setSelected(true);
413 allChainsSelected = false;
417 chainMenu.add(menuItem);
419 for (String chain : chains)
421 menuItem = new JCheckBoxMenuItem(chain, true);
422 menuItem.addItemListener(new ItemListener()
425 public void itemStateChanged(ItemEvent evt)
427 if (!allChainsSelected)
434 chainMenu.add(menuItem);
438 boolean allChainsSelected = false;
442 Vector<String> toshow = new Vector<String>();
443 for (int i = 0; i < chainMenu.getItemCount(); i++)
445 if (chainMenu.getItem(i) instanceof JCheckBoxMenuItem)
447 JCheckBoxMenuItem item = (JCheckBoxMenuItem) chainMenu.getItem(i);
448 if (item.isSelected())
450 toshow.addElement(item.getText());
454 jmb.centerViewer(toshow);
458 public void closeViewer(boolean closeExternalViewer)
460 // Jmol does not use an external viewer
465 setAlignmentPanel(null);
469 // TODO: check for memory leaks where instance isn't finalised because jmb
470 // holds a reference to the window
479 // todo - record which pdbids were successfuly imported.
480 StringBuffer errormsgs = new StringBuffer(), files = new StringBuffer();
483 String[] curfiles = jmb.getPdbFile(); // files currently in viewer
484 // TODO: replace with reference fetching/transfer code (validate PDBentry
486 jalview.ws.dbsources.Pdb pdbclient = new jalview.ws.dbsources.Pdb();
487 for (int pi = 0; pi < jmb.getPdbCount(); pi++)
489 String file = jmb.getPdbEntry(pi).getFile();
492 // retrieve the pdb and store it locally
493 AlignmentI pdbseq = null;
494 pdbid = jmb.getPdbEntry(pi).getId();
495 long hdl = pdbid.hashCode() - System.currentTimeMillis();
496 if (progressBar != null)
498 progressBar.setProgressBar(MessageManager.formatMessage(
499 "status.fetching_pdb", new String[] { pdbid }), hdl);
503 pdbseq = pdbclient.getSequenceRecords(pdbid);
504 } catch (OutOfMemoryError oomerror)
506 new OOMWarning("Retrieving PDB id " + pdbid, oomerror);
507 } catch (Exception ex)
509 ex.printStackTrace();
510 errormsgs.append("'" + pdbid + "'");
512 if (progressBar != null)
514 progressBar.setProgressBar(
515 MessageManager.getString("label.state_completed"), hdl);
519 // just transfer the file name from the first sequence's first
521 file = new File(pdbseq.getSequenceAt(0).getAllPDBEntries()
522 .elementAt(0).getFile()).getAbsolutePath();
523 jmb.getPdbEntry(pi).setFile(file);
525 files.append(" \"" + Platform.escapeString(file) + "\"");
529 errormsgs.append("'" + pdbid + "' ");
534 if (curfiles != null && curfiles.length > 0)
536 addingStructures = true; // already files loaded.
537 for (int c = 0; c < curfiles.length; c++)
539 if (curfiles[c].equals(file))
548 files.append(" \"" + Platform.escapeString(file) + "\"");
552 } catch (OutOfMemoryError oomerror)
554 new OOMWarning("Retrieving PDB files: " + pdbid, oomerror);
555 } catch (Exception ex)
557 ex.printStackTrace();
558 errormsgs.append("When retrieving pdbfiles : current was: '" + pdbid
561 if (errormsgs.length() > 0)
564 JOptionPane.showInternalMessageDialog(Desktop.desktop, MessageManager
565 .formatMessage("label.pdb_entries_couldnt_be_retrieved",
566 new String[] { errormsgs.toString() }),
567 MessageManager.getString("label.couldnt_load_file"),
568 JOptionPane.ERROR_MESSAGE);
571 long lastnotify = jmb.getLoadNotifiesHandled();
572 if (files.length() > 0)
574 if (!addingStructures)
579 initJmol("load FILES " + files.toString());
580 } catch (OutOfMemoryError oomerror)
582 new OOMWarning("When trying to open the Jmol viewer!", oomerror);
583 Cache.log.debug("File locations are " + files);
584 } catch (Exception ex)
586 Cache.log.error("Couldn't open Jmol viewer!", ex);
591 StringBuffer cmd = new StringBuffer();
592 cmd.append("loadingJalviewdata=true\nload APPEND ");
593 cmd.append(files.toString());
594 cmd.append("\nloadingJalviewdata=null");
595 final String command = cmd.toString();
597 lastnotify = jmb.getLoadNotifiesHandled();
601 jmb.evalStateCommand(command);
602 } catch (OutOfMemoryError oomerror)
605 "When trying to add structures to the Jmol viewer!",
607 Cache.log.debug("File locations are " + files);
608 } catch (Exception ex)
610 Cache.log.error("Couldn't add files to Jmol viewer!", ex);
614 // need to wait around until script has finished
615 while (addingStructures ? lastnotify >= jmb.getLoadNotifiesHandled()
616 : (!jmb.isFinishedInit() && jmb.getPdbFile() != null && jmb
617 .getPdbFile().length != jmb.getPdbCount()))
621 Cache.log.debug("Waiting around for jmb notify.");
623 } catch (Exception e)
628 // refresh the sequence colours for the new structure(s)
629 for (AlignmentPanel ap : _colourwith)
631 jmb.updateColours(ap);
633 // do superposition if asked to
634 if (Cache.getDefault("AUTOSUPERIMPOSE", true) && alignAddedStructures)
636 javax.swing.SwingUtilities.invokeLater(new Runnable()
641 if (jmb.viewer.isScriptExecuting())
643 javax.swing.SwingUtilities.invokeLater(this);
647 } catch (InterruptedException q)
655 alignStructs_withAllAlignPanels();
659 alignAddedStructures = false;
661 addingStructures = false;
669 public void pdbFile_actionPerformed(ActionEvent actionEvent)
671 JalviewFileChooser chooser = new JalviewFileChooser(
672 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
674 chooser.setFileView(new JalviewFileView());
675 chooser.setDialogTitle(MessageManager.getString("label.save_pdb_file"));
676 chooser.setToolTipText(MessageManager.getString("action.save"));
678 int value = chooser.showSaveDialog(this);
680 if (value == JalviewFileChooser.APPROVE_OPTION)
682 BufferedReader in = null;
685 // TODO: cope with multiple PDB files in view
686 in = new BufferedReader(new FileReader(jmb.getPdbFile()[0]));
687 File outFile = chooser.getSelectedFile();
689 PrintWriter out = new PrintWriter(new FileOutputStream(outFile));
691 while ((data = in.readLine()) != null)
693 if (!(data.indexOf("<PRE>") > -1 || data.indexOf("</PRE>") > -1))
699 } catch (Exception ex)
701 ex.printStackTrace();
709 } catch (IOException e)
719 public void viewMapping_actionPerformed(ActionEvent actionEvent)
721 jalview.gui.CutAndPasteTransfer cap = new jalview.gui.CutAndPasteTransfer();
724 cap.appendText(jmb.printMappings());
725 } catch (OutOfMemoryError e)
728 "composing sequence-structure alignments for display in text box.",
733 jalview.gui.Desktop.addInternalFrame(cap,
734 MessageManager.getString("label.pdb_sequence_mapping"), 550,
739 public void eps_actionPerformed(ActionEvent e)
741 makePDBImage(jalview.util.ImageMaker.TYPE.EPS);
745 public void png_actionPerformed(ActionEvent e)
747 makePDBImage(jalview.util.ImageMaker.TYPE.PNG);
750 void makePDBImage(jalview.util.ImageMaker.TYPE type)
752 int width = getWidth();
753 int height = getHeight();
755 jalview.util.ImageMaker im;
757 if (type == jalview.util.ImageMaker.TYPE.PNG)
759 im = new jalview.util.ImageMaker(this,
760 jalview.util.ImageMaker.TYPE.PNG, "Make PNG image from view",
761 width, height, null, null, null, 0, false);
763 else if (type == jalview.util.ImageMaker.TYPE.EPS)
765 im = new jalview.util.ImageMaker(this,
766 jalview.util.ImageMaker.TYPE.EPS, "Make EPS file from view",
767 width, height, null, this.getTitle(), null, 0, false);
772 im = new jalview.util.ImageMaker(this,
773 jalview.util.ImageMaker.TYPE.SVG, "Make SVG file from PCA",
774 width, height, null, this.getTitle(), null, 0, false);
777 if (im.getGraphics() != null)
779 jmb.viewer.renderScreenImage(im.getGraphics(), width, height);
785 public void viewerColour_actionPerformed(ActionEvent actionEvent)
787 if (viewerColour.isSelected())
789 // disable automatic sequence colouring.
790 jmb.setColourBySequence(false);
795 public void seqColour_actionPerformed(ActionEvent actionEvent)
797 jmb.setColourBySequence(seqColour.isSelected());
798 if (_colourwith == null)
800 _colourwith = new Vector<AlignmentPanel>();
802 if (jmb.isColourBySequence())
804 if (!jmb.isLoadingFromArchive())
806 if (_colourwith.size() == 0 && getAlignmentPanel() != null)
808 // Make the currently displayed alignment panel the associated view
809 _colourwith.add(getAlignmentPanel().alignFrame.alignPanel);
812 // Set the colour using the current view for the associated alignframe
813 for (AlignmentPanel ap : _colourwith)
815 jmb.colourBySequence(ap);
821 public void chainColour_actionPerformed(ActionEvent actionEvent)
823 chainColour.setSelected(true);
828 public void chargeColour_actionPerformed(ActionEvent actionEvent)
830 chargeColour.setSelected(true);
831 jmb.colourByCharge();
835 public void zappoColour_actionPerformed(ActionEvent actionEvent)
837 zappoColour.setSelected(true);
838 jmb.setJalviewColourScheme(new ZappoColourScheme());
842 public void taylorColour_actionPerformed(ActionEvent actionEvent)
844 taylorColour.setSelected(true);
845 jmb.setJalviewColourScheme(new TaylorColourScheme());
849 public void hydroColour_actionPerformed(ActionEvent actionEvent)
851 hydroColour.setSelected(true);
852 jmb.setJalviewColourScheme(new HydrophobicColourScheme());
856 public void helixColour_actionPerformed(ActionEvent actionEvent)
858 helixColour.setSelected(true);
859 jmb.setJalviewColourScheme(new HelixColourScheme());
863 public void strandColour_actionPerformed(ActionEvent actionEvent)
865 strandColour.setSelected(true);
866 jmb.setJalviewColourScheme(new StrandColourScheme());
870 public void turnColour_actionPerformed(ActionEvent actionEvent)
872 turnColour.setSelected(true);
873 jmb.setJalviewColourScheme(new TurnColourScheme());
877 public void buriedColour_actionPerformed(ActionEvent actionEvent)
879 buriedColour.setSelected(true);
880 jmb.setJalviewColourScheme(new BuriedColourScheme());
884 public void purinePyrimidineColour_actionPerformed(ActionEvent actionEvent)
886 setJalviewColourScheme(new PurinePyrimidineColourScheme());
890 public void userColour_actionPerformed(ActionEvent actionEvent)
892 userColour.setSelected(true);
893 new UserDefinedColours(this, null);
897 public void backGround_actionPerformed(ActionEvent actionEvent)
899 java.awt.Color col = JColorChooser
900 .showDialog(this, MessageManager
901 .getString("label.select_backgroud_colour"), null);
904 jmb.setBackgroundColour(col);
909 public void showHelp_actionPerformed(ActionEvent actionEvent)
913 jalview.util.BrowserLauncher
914 .openURL("http://jmol.sourceforge.net/docs/JmolUserGuide/");
915 } catch (Exception ex)
920 public void showConsole(boolean showConsole)
925 if (splitPane == null)
927 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
928 splitPane.setTopComponent(renderPanel);
929 splitPane.setBottomComponent(scriptWindow);
930 this.getContentPane().add(splitPane, BorderLayout.CENTER);
931 splitPane.setDividerLocation(getHeight() - 200);
932 scriptWindow.setVisible(true);
933 scriptWindow.validate();
934 splitPane.validate();
940 if (splitPane != null)
942 splitPane.setVisible(false);
947 this.getContentPane().add(renderPanel, BorderLayout.CENTER);
953 class RenderPanel extends JPanel
955 final Dimension currentSize = new Dimension();
958 public void paintComponent(Graphics g)
960 getSize(currentSize);
962 if (jmb != null && jmb.fileLoadingError != null)
964 g.setColor(Color.black);
965 g.fillRect(0, 0, currentSize.width, currentSize.height);
966 g.setColor(Color.white);
967 g.setFont(new Font("Verdana", Font.BOLD, 14));
968 g.drawString(MessageManager.getString("label.error_loading_file")
969 + "...", 20, currentSize.height / 2);
970 StringBuffer sb = new StringBuffer();
972 for (int e = 0; e < jmb.getPdbCount(); e++)
974 sb.append(jmb.getPdbEntry(e).getId());
975 if (e < jmb.getPdbCount() - 1)
980 if (e == jmb.getPdbCount() - 1 || sb.length() > 20)
983 g.drawString(sb.toString(), 20, currentSize.height / 2 - lines
984 * g.getFontMetrics().getHeight());
988 else if (jmb == null || jmb.viewer == null || !jmb.isFinishedInit())
990 g.setColor(Color.black);
991 g.fillRect(0, 0, currentSize.width, currentSize.height);
992 g.setColor(Color.white);
993 g.setFont(new Font("Verdana", Font.BOLD, 14));
994 g.drawString(MessageManager.getString("label.retrieving_pdb_data"),
995 20, currentSize.height / 2);
999 jmb.viewer.renderScreenImage(g, currentSize.width,
1000 currentSize.height);
1005 public void updateTitleAndMenus()
1007 if (jmb.fileLoadingError != null && jmb.fileLoadingError.length() > 0)
1012 setChainMenuItems(jmb.chainNames);
1014 this.setTitle(jmb.getViewerTitle());
1015 if (jmb.getPdbFile().length > 1 && jmb.getSequence().length > 1)
1017 viewerActionMenu.setVisible(true);
1019 if (!jmb.isLoadingFromArchive())
1021 seqColour_actionPerformed(null);
1029 * jalview.jbgui.GStructureViewer#alignStructs_actionPerformed(java.awt.event
1033 protected void alignStructs_actionPerformed(ActionEvent actionEvent)
1035 alignStructs_withAllAlignPanels();
1038 private void alignStructs_withAllAlignPanels()
1040 if (getAlignmentPanel() == null)
1045 if (_alignwith.size() == 0)
1047 _alignwith.add(getAlignmentPanel());
1052 AlignmentI[] als = new Alignment[_alignwith.size()];
1053 ColumnSelection[] alc = new ColumnSelection[_alignwith.size()];
1054 int[] alm = new int[_alignwith.size()];
1057 for (AlignmentPanel ap : _alignwith)
1059 als[a] = ap.av.getAlignment();
1061 alc[a++] = ap.av.getColumnSelection();
1063 jmb.superposeStructures(als, alm, alc);
1064 } catch (Exception e)
1066 StringBuffer sp = new StringBuffer();
1067 for (AlignmentPanel ap : _alignwith)
1069 sp.append("'" + ap.alignFrame.getTitle() + "' ");
1071 Cache.log.info("Couldn't align structures with the " + sp.toString()
1072 + "associated alignment panels.", e);
1079 public void setJalviewColourScheme(ColourSchemeI ucs)
1081 jmb.setJalviewColourScheme(ucs);
1088 * @return first alignment panel displaying given alignment, or the default
1091 public AlignmentPanel getAlignmentPanelFor(AlignmentI alignment)
1093 for (AlignmentPanel ap : getAllAlignmentPanels())
1095 if (ap.av.getAlignment() == alignment)
1100 return getAlignmentPanel();
1104 public AAStructureBindingModel getBinding()
1110 public String getStateInfo()
1112 return jmb == null ? null : jmb.viewer.getStateInfo();
1116 public ViewerType getViewerType()
1118 return ViewerType.JMOL;
1122 protected AAStructureBindingModel getBindingModel()