JAL-3390 redraw structures if alignment only and hidden regions change
[jalview.git] / src / jalview / api / structures / JalviewStructureDisplayI.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.api.structures;
22
23 import jalview.api.AlignmentViewPanel;
24 import jalview.datamodel.PDBEntry;
25 import jalview.datamodel.SequenceI;
26 import jalview.structures.models.AAStructureBindingModel;
27
28 public interface JalviewStructureDisplayI
29 {
30
31   AAStructureBindingModel getBinding();
32
33   /**
34    * @return true if there is an active GUI handling a structure display
35    */
36   boolean isVisible();
37
38   /**
39    * enable or disable the structure display - note this might just hide or show
40    * a GUI element, but not actually reset the display
41    * 
42    * @param b
43    */
44   void setVisible(boolean b);
45
46   /**
47    * free up any external resources that were used by this display and collect
48    * garbage
49    */
50   void dispose();
51
52   /**
53    * Shutdown any Jalview structure viewing processes started by this display
54    * 
55    * @param closeExternalViewer
56    *          if true, force close any linked external viewer process
57    */
58   void closeViewer(boolean closeExternalViewer);
59
60   /**
61    * 
62    * @return true if all background sequence/structure binding threads have
63    *         completed for this viewer instance
64    */
65   boolean hasMapping();
66
67   /**
68    * Checks if the PDB file is already loaded in this viewer, if so just adds
69    * mappings as necessary and answers true, else answers false. This supports
70    * the use case of adding additional chains of the same structure to a viewer.
71    * 
72    * @param seq
73    * @param chains
74    * @param apanel
75    * @param pdbId
76    * @return
77    */
78   boolean addAlreadyLoadedFile(SequenceI[] seq, String[] chains,
79           AlignmentViewPanel apanel, String pdbId);
80
81   /**
82    * Adds one or more chains (sequences) of a PDB structure to this structure
83    * viewer
84    * 
85    * @param pdbentry
86    * @param seq
87    * @param chains
88    * @param apanel
89    * @param pdbId
90    * @return
91    */
92   void addToExistingViewer(PDBEntry pdbentry, SequenceI[] seq,
93           String[] chains, AlignmentViewPanel apanel, String pdbId);
94
95   /**
96    * refresh GUI after reconfiguring structure(s) and alignment panels
97    */
98   void updateTitleAndMenus();
99
100   /**
101    * Answers true if the viewer should attempt to align any added structures,
102    * else false
103    * 
104    * @return
105    */
106   boolean isAlignAddedStructures();
107
108   /**
109    * Sets the flag for whether added structures should be aligned
110    * 
111    * @param alignAdded
112    */
113   void setAlignAddedStructures(boolean alignAdded);
114
115   /**
116    * Raise the panel to the top of the stack...
117    */
118   void raiseViewer();
119
120   boolean isUsedforcolourby(AlignmentViewPanel ap);
121
122 }