X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FPymolViewer.java;h=9dc28c869f41e0006180418f0f677c8eecc926bb;hb=fa9da54fb97cb2eacb1af7859024d90166bddb8f;hp=d4260518a2006643e020ba947a8d38ad9f584a4e;hpb=cb8e52fbbc5f725e3f7f48c672cdddb0690bd978;p=jalview.git diff --git a/src/jalview/gui/PymolViewer.java b/src/jalview/gui/PymolViewer.java index d426051..9dc28c8 100644 --- a/src/jalview/gui/PymolViewer.java +++ b/src/jalview/gui/PymolViewer.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.gui; import java.awt.event.ActionEvent; @@ -50,9 +70,7 @@ public class PymolViewer extends StructureViewerBase AlignmentPanel ap) { this(); - openNewPymol(ap, new PDBEntry[] { pdb }, - new SequenceI[][] - { seqs }); + openNewPymol(ap, new PDBEntry[] { pdb }, new SequenceI[][] { seqs }); } public PymolViewer(PDBEntry[] pe, boolean alignAdded, SequenceI[][] seqs, @@ -161,11 +179,12 @@ public class PymolViewer extends StructureViewerBase public void run() { // todo pull up much of this - + StringBuilder errormsgs = new StringBuilder(128); List filePDB = new ArrayList<>(); List filePDBpos = new ArrayList<>(); - String[] curfiles = binding.getStructureFiles(); // files currently in viewer + String[] curfiles = binding.getStructureFiles(); // files currently in + // viewer for (int pi = 0; pi < binding.getPdbCount(); pi++) { String file = null; @@ -186,8 +205,7 @@ public class PymolViewer extends StructureViewerBase /* * got file already */ - file = new File(thePdbEntry.getFile()).getAbsoluteFile() - .getPath(); + file = new File(thePdbEntry.getFile()).getAbsoluteFile().getPath(); // todo - skip if already loaded in PyMOL } if (file != null) @@ -196,7 +214,7 @@ public class PymolViewer extends StructureViewerBase filePDBpos.add(Integer.valueOf(pi)); } } - + if (!filePDB.isEmpty()) { /* @@ -211,8 +229,18 @@ public class PymolViewer extends StructureViewerBase } catch (Exception ex) { Console.error("Couldn't open PyMOL viewer!", ex); + // if we couldn't open Pymol, no point continuing + return; } } + if (!binding.isViewerRunning()) + { + // nothing to do + // TODO: ensure we tidy up JAL-3619 + + return; + } + int num = -1; for (PDBEntry pe : filePDB) { @@ -244,14 +272,12 @@ public class PymolViewer extends StructureViewerBase StructureFile pdb = binding.getSsm().setMapping( binding.getSequence()[pos], binding.getChains()[pos], - pe.getFile(), protocol, - getProgressIndicator()); + pe.getFile(), protocol, getProgressIndicator()); binding.stashFoundChains(pdb, pe.getFile()); } catch (Exception ex) { - Console.error( - "Couldn't open " + pe.getFile() + " in Chimera viewer!", - ex); + Console.error("Couldn't open " + pe.getFile() + " in " + + getViewerName() + "!", ex); } finally { // Cache.debug("File locations are " + files); @@ -314,6 +340,7 @@ public class PymolViewer extends StructureViewerBase getViewerName()), MessageManager.getString("label.error_loading_file"), JvOptionPane.ERROR_MESSAGE); + binding.closeViewer(true); this.dispose(); return; } @@ -323,8 +350,7 @@ public class PymolViewer extends StructureViewerBase boolean opened = binding.openSession(pymolSessionFile); if (!opened) { - Console.error( - "An error occurred opening PyMOL session file " + Console.error("An error occurred opening PyMOL session file " + pymolSessionFile); } } @@ -348,7 +374,9 @@ public class PymolViewer extends StructureViewerBase { return "PyMOL"; } + JMenuItem writeFeatures = null; + @Override protected void initMenus() { @@ -359,8 +387,8 @@ public class PymolViewer extends StructureViewerBase writeFeatures = new JMenuItem( MessageManager.getString("label.create_viewer_attributes")); - writeFeatures.setToolTipText(MessageManager - .getString("label.create_viewer_attributes_tip")); + writeFeatures.setToolTipText( + MessageManager.getString("label.create_viewer_attributes_tip")); writeFeatures.addActionListener(new ActionListener() { @Override @@ -371,7 +399,7 @@ public class PymolViewer extends StructureViewerBase }); viewerActionMenu.add(writeFeatures); } - + @Override protected void buildActionMenu() { @@ -382,8 +410,8 @@ public class PymolViewer extends StructureViewerBase protected void sendFeaturesToPymol() { int count = binding.sendFeaturesToViewer(getAlignmentPanel()); - statusBar.setText( - MessageManager.formatMessage("label.attributes_set", count, getViewerName())); + statusBar.setText(MessageManager.formatMessage("label.attributes_set", + count, getViewerName())); } }