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