JAL-3148 SequenceRenderer, ResidueColourFinder overloads and
[jalview.git] / src / jalview / gui / JalviewChimeraBindingModel.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.api.structures.JalviewStructureDisplayI;
25 import jalview.datamodel.PDBEntry;
26 import jalview.datamodel.SequenceI;
27 import jalview.ext.rbvi.chimera.JalviewChimeraBinding;
28 import jalview.io.DataSourceType;
29 import jalview.structure.StructureSelectionManager;
30
31 import javax.swing.SwingUtilities;
32
33 public class JalviewChimeraBindingModel extends JalviewChimeraBinding
34 {
35   private ChimeraViewFrame cvf;
36
37   public JalviewChimeraBindingModel(ChimeraViewFrame chimeraViewFrame,
38           StructureSelectionManager ssm, PDBEntry[] pdbentry,
39           SequenceI[][] sequenceIs, DataSourceType protocol)
40   {
41     super(ssm, pdbentry, sequenceIs, protocol);
42     cvf = chimeraViewFrame;
43   }
44
45   @Override
46   public FeatureRenderer getFeatureRenderer(AlignmentViewPanel alignment)
47   {
48     AlignmentPanel ap = (alignment == null) ? cvf.getAlignmentPanel()
49             : (AlignmentPanel) alignment;
50     if (ap.av.isShowSequenceFeatures())
51     {
52       return ap.getSeqPanel().seqCanvas.fr;
53     }
54
55     return null;
56   }
57
58   @Override
59   public void refreshGUI()
60   {
61     javax.swing.SwingUtilities.invokeLater(new Runnable()
62     {
63       @Override
64       public void run()
65       {
66         cvf.updateTitleAndMenus();
67         cvf.revalidate();
68       }
69     });
70   }
71
72   @Override
73   public void releaseReferences(Object svl)
74   {
75   }
76
77   @Override
78   public void refreshPdbEntries()
79   {
80   }
81
82   /**
83    * Send an asynchronous command to Chimera, in a new thread, optionally with
84    * an 'in progress' message in a progress bar somewhere
85    */
86   @Override
87   protected void sendAsynchronousCommand(final String command,
88           final String progressMsg)
89   {
90     final long handle = progressMsg == null ? 0
91             : cvf.startProgressBar(progressMsg);
92     SwingUtilities.invokeLater(new Runnable()
93     {
94       @Override
95       public void run()
96       {
97         try
98         {
99           sendChimeraCommand(command, false);
100         } finally
101         {
102           if (progressMsg != null)
103           {
104             cvf.stopProgressBar(null, handle);
105           }
106         }
107       }
108     });
109   }
110
111   @Override
112   public JalviewStructureDisplayI getViewer()
113   {
114     return cvf;
115   }
116 }