Merge branch 'develop' into trialMerge
[jalview.git] / src / jalview / gui / StructureViewerBase.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.gui;
22
23 import jalview.api.AlignmentViewPanel;
24 import jalview.bin.Cache;
25 import jalview.datamodel.Alignment;
26 import jalview.datamodel.AlignmentI;
27 import jalview.datamodel.HiddenColumns;
28 import jalview.datamodel.PDBEntry;
29 import jalview.datamodel.SequenceI;
30 import jalview.gui.JalviewColourChooser.ColourChooserListener;
31 import jalview.gui.StructureViewer.ViewerType;
32 import jalview.gui.ViewSelectionMenu.ViewSetProvider;
33 import jalview.io.DataSourceType;
34 import jalview.io.JalviewFileChooser;
35 import jalview.io.JalviewFileView;
36 import jalview.jbgui.GStructureViewer;
37 import jalview.schemes.ColourSchemeI;
38 import jalview.schemes.ColourSchemes;
39 import jalview.structure.StructureMapping;
40 import jalview.structures.models.AAStructureBindingModel;
41 import jalview.util.MessageManager;
42
43 import java.awt.Color;
44 import java.awt.Component;
45 import java.awt.event.ActionEvent;
46 import java.awt.event.ActionListener;
47 import java.awt.event.ItemEvent;
48 import java.awt.event.ItemListener;
49 import java.io.BufferedReader;
50 import java.io.File;
51 import java.io.FileOutputStream;
52 import java.io.FileReader;
53 import java.io.IOException;
54 import java.io.PrintWriter;
55 import java.util.ArrayList;
56 import java.util.List;
57 import java.util.Vector;
58
59 import javax.swing.ButtonGroup;
60 import javax.swing.JCheckBoxMenuItem;
61 import javax.swing.JMenu;
62 import javax.swing.JMenuItem;
63 import javax.swing.JRadioButtonMenuItem;
64 import javax.swing.event.MenuEvent;
65 import javax.swing.event.MenuListener;
66
67 /**
68  * Base class with common functionality for JMol, Chimera or other structure
69  * viewers.
70  * 
71  * @author gmcarstairs
72  *
73  */
74 public abstract class StructureViewerBase extends GStructureViewer
75         implements Runnable, ViewSetProvider
76 {
77   /*
78    * names for colour options (additional to Jalview colour schemes)
79    */
80   enum ViewerColour
81   {
82     BySequence, ByChain, ChargeCysteine, ByViewer
83   }
84
85   /**
86    * list of sequenceSet ids associated with the view
87    */
88   protected List<String> _aps = new ArrayList<>();
89
90   /**
91    * list of alignment panels to use for superposition
92    */
93   protected Vector<AlignmentPanel> _alignwith = new Vector<>();
94
95   /**
96    * list of alignment panels that are used for colouring structures by aligned
97    * sequences
98    */
99   protected Vector<AlignmentPanel> _colourwith = new Vector<>();
100
101   private String viewId = null;
102
103   private AlignmentPanel ap;
104
105   protected boolean alignAddedStructures = false;
106
107   protected volatile boolean _started = false;
108
109   protected volatile boolean addingStructures = false;
110
111   protected Thread worker = null;
112
113   protected boolean allChainsSelected = false;
114
115   protected JMenu viewSelectionMenu;
116
117   /**
118    * set after sequence colouring has been applied for this structure viewer.
119    * used to determine if the final sequence/structure mapping has been
120    * determined
121    */
122   protected volatile boolean seqColoursApplied = false;
123
124   /**
125    * Default constructor
126    */
127   public StructureViewerBase()
128   {
129     super();
130   }
131
132   /**
133    * @return true if added structures should be aligned to existing one(s)
134    */
135   @Override
136   public boolean isAlignAddedStructures()
137   {
138     return alignAddedStructures;
139   }
140
141   /**
142    * 
143    * @param true
144    *          if added structures should be aligned to existing one(s)
145    */
146   @Override
147   public void setAlignAddedStructures(boolean alignAdded)
148   {
149     alignAddedStructures = alignAdded;
150   }
151
152   /**
153    * 
154    * @param ap2
155    * @return true if this Jmol instance is linked with the given alignPanel
156    */
157   public boolean isLinkedWith(AlignmentPanel ap2)
158   {
159     return _aps.contains(ap2.av.getSequenceSetId());
160   }
161
162   public boolean isUsedforaligment(AlignmentPanel ap2)
163   {
164
165     return (_alignwith != null) && _alignwith.contains(ap2);
166   }
167
168   public boolean isUsedforcolourby(AlignmentPanel ap2)
169   {
170     return (_colourwith != null) && _colourwith.contains(ap2);
171   }
172
173   /**
174    * 
175    * @return TRUE if the view is NOT being coloured by the alignment colours.
176    */
177   public boolean isColouredByViewer()
178   {
179     return !getBinding().isColourBySequence();
180   }
181
182   public String getViewId()
183   {
184     if (viewId == null)
185     {
186       viewId = System.currentTimeMillis() + "." + this.hashCode();
187     }
188     return viewId;
189   }
190
191   protected void setViewId(String viewId)
192   {
193     this.viewId = viewId;
194   }
195
196   public abstract String getStateInfo();
197
198   protected void buildActionMenu()
199   {
200     if (_alignwith == null)
201     {
202       _alignwith = new Vector<>();
203     }
204     if (_alignwith.size() == 0 && ap != null)
205     {
206       _alignwith.add(ap);
207     }
208     ;
209     for (Component c : viewerActionMenu.getMenuComponents())
210     {
211       if (c != alignStructs)
212       {
213         viewerActionMenu.remove((JMenuItem) c);
214       }
215     }
216   }
217
218   public AlignmentPanel getAlignmentPanel()
219   {
220     return ap;
221   }
222
223   protected void setAlignmentPanel(AlignmentPanel alp)
224   {
225     this.ap = alp;
226   }
227
228   @Override
229   public AlignmentPanel[] getAllAlignmentPanels()
230   {
231     AlignmentPanel[] t, list = new AlignmentPanel[0];
232     for (String setid : _aps)
233     {
234       AlignmentPanel[] panels = PaintRefresher.getAssociatedPanels(setid);
235       if (panels != null)
236       {
237         t = new AlignmentPanel[list.length + panels.length];
238         System.arraycopy(list, 0, t, 0, list.length);
239         System.arraycopy(panels, 0, t, list.length, panels.length);
240         list = t;
241       }
242     }
243
244     return list;
245   }
246
247   /**
248    * set the primary alignmentPanel reference and add another alignPanel to the
249    * list of ones to use for colouring and aligning
250    * 
251    * @param nap
252    */
253   public void addAlignmentPanel(AlignmentPanel nap)
254   {
255     if (getAlignmentPanel() == null)
256     {
257       setAlignmentPanel(nap);
258     }
259     if (!_aps.contains(nap.av.getSequenceSetId()))
260     {
261       _aps.add(nap.av.getSequenceSetId());
262     }
263   }
264
265   /**
266    * remove any references held to the given alignment panel
267    * 
268    * @param nap
269    */
270   public void removeAlignmentPanel(AlignmentPanel nap)
271   {
272     try
273     {
274       _alignwith.remove(nap);
275       _colourwith.remove(nap);
276       if (getAlignmentPanel() == nap)
277       {
278         setAlignmentPanel(null);
279         for (AlignmentPanel aps : getAllAlignmentPanels())
280         {
281           if (aps != nap)
282           {
283             setAlignmentPanel(aps);
284             break;
285           }
286         }
287       }
288     } catch (Exception ex)
289     {
290     }
291     if (getAlignmentPanel() != null)
292     {
293       buildActionMenu();
294     }
295   }
296
297   public void useAlignmentPanelForSuperposition(AlignmentPanel nap)
298   {
299     addAlignmentPanel(nap);
300     if (!_alignwith.contains(nap))
301     {
302       _alignwith.add(nap);
303     }
304   }
305
306   public void excludeAlignmentPanelForSuperposition(AlignmentPanel nap)
307   {
308     if (_alignwith.contains(nap))
309     {
310       _alignwith.remove(nap);
311     }
312   }
313
314   public void useAlignmentPanelForColourbyseq(AlignmentPanel nap,
315           boolean enableColourBySeq)
316   {
317     useAlignmentPanelForColourbyseq(nap);
318     getBinding().setColourBySequence(enableColourBySeq);
319     seqColour.setSelected(enableColourBySeq);
320     viewerColour.setSelected(!enableColourBySeq);
321   }
322
323   public void useAlignmentPanelForColourbyseq(AlignmentPanel nap)
324   {
325     addAlignmentPanel(nap);
326     if (!_colourwith.contains(nap))
327     {
328       _colourwith.add(nap);
329     }
330   }
331
332   public void excludeAlignmentPanelForColourbyseq(AlignmentPanel nap)
333   {
334     if (_colourwith.contains(nap))
335     {
336       _colourwith.remove(nap);
337     }
338   }
339
340   public abstract ViewerType getViewerType();
341
342   protected abstract IProgressIndicator getIProgressIndicator();
343
344   /**
345    * add a new structure (with associated sequences and chains) to this viewer,
346    * retrieving it if necessary first.
347    * 
348    * @param pdbentry
349    * @param seqs
350    * @param chains
351    * @param align
352    *          if true, new structure(s) will be aligned using associated
353    *          alignment
354    * @param alignFrame
355    */
356   protected void addStructure(final PDBEntry pdbentry,
357           final SequenceI[] seqs, final String[] chains,
358           final IProgressIndicator alignFrame)
359   {
360     if (pdbentry.getFile() == null)
361     {
362       if (worker != null && worker.isAlive())
363       {
364         // a retrieval is in progress, wait around and add ourselves to the
365         // queue.
366         new Thread(new Runnable()
367         {
368           @Override
369           public void run()
370           {
371             while (worker != null && worker.isAlive() && _started)
372             {
373               try
374               {
375                 Thread.sleep(100 + ((int) Math.random() * 100));
376
377               } catch (Exception e)
378               {
379               }
380             }
381             // and call ourselves again.
382             addStructure(pdbentry, seqs, chains, alignFrame);
383           }
384         }).start();
385         return;
386       }
387     }
388     // otherwise, start adding the structure.
389     getBinding().addSequenceAndChain(new PDBEntry[] { pdbentry },
390             new SequenceI[][]
391             { seqs }, new String[][] { chains });
392     addingStructures = true;
393     _started = false;
394     worker = new Thread(this);
395     worker.start();
396     return;
397   }
398
399   protected boolean hasPdbId(String pdbId)
400   {
401     return getBinding().hasPdbId(pdbId);
402   }
403
404   /**
405    * Returns a list of any viewer of the instantiated type. The list is
406    * restricted to those linked to the given alignment panel if it is not null.
407    */
408   protected List<StructureViewerBase> getViewersFor(AlignmentPanel alp)
409   {
410     return Desktop.instance.getStructureViewers(alp, this.getClass());
411   }
412
413   @Override
414   public void addToExistingViewer(PDBEntry pdbentry, SequenceI[] seq,
415           String[] chains, final AlignmentViewPanel apanel, String pdbId)
416   {
417     /*
418      * JAL-1742 exclude view with this structure already mapped (don't offer
419      * to align chain B to chain A of the same structure); code may defend
420      * against this possibility before we reach here
421      */
422     if (hasPdbId(pdbId))
423     {
424       return;
425     }
426     AlignmentPanel alignPanel = (AlignmentPanel) apanel; // Implementation error if this
427                                                  // cast fails
428     useAlignmentPanelForSuperposition(alignPanel);
429     addStructure(pdbentry, seq, chains, alignPanel.alignFrame);
430   }
431
432   /**
433    * Adds mappings for the given sequences to an already opened PDB structure,
434    * and updates any viewers that have the PDB file
435    * 
436    * @param seq
437    * @param chains
438    * @param apanel
439    * @param pdbFilename
440    */
441   public void addSequenceMappingsToStructure(SequenceI[] seq,
442           String[] chains, final AlignmentViewPanel alpanel,
443           String pdbFilename)
444   {
445     AlignmentPanel apanel = (AlignmentPanel) alpanel;
446
447     // TODO : Fix multiple seq to one chain issue here.
448     /*
449      * create the mappings
450      */
451     apanel.getStructureSelectionManager().setMapping(seq, chains,
452             pdbFilename, DataSourceType.FILE, getIProgressIndicator());
453
454     /*
455      * alert the FeatureRenderer to show new (PDB RESNUM) features
456      */
457     if (apanel.getSeqPanel().seqCanvas.fr != null)
458     {
459       apanel.getSeqPanel().seqCanvas.fr.featuresAdded();
460       // note - we don't do a refresh for structure here because we do it
461       // explicitly for all panels later on
462       apanel.paintAlignment(true, false);
463     }
464
465     /*
466      * add the sequences to any other viewers (of the same type) for this pdb
467      * file
468      */
469     // JBPNOTE: this looks like a binding routine, rather than a gui routine
470     for (StructureViewerBase viewer : getViewersFor(null))
471     {
472       AAStructureBindingModel bindingModel = viewer.getBinding();
473       for (int pe = 0; pe < bindingModel.getPdbCount(); pe++)
474       {
475         if (bindingModel.getPdbEntry(pe).getFile().equals(pdbFilename))
476         {
477           bindingModel.addSequence(pe, seq);
478           viewer.addAlignmentPanel(apanel);
479           /*
480            * add it to the set of alignments used for colouring structure by
481            * sequence
482            */
483           viewer.useAlignmentPanelForColourbyseq(apanel);
484           viewer.buildActionMenu();
485           apanel.getStructureSelectionManager()
486                   .sequenceColoursChanged(apanel);
487           break;
488         }
489       }
490     }
491   }
492
493   @Override
494   public boolean addAlreadyLoadedFile(SequenceI[] seq, String[] chains,
495           final AlignmentViewPanel apanel, String pdbId)
496   {
497     String alreadyMapped = apanel.getStructureSelectionManager()
498             .alreadyMappedToFile(pdbId);
499
500     if (alreadyMapped == null)
501     {
502       return false;
503     }
504
505     addSequenceMappingsToStructure(seq, chains, apanel, alreadyMapped);
506     return true;
507   }
508
509   void setChainMenuItems(List<String> chainNames)
510   {
511     chainMenu.removeAll();
512     if (chainNames == null || chainNames.isEmpty())
513     {
514       return;
515     }
516     JMenuItem menuItem = new JMenuItem(
517             MessageManager.getString("label.all"));
518     menuItem.addActionListener(new ActionListener()
519     {
520       @Override
521       public void actionPerformed(ActionEvent evt)
522       {
523         allChainsSelected = true;
524         for (int i = 0; i < chainMenu.getItemCount(); i++)
525         {
526           if (chainMenu.getItem(i) instanceof JCheckBoxMenuItem)
527           {
528             ((JCheckBoxMenuItem) chainMenu.getItem(i)).setSelected(true);
529           }
530         }
531         showSelectedChains();
532         allChainsSelected = false;
533       }
534     });
535
536     chainMenu.add(menuItem);
537
538     for (String chain : chainNames)
539     {
540       menuItem = new JCheckBoxMenuItem(chain, true);
541       menuItem.addItemListener(new ItemListener()
542       {
543         @Override
544         public void itemStateChanged(ItemEvent evt)
545         {
546           if (!allChainsSelected)
547           {
548             showSelectedChains();
549           }
550         }
551       });
552
553       chainMenu.add(menuItem);
554     }
555   }
556
557   abstract void showSelectedChains();
558
559   /**
560    * Action on selecting one of Jalview's registered colour schemes
561    */
562   @Override
563   public void changeColour_actionPerformed(String colourSchemeName)
564   {
565     AlignmentI al = getAlignmentPanel().av.getAlignment();
566     ColourSchemeI cs = ColourSchemes.getInstance()
567             .getColourScheme(colourSchemeName, getAlignmentPanel().av, al,
568                     null);
569     getBinding().setJalviewColourScheme(cs);
570   }
571
572   /**
573    * Builds the colour menu
574    */
575   protected void buildColourMenu()
576   {
577     colourMenu.removeAll();
578     AlignmentI al = getAlignmentPanel().av.getAlignment();
579
580     /*
581      * add colour by sequence, by chain, by charge and cysteine
582      */
583     colourMenu.add(seqColour);
584     colourMenu.add(chainColour);
585     colourMenu.add(chargeColour);
586     chargeColour.setEnabled(!al.isNucleotide());
587
588     /*
589      * add all 'simple' (per-residue) colour schemes registered to Jalview
590      */
591     ButtonGroup itemGroup = ColourMenuHelper.addMenuItems(colourMenu, this,
592             al, true);
593
594     /*
595      * add 'colour by viewer' (menu item text is set in subclasses)
596      */
597     viewerColour.setSelected(false);
598     viewerColour.addActionListener(new ActionListener()
599     {
600       @Override
601       public void actionPerformed(ActionEvent actionEvent)
602       {
603         viewerColour_actionPerformed(actionEvent);
604       }
605     });
606     colourMenu.add(viewerColour);
607
608     /*
609      * add 'set background colour'
610      */
611     JMenuItem backGround = new JMenuItem();
612     backGround
613             .setText(MessageManager.getString("action.background_colour"));
614     backGround.addActionListener(new ActionListener()
615     {
616       @Override
617       public void actionPerformed(ActionEvent actionEvent)
618       {
619         background_actionPerformed(actionEvent);
620       }
621     });
622     colourMenu.add(backGround);
623
624     /*
625      * add colour buttons to a group so their selection is
626      * mutually exclusive (background colour is a separate option)
627      */
628     itemGroup.add(seqColour);
629     itemGroup.add(chainColour);
630     itemGroup.add(chargeColour);
631     itemGroup.add(viewerColour);
632   }
633
634   /**
635    * Construct menu items
636    */
637   protected void initMenus()
638   {
639     AAStructureBindingModel binding = getBinding();
640
641     seqColour = new JRadioButtonMenuItem();
642     seqColour.setText(MessageManager.getString("action.by_sequence"));
643     seqColour.setName(ViewerColour.BySequence.name());
644     seqColour.setSelected(binding.isColourBySequence());
645     seqColour.addActionListener(new ActionListener()
646     {
647       @Override
648       public void actionPerformed(ActionEvent actionEvent)
649       {
650         seqColour_actionPerformed(actionEvent);
651       }
652     });
653
654     chainColour = new JRadioButtonMenuItem();
655     chainColour.setText(MessageManager.getString("action.by_chain"));
656     chainColour.setName(ViewerColour.ByChain.name());
657     chainColour.addActionListener(new ActionListener()
658     {
659       @Override
660       public void actionPerformed(ActionEvent actionEvent)
661       {
662         chainColour_actionPerformed(actionEvent);
663       }
664     });
665
666     chargeColour = new JRadioButtonMenuItem();
667     chargeColour.setText(MessageManager.getString("label.charge_cysteine"));
668     chargeColour.setName(ViewerColour.ChargeCysteine.name());
669     chargeColour.addActionListener(new ActionListener()
670     {
671       @Override
672       public void actionPerformed(ActionEvent actionEvent)
673       {
674         chargeColour_actionPerformed(actionEvent);
675       }
676     });
677
678     viewerColour = new JRadioButtonMenuItem();
679     // text is set in overrides of this method
680     viewerColour.setName(ViewerColour.ByViewer.name());
681     viewerColour.setSelected(!binding.isColourBySequence());
682
683     if (_colourwith == null)
684     {
685       _colourwith = new Vector<>();
686     }
687     if (_alignwith == null)
688     {
689       _alignwith = new Vector<>();
690     }
691
692     ViewSelectionMenu seqColourBy = new ViewSelectionMenu(
693             MessageManager.getString("label.colour_by"), this, _colourwith,
694             new ItemListener()
695             {
696               @Override
697               public void itemStateChanged(ItemEvent e)
698               {
699                 if (!seqColour.isSelected())
700                 {
701                   seqColour.doClick();
702                 }
703                 else
704                 {
705                   // update the Chimera display now.
706                   seqColour_actionPerformed(null);
707                 }
708               }
709             });
710     viewMenu.add(seqColourBy);
711
712     final ItemListener handler = new ItemListener()
713     {
714       @Override
715       public void itemStateChanged(ItemEvent e)
716       {
717         alignStructs.setEnabled(!_alignwith.isEmpty());
718         alignStructs.setToolTipText(MessageManager.formatMessage(
719                 "label.align_structures_using_linked_alignment_views",
720                 _alignwith.size()));
721       }
722     };
723     viewSelectionMenu = new ViewSelectionMenu(
724             MessageManager.getString("label.superpose_with"), this,
725             _alignwith, handler);
726     handler.itemStateChanged(null);
727     viewerActionMenu.add(viewSelectionMenu, 0);
728     viewerActionMenu.addMenuListener(new MenuListener()
729     {
730       @Override
731       public void menuSelected(MenuEvent e)
732       {
733         handler.itemStateChanged(null);
734       }
735
736       @Override
737       public void menuDeselected(MenuEvent e)
738       {
739       }
740
741       @Override
742       public void menuCanceled(MenuEvent e)
743       {
744       }
745     });
746
747     buildColourMenu();
748   }
749
750   @Override
751   public void setJalviewColourScheme(ColourSchemeI cs)
752   {
753     getBinding().setJalviewColourScheme(cs);
754   }
755
756   /**
757    * Sends commands to the structure viewer to superimpose structures based on
758    * currently associated alignments. May optionally return an error message for
759    * the operation.
760    */
761   @Override
762   protected String alignStructs_actionPerformed(ActionEvent actionEvent)
763   {
764     return alignStructs_withAllAlignPanels();
765   }
766
767   protected String alignStructs_withAllAlignPanels()
768   {
769     if (getAlignmentPanel() == null)
770     {
771       return null;
772     }
773
774     if (_alignwith.size() == 0)
775     {
776       _alignwith.add(getAlignmentPanel());
777     }
778
779     String reply = null;
780     try
781     {
782       AlignmentI[] als = new Alignment[_alignwith.size()];
783       HiddenColumns[] alc = new HiddenColumns[_alignwith.size()];
784       int[] alm = new int[_alignwith.size()];
785       int a = 0;
786
787       for (AlignmentPanel alignPanel : _alignwith)
788       {
789         als[a] = alignPanel.av.getAlignment();
790         alm[a] = -1;
791         alc[a++] = alignPanel.av.getAlignment().getHiddenColumns();
792       }
793       reply = getBinding().superposeStructures(als, alm, alc);
794       if (reply != null)
795       {
796         String text = MessageManager
797                 .formatMessage("error.superposition_failed", reply);
798         statusBar.setText(text);
799       }
800     } catch (Exception e)
801     {
802       StringBuffer sp = new StringBuffer();
803       for (AlignmentPanel alignPanel : _alignwith)
804       {
805         sp.append("'" + alignPanel.alignFrame.getTitle() + "' ");
806       }
807       Cache.log.info("Couldn't align structures with the " + sp.toString()
808               + "associated alignment panels.", e);
809     }
810     return reply;
811   }
812
813   /**
814    * Opens a colour chooser dialog, and applies the chosen colour to the
815    * background of the structure viewer
816    */
817   @Override
818   public void background_actionPerformed(ActionEvent actionEvent)
819   {
820     String ttl = MessageManager.getString("label.select_background_colour");
821     ColourChooserListener listener = new ColourChooserListener()
822     {
823       @Override
824       public void colourSelected(Color c)
825       {
826         getBinding().setBackgroundColour(c);
827       }
828     };
829     JalviewColourChooser.showColourChooser(this, ttl, null, listener);
830   }
831
832   @Override
833   public void viewerColour_actionPerformed(ActionEvent actionEvent)
834   {
835     if (viewerColour.isSelected())
836     {
837       // disable automatic sequence colouring.
838       getBinding().setColourBySequence(false);
839     }
840   }
841
842   @Override
843   public void chainColour_actionPerformed(ActionEvent actionEvent)
844   {
845     chainColour.setSelected(true);
846     getBinding().colourByChain();
847   }
848
849   @Override
850   public void chargeColour_actionPerformed(ActionEvent actionEvent)
851   {
852     chargeColour.setSelected(true);
853     getBinding().colourByCharge();
854   }
855
856   @Override
857   public void seqColour_actionPerformed(ActionEvent actionEvent)
858   {
859     AAStructureBindingModel binding = getBinding();
860     binding.setColourBySequence(seqColour.isSelected());
861     if (_colourwith == null)
862     {
863       _colourwith = new Vector<>();
864     }
865     if (binding.isColourBySequence())
866     {
867       if (!binding.isLoadingFromArchive())
868       {
869         if (_colourwith.size() == 0 && getAlignmentPanel() != null)
870         {
871           // Make the currently displayed alignment panel the associated view
872           _colourwith.add(getAlignmentPanel().alignFrame.alignPanel);
873         }
874       }
875       // Set the colour using the current view for the associated alignframe
876       for (AlignmentPanel alignPanel : _colourwith)
877       {
878         binding.colourBySequence(alignPanel);
879       }
880       seqColoursApplied = true;
881     }
882   }
883
884   @Override
885   public void pdbFile_actionPerformed(ActionEvent actionEvent)
886   {
887     // TODO: JAL-3048 not needed for Jalview-JS - save PDB file
888     JalviewFileChooser chooser = new JalviewFileChooser(
889             Cache.getProperty("LAST_DIRECTORY"));
890
891     chooser.setFileView(new JalviewFileView());
892     chooser.setDialogTitle(MessageManager.getString("label.save_pdb_file"));
893     chooser.setToolTipText(MessageManager.getString("action.save"));
894
895     int value = chooser.showSaveDialog(this);
896
897     if (value == JalviewFileChooser.APPROVE_OPTION)
898     {
899       BufferedReader in = null;
900       try
901       {
902         // TODO: cope with multiple PDB files in view
903         in = new BufferedReader(
904                 new FileReader(getBinding().getStructureFiles()[0]));
905         File outFile = chooser.getSelectedFile();
906
907         PrintWriter out = new PrintWriter(new FileOutputStream(outFile));
908         String data;
909         while ((data = in.readLine()) != null)
910         {
911           if (!(data.indexOf("<PRE>") > -1 || data.indexOf("</PRE>") > -1))
912           {
913             out.println(data);
914           }
915         }
916         out.close();
917       } catch (Exception ex)
918       {
919         ex.printStackTrace();
920       } finally
921       {
922         if (in != null)
923         {
924           try
925           {
926             in.close();
927           } catch (IOException e)
928           {
929             // ignore
930           }
931         }
932       }
933     }
934   }
935
936   @Override
937   public void viewMapping_actionPerformed(ActionEvent actionEvent)
938   {
939     CutAndPasteTransfer cap = new CutAndPasteTransfer();
940     try
941     {
942       cap.appendText(getBinding().printMappings());
943     } catch (OutOfMemoryError e)
944     {
945       new OOMWarning(
946               "composing sequence-structure alignments for display in text box.",
947               e);
948       cap.dispose();
949       return;
950     }
951     Desktop.addInternalFrame(cap,
952             MessageManager.getString("label.pdb_sequence_mapping"), 550,
953             600);
954   }
955
956   protected abstract String getViewerName();
957
958   /**
959    * Configures the title and menu items of the viewer panel.
960    */
961   @Override
962   public void updateTitleAndMenus()
963   {
964     AAStructureBindingModel binding = getBinding();
965     if (binding.hasFileLoadingError())
966     {
967       repaint();
968       return;
969     }
970     setChainMenuItems(binding.getChainNames());
971
972     this.setTitle(binding.getViewerTitle(getViewerName(), true));
973
974     /*
975      * enable 'Superpose with' if more than one mapped structure
976      */
977     viewSelectionMenu.setEnabled(false);
978     if (getBinding().getStructureFiles().length > 1
979             && getBinding().getSequence().length > 1)
980     {
981       viewSelectionMenu.setEnabled(true);
982     }
983
984     /*
985      * Show action menu if it has any enabled items
986      */
987     viewerActionMenu.setVisible(false);
988     for (int i = 0; i < viewerActionMenu.getItemCount(); i++)
989     {
990       if (viewerActionMenu.getItem(i).isEnabled())
991       {
992         viewerActionMenu.setVisible(true);
993         break;
994       }
995     }
996
997     if (!binding.isLoadingFromArchive())
998     {
999       seqColour_actionPerformed(null);
1000     }
1001   }
1002
1003   @Override
1004   public String toString()
1005   {
1006     return getTitle();
1007   }
1008
1009   @Override
1010   public boolean hasMapping()
1011   {
1012     if (worker != null && (addingStructures || _started))
1013     {
1014       return false;
1015     }
1016     if (getBinding() == null)
1017     {
1018       if (_aps == null || _aps.size() == 0)
1019       {
1020         // viewer has been closed, but we did at some point run.
1021         return true;
1022       }
1023       return false;
1024     }
1025     String[] pdbids = getBinding().getStructureFiles();
1026     if (pdbids == null)
1027     {
1028       return false;
1029     }
1030     int p=0;
1031     for (String pdbid:pdbids) {
1032       StructureMapping sm[] = getBinding().getSsm().getMapping(pdbid);
1033       if (sm!=null && sm.length>0 && sm[0]!=null) {
1034         p++;
1035       }
1036     }
1037     // only return true if there is a mapping for every structure file we have loaded
1038     if (p == 0 || p != pdbids.length)
1039     {
1040       return false;
1041     }
1042     // and that coloring has been applied
1043     return seqColoursApplied;
1044   }
1045
1046   @Override
1047   public void raiseViewer()
1048   {
1049     toFront();
1050   }
1051
1052 }